BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
6 / 18 · Module 9 — API-Led Architecture · filtered: cheatsheet← prev⊞ allnext →

9.36Experience APIs may perform presentation-oriented transformation

Example:

Process API:

{
  "firstName": "John",
  "lastName": "Smith",
  "accountBalance": 12742.15,
  "currency": "USD"
}

Mobile Experience API:

{
  "displayName": "John Smith",
  "balance": {
    "value": 12742.15,
    "currency": "USD"
  }
}

That's consumer adaptation.