Braze’s Send Identifier adds the ability to send messages and track message performance entirely programmatically, without campaign creation for each send. Using the Send Identifier to track and send messages is useful if you are planning to programmatically generate and send content.
The daily maximum number of custom send identifiers that can be created via this endpoint is 100 for a given app group. Each send_id
and campaign_id
combination that you create will count towards your daily limit. The response headers for any valid request include the current rate limit status, see API rate limits for details.
1
2
| Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
|
1
2
3
4
5
6
7
| curl --location --request POST 'https://rest.iad-01.braze.com/sends/id/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
"campaign_id": "campaign_identifier",
"send_id": "send_identifier"
}'
|