Testing
If you’d like to test in-app and push notifications via the command line, you can send a single notification through the terminal via CURL and the messaging API. You will need to replace the following fields with the correct values for your test case:
YOUR_API_KEY
- available on the Developer Console page.YOUR_EXTERNAL_USER_ID
- available on the user profile search page. See assigning user IDs for more information.YOUR_KEY1
(optional)YOUR_VALUE1
(optional)
1
2
3
4
5
6
7
8
9
10
11
curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer " -d '{
"external_user_ids":["YOUR_EXTERNAL_USER_ID"],
"messages": {
"apple_push": {
"alert":"Test push",
"extra": {
"YOUR_KEY1":"YOUR_VALUE1"
}
}
}
}' https://rest.iad-01.braze.com/messages/send
The preceding example is for customers on the US-01
instance. If you are not on this instance, refer to our API documentation to see which endpoint to make requests to.