List Deliveries
GET
/admin/automations/{id}/actions/{actionId}/deliveries
const url = 'http://localhost:9000/admin/automations/example/actions/example/deliveries?limit=20&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/automations/example/actions/example/deliveries?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
actionId
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
status
string
since
string
until
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
deliveries
Array<object>
object
id
string
event_name
string
status
string
attempts
integer
response_status
integer
response_body
string
request_payload
string
error_message
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{ "deliveries": [ { "id": "example", "event_name": "example", "status": "example", "attempts": 1, "response_status": 1, "response_body": "example", "request_payload": "example", "error_message": "example", "created_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z" } ], "count": 1, "limit": 1, "offset": 1}