This endpoint allows you to remove “invalid” phone numbers from Braze’s invalid list. This can be used to re-validate phone numbers after they have been marked as invalid.
1
2
| Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
|
1
2
3
4
5
6
| curl --location --request POST 'https://rest.iad-01.braze.com/sms/invalid_phone_numbers/remove' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
"phone_numbers" : ["12183095514","14255551212"]
}'
|