BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
5 / 18 · Module 8 — Configuration and Security · filtered: cheatsheet← prev⊞ allnext →

8.32API endpoint configuration

Suppose Mule calls:

fraud-service

Don't scatter:

https://fraud-prod.company.com/v2

through flows.

Use:

fraud:
  host: fraud-prod.company.com
  basePath: /v2
  timeoutMs: 5000

then:

${fraud.host}
${fraud.basePath}
${fraud.timeoutMs}

This makes tuning much safer.