ApiSuccessEnvelope
data objectrequired
The resource payload. Shape is endpoint-specific — check the operation description for the concrete DTO. When the endpoint is a list, data is an array.
- object
- object[]
object
meta objectrequired
requestIdstringrequired
Correlation id — matches the req.id on every structured log line for this request. Hand to platform operations to trace a specific call end-to-end.
Example:
req_89a15a56-52e8-42c9-b52d-a8d7ed1bd90cpagination object
Present on list endpoints.
pageinteger
Example:
1pageSizeinteger
Example:
20totalinteger
Example:
42ApiSuccessEnvelope
{
"data": {},
"meta": {
"requestId": "req_89a15a56-52e8-42c9-b52d-a8d7ed1bd90c",
"pagination": {
"page": 1,
"pageSize": 20,
"total": 42
}
}
}