Webhooks
Drop Cowboy will notify you via webhook by http POST to the URL you specify in your API request. You will receive JSON content containing the delivery status of every voicemail you attempt to send.
Linking Webhook Results Back to Your Database
Example Webhook (Successful Delivery):
{
"drop_id": "5c8eb7940a057a4ab0823e1a",
"phone_number": "+15552224444",
"attempt_date": "2019-03-17T21:10:26.000Z",
"status": "success",
"reason": "",
"dnc": false,
"spam": false,
"product_cost": 0.099,
"compliance_fee": 0.0029,
"tts_fee": 0,
"network": {
"name": "Verizon Wireless:6006 - SVR/2",
"type": "wireless"
},
"foreign_id": "<your system's id>"
}Example Webhook (Failed Delivery):
Possible Error Reasons
Last updated
Was this helpful?