Get one broadcast by id

Search Documentation

Search across all developer documentation

broadcasts

Get one broadcast by id

GET /v1/broadcasts/{id}
Auth required api.broadcasts.view

Returns one broadcast by id, or 404 not_found when the id is not a broadcast in this org.

Path parameters

id string<uuid> required

Resource UUID. An unparseable id reads as a clean 404 not_found.

Responses

Errors follow the RFC 7807 problem format — see the error reference.

200 The broadcast application/json
id string<uuid> required
name string required
content_mode string enum required

The content source. template renders a pinned workspace template; inline sends caller-supplied raw HTML (not echoed back).

One of: template, inline

template_id string | null optional

The template slug (file name) the broadcast renders — the same identifier GET /v1/templates exposes as slug, not an internal UUID. Null in inline mode.

template_version integer<int32> | null optional

The pinned integer template version (null in inline mode).

audience_kind string enum required

Whether audience_id references a List or a Segment.

One of: list, segment

audience_id string<uuid> required
subject string required

The broadcast owns the subject (overridable per send).

preview_text string optional
from_identity string | null optional

The explicit verified from-address, or null for the default no-reply@ sender.

default_template_data object optional

DefaultTemplateData applied where a recipient lacks an attribute value.

topic_id string | null optional

The topic name (the same identifier GET /v1/topics exposes), or null for a topic-less broadcast. Not an internal UUID.

schedule_at string<date-time> | null optional

The scheduled UTC fire time, or null for a send-now broadcast.

state string enum required

One of: draft, scheduled, sending, sent, partially_failed, cancelled

recipient_count integer<int64> | null optional

Mailable snapshot size, stamped at send (null before send).

sent_count integer<int64> | null optional
failed_count integer<int64> | null optional
started_at string<date-time> | null optional
completed_at string<date-time> | null optional
created_at string<date-time> required
updated_at string<date-time> required
summary object | null optional

The outcome rollup, present once a send has finalized the cached counts; null on a draft/scheduled broadcast that has never sent.

Fields of summary:

audience_size integer<int64> required

Snapshot audience size before the consent filter.

mailable integer<int64> required

Recipients that passed the consent filter (sent + failed).

sent integer<int64> required
failed integer<int64> required
filtered integer<int64> required

Recipients dropped by the consent filter.

tags array<object> optional

Org-side tags/folders applied to this broadcast (managed via the dashboard). Editable regardless of send state, so historical broadcasts stay organizable. Filter the collection with ?tag=.

Each entry in tags:

id string<uuid> required
name string required

Full folder path (e.g. Marketing/Newsletters).

key string required

Normalized slug handle of the name.

color string optional

Chip colour token (chart-1..chart-5), or empty.

description string optional
created_at string<date-time> required
updated_at string<date-time> required
401 Missing, malformed, or unknown API key application/problem+json
403 Key lacks the required scope or plan limit violated application/problem+json
404 Resource not found application/problem+json
429 Per-org rate limit exceeded application/problem+json
500 Unexpected server-side failure. The code is internal_error. The request_id field can be quoted to SendOps support to investigate. application/problem+json