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.