List Send Actions
List all send actions for an email broadcast. Send actions represent past or scheduled delivery attempts for the broadcast. When accessing the API through an OAuth connection from a third-party platform, this endpoint is restricted to trusted developer platforms. If you are using your own API key, you can access this endpoint directly.
Path parameters
Query parameters
ID of item after which the collection should be returned. More examples and info about pagination in our guides.
Sort order of a list response. Use 'desc' to reverse the default 'asc' (ascending) sort order. Examples in our guides.
Sort property of a list response. The default is id and thus the created_at order. If you sort by other properties, we additionally sort by id implicitly as a secondary sort property, so that you can rely on the sort order to be deterministic even if the main sort property ends up with the same values.
Response
OK
Example response
[
{
"id": 1,
"public_id": "aB3cD4",
"workspace_id": 42000,
"send_type": "default",
"target_ids": [
7
],
"target_count": 1500,
"performed_count": 750,
"scheduled_for": null,
"started_at": "2025-06-01T18:00:05.000Z",
"completed_at": null,
"created_by_id": null,
"approved_by_id": 3,
"created_at": "2025-06-01T17:59:00.000Z",
"updated_at": "2025-06-01T18:00:05.000Z",
"broadcast_id": 7
}
]