API Reference
Broadcasts

List a broadcast's contacts

GET
/v1/broadcasts/{id}/contacts

Cursor-paginated with filters. status accepts roster vocabulary (scheduled | active | completed | missed | discarded) or a raw contact status; q is a phone substring; from/to are inclusive created_at bounds (RFC3339 or YYYY-MM-DD).

Authorization

bearerAuth
AuthorizationBearer <token>

Long-lived ES256 JWT minted from the dashboard (https://app.sautikit.com/developers/api-keys). Signed by the platform keyring. Carries workspace_id and scopes claims; revoked via the platform deny-list.

In: header

Path Parameters

id*string
Formatuuid

Query Parameters

cursor?string
limit?integer
Range1 <= value
status?string
q?string
from?string
to?string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/broadcasts/497f6eca-6276-4993-bfeb-53cbbbba6f08/contacts"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "phone": "string",      "variables": {        "property1": "string",        "property2": "string"      },      "status": "queued",      "last_call_result": "string",      "latest_call_id": "74a17bb1-799d-4447-868f-6bc4bb991ab8",      "attempts": 0,      "next_attempt_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "next_cursor": "string",  "total_count": 0}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}