AsyncAcceptedResponse
Envelope returned by asynchronous write endpoints. data is null at this point —
poll GET /v1/open-api/request/{requestId} with the returned requestId.
The endpoint payload (the DTO documented per endpoint).
nullHuman-readable status. "Success" on success.
Successerror objectnullable
Present only on error responses.
Numeric error code — see the Error Codes appendix.
3705args object
Additional context placeholders (key-value).
Additional context placeholders (key-value).
{"&name&":"VIP"}true on success, false on error.
trueerrors object[]
Field-level validation errors (empty on success).
Name of the offending field
pipeStatusIdValidation failure reason enum.
Possible values: [DECIMAL_MIN, DECIMAL_MAX, MIN, MAX, CONFLICT, NOT_NULL, NOT_EMPTY, NOT_FOUND, NOT_BLANK, LENGTH, SIZE, NOT_NULL_COLLECTION, VALID_PHONE, NULLABLE_NOT_EMPTY, VALID_EPOCH_SEC]
NOT_NULLSet for asynchronous write endpoints.
f1c2e3a4-5678-90ab-cdef-1234567890ab{
"data": null,
"message": "Success",
"error": {
"messageCode": 3705,
"args": {
"&name&": "VIP"
}
},
"accept": true,
"errors": [
{
"field": "pipeStatusId",
"reason": "NOT_NULL"
}
],
"requestId": "f1c2e3a4-5678-90ab-cdef-1234567890ab"
}