Emails::Broadcasts::SendAction
Fetch Send Action
Retrieve a single send action and its current async delivery progress. Compare performed_count to target_count to determine how far along delivery is. completed_at is set when delivery finishes. 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.
get/emails/broadcasts/send_actions/{id}
Path parameters
idstring required
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
}