Publications
List publication attempts
Lists the safe timeline of creation, failure, retry, and cancellation.
GET
/publications/{id}/attemptspublications:readBEHAVIOR
The read respects the filters and returns only resources visible to the account linked to the key.
EFFECT
Does not change resources or trigger publication.
REPETITION
The operation is safe to repeat. On 429 or 5xx, use exponential backoff with jitter.
Request
idstring · pathResource identifier.minLength 2 · maxLength 100mandatorylimitinteger · queryQuantity per page.min 1 · max 100 · default 30optionaloffsetinteger · queryPagination offset.min 0 · default 0optionalAuthorization
Bearer ach_live_...Accept
application/jsonScope
publications:readExecutable example
curl
curl 'https://achadu.com/api/v1/publications/resource_id/attempts' \
-H 'Authorization: Bearer ach_live_...' \
-H 'Accept: application/json'Response and errors
Every response includes request_id. Lists add pagination; mutable resources return the persisted state after the operation.
200 application/json
{
"data": [
{
"id": "pub_01J...",
"state": "queued",
"group_id": "grp_01J...",
"offer_id": "off_01J...",
"error": null
}
],
"pagination": {
"total": 1,
"limit": 30,
"offset": 0,
"has_more": false
},
"request_id": "req_01J..."
}200Operation completed.400Invalid parameter, body or transition.401Missing, invalid, expired or revoked key.402The account plan does not release this interface.403A chave precisa do escopo publications:read.404Feature does not exist in this account.409The current state prevents this operation.413The JSON body exceeds 128 KB.429The 120 requests per minute window has been exceeded.