BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
32 / 81 · Module 10 — Synchronous vs Asynchronous Integrations · filtered: interview← prev⊞ allnext →

10.5HTTP 202

A common async response is:

202 Accepted

Meaning roughly:

“The request is valid and accepted for processing, but processing is not complete yet.”

Example:

{
  "requestId": "REQ-12345",
  "status": "ACCEPTED"
}

The caller may later:

GET /requests/REQ-12345

or receive a callback/event.