Documentation
Sign inGet started

bird email broadcasts send

Usage

Exemple de code
bird email broadcasts send <broadcast-id> [flags]

Description

Send a broadcast
Dispatch a draft broadcast, immediately or at scheduled_at. Calling this again on an already-scheduled broadcast reschedules it rather than sending a duplicate. A broadcast whose delivery has already started returns a conflict error.
Build the request from flags, a JSON EmailBroadcastSendNowRequest body via --body-file ("-" reads stdin), or both — a flag overrides the matching body field. Run --example to print a ready-to-edit body, or --dry-run to print the resolved request without sending it.

Examples

Exemple de code
# print the body shape (no credentials needed)
bird email broadcasts send --example

# the body it prints:
Exemple de code
{
  "scheduled_at": "2026-08-01T09:00:00Z"
}

Options

Delivery

NameDescription
--scheduled-atSchedule the send for a future time (RFC 3339, e.g. 2026-07-10T09:00:00Z); omit to send immediately

Request

NameDescription
--body-fileRead the JSON request body from this file; "-" reads stdin
--examplePrint a complete example request body, then exit
--dry-runPrint the resolved request without sending it, then exit
--idempotency-keyDeduplication key; a retry with the same key won't act twice

Options

NameDescription
--response-schemaPrint the fields this command returns, then exit
NameDescription
bird email broadcasts cancelCancel a broadcast
bird email broadcasts countsGet a broadcast's audience counts
bird email broadcasts createCreate a broadcast
bird email broadcasts deleteDelete a broadcast
bird email broadcasts getGet a broadcast
bird email broadcasts listList broadcasts
bird email broadcasts list-eventsList events for a broadcast
bird email broadcasts list-recipientsList recipients of a broadcast
bird email broadcasts updateUpdate a draft or scheduled broadcast