v1.0.0
OpenAPI 3.1.0

Get broadcast triggers

US region

Client Libraries

Get broadcast triggers

Returns a list of the triggers for a broadcast.

Path Parameters
  • broadcast_id
    Type: integer
    required

    The identifier of a broadcast.

Responses
  • application/json
  • 400

    The broadcastID, actionID or triggerID is invalid.

  • 404

    The broadcast, action, and/or trigger do not exist.

  • 429

    Your request is over the 10-per-second limit.

Request Example for get/v1/broadcasts/{broadcast_id}/triggers
curl https://api.customer.io/v1/broadcasts/1/triggers \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "triggers": [
    {
      "id": 1,
      "broadcast_id": 2,
      "created_at": 1552341937,
      "processed_at": 1
    }
  ]
}