Get broadcast error descriptions
If your broadcast produced validation errors, this endpoint can help you better understand what went wrong. Broadcast errors are generally issues in your broadcast audience and associated.
- Type: integerbroadcast
_id requiredThe ID of the broadcast that you want to return information about.
- Type: integertrigger
_id requiredThe ID of the campaign trigger that you want to return information for.
- Type: stringstart
The token for the page of results you want to return. Responses contain a
nextproperty. Use this property as thestartvalue to return the next page of results. - Type: integerlimit
The maximum number of results you want to retrieve per page.
- Type: stringstart
The token for the page of results you want to return. Responses contain a
nextproperty. Use this property as thestartvalue to return the next page of results. - Type: integerlimit
The maximum number of results you want to retrieve per page.
- application/json
- 400
The
broadcastID,actionIDortriggerIDis invalid. - 401
Unauthorized request. Make sure that you provided the right credentials.
- 404
The broadcast, action, and/or trigger do not exist.
- 429
Your request is over the 10-per-second limit.
curl 'https://api.customer.io/v1/campaigns/1/triggers/3/errors?start=&limit=1&start=&limit=1' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"errors": [
"string"
],
"next": 1
}Returns an array of errors.