curl --request GET \
--url https://api.lettermint.co/v1/messages/{messageId}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"message_id": "<string>",
"event": "queued",
"metadata": {},
"timestamp": "2023-11-07T05:31:56Z"
}
],
"path": "<string>",
"per_page": 123,
"next_cursor": "<string>",
"next_page_url": "<string>",
"prev_cursor": "<string>",
"prev_page_url": "<string>"
}Returns a paginated list of events for a specific message with sorting capabilities.
curl --request GET \
--url https://api.lettermint.co/v1/messages/{messageId}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"message_id": "<string>",
"event": "queued",
"metadata": {},
"timestamp": "2023-11-07T05:31:56Z"
}
],
"path": "<string>",
"per_page": 123,
"next_cursor": "<string>",
"next_page_url": "<string>",
"prev_cursor": "<string>",
"prev_page_url": "<string>"
}Team API token. Find this in your team settings.
Available sorts are timestamp, event. You can sort by multiple options by separating them with a comma. To sort in descending order, use - sign in front of the sort, for example: -timestamp.
The number of results that will be returned per page.
The cursor to start the pagination from.
Paginated set of MessageEventData
Show child attributes
queued, processed, suppressed, delivered, soft_bounced, hard_bounced, spam_complaint, failed, blocked, policy_rejected, unsubscribed, inbound_received, inbound_queued, inbound_spam_blocked, inbound_processed, inbound_retry Base path for paginator generated URLs.
Number of items shown per page.
The "cursor" that points to the next set of items.
The "cursor" that points to the previous set of items.