Event
List message attempts for an event subscription
List all the message attempts for a given event subscription.
get/v1/event_subscriptions/{event_subscription_token}/attempts
Path parameters
event_subscription_tokenstring required
Query parameters
status'FAILED' | 'PENDING' | 'SENDING' | 'SUCCESS'
beginstring date-time
Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.
endstring date-time
Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.
ending_beforestring
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
page_sizeinteger
Page size (for pagination).
starting_afterstring
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
Response
OK
Example response
{
"data": [
{
"event_subscription_token": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga1",
"event_token": "msg_1srOrx2ZWZBpBUvZwXKQmoEYga1",
"token": "atmpt_1srOrx2ZWZBpBUvZwXKQmoEYga2"
}
]
}