SMS delivery
Tremendous also can deliver rewards via SMS to your intended recipient. Here's an example of an API call you can use to do so:
curl --url 'https://testflight.tremendous.com/api/v2/orders' \
--header 'Authorization: Bearer YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data '
{
"payment": {
"funding_source_id": "BALANCE"
},
"reward": {
"value": {
"denomination": 50,
"currency_code": "USD"
},
"delivery": {
"method": "PHONE"
},
"recipient": {
"name": "Jane Doe",
"phone": "+19084008885"
},
"products": [
"OKMHM2X2OHYV"
]
}
}
'
Tremendous will deliver the reward via SMS to the phone number you specified. Here's an example of what your recipient will receive:
Updated about 1 month ago