Dispatch API
The Dispatch API enables the developer to specify a multiple message workflow.
Product deprecation notice
From August 31st 2025, the Vonage Dispatch API will be closed to new users, though the product will continue to be supported for existing users. If you are looking to build a messaging application with failover functionality, failover is now supported directly in the Messages API.
For general information about the Messages Failover feature please refer to this guide. For guidance on migrating from Dispatch API to Messages API Failover, please refer to this guide.
If you have any further questions regarding this product deprecation, please contact your account manager or support for help.
Available Operations
Authentication
This API supports both JWT and Basic authentication. Basic authentication is easier to get started with, but does not support advanced features such as ACLs.
You can use either JWT or Basic authentication, but not both at the same time.
| Key | Description | Where | Example |
|---|---|---|---|
| Authorization | Your JSON web token. | Headers | Bearer <JWT> |
| Authorization | Base64 encoded API key and secret joined by a colon. | Headers | Basic <base64> |
failoverThe template that the Dispatch API will execute. For the initial version of the API the only available value will be failover
failoverContains a message object that must reflect the current /messages resource. All parameters within the content object reflect the /messages docs.
smsThe type of message that you want to send.
smsviber_service_msgmessengerwhatsapp1500123456789012345The ID of the message recipient.
Messenger: This value should be the from.id value you received in the inbound messenger event.
SMS: or Viber: or WhatsApp This value is not required.
150447700900000SMS: or MMS: or Viber: or WhatsApp The phone number of the message recipient in the E.164 format. Don't use a leading + or 00 when entering a phone number, start with the country code, for example, 447700900000.
Messenger: This value is not required.
smsThe type of message that you want to send.
smsviber_service_msgmessengerwhatsapp1500123456789012345Your ID for the platform that you are sending from.
Messenger: This value should be the to.id value you received in the inbound messenger event.
Viber: This is your Service Message ID given to you by your Vonage Account Manager. To find out more please visit vonage.com.
SMS: MMS: or WhatsApp This value is not required.
150447700900000SMS: or MMS: The phone number of the message sender in the E.164 format.
WhatsApp: This is your WhatsApp Business Number given to you by your Vonage Account Manager. To find out more please visit vonage.com.
Messenger: or Viber: This value is not required.
textThe type of message that you are sending.
Messenger: supports text, image, audio, video and file.
Viber Business Messages: supports image and text.
WhatsApp: supports template, text, image, audio, video and file.
SMS: supports text.
textimageaudiovideofiletemplatecustom14096Vonage Verification code: 64873. Valid for 10 minutes.The text of the message.
Messenger: Is limited to 640 characters
SMS or Viber: Is 1000 characters
WhatsApp: is 4096 characters
12000https://example.com/image.jpgThe URL of the image attachment. messenger and mms supports .jpg, .jpeg, .png and .gif. viber_service_msg supports .jpg .jpeg, and .png. whatsapp supports .jpg .jpeg, and .png.
13000Additional text to accompany the image.Additional text to accompany the image. Supported by WhatsApp and MMS.
12000https://example.com/audio.mp3The URL of the audio attachment. messenger supports .mp3. whatsapp supports .aac, .m4a, .amr, .mp3 and .opus.
12000https://example.com/video.mp4The URL of the video attachment.
messenger supports .mp4
whatsapp supports .mp4 and .3gpp. Note, only H.264 video codec and AAC audio codec is supported.
12000https://example.com/file.zipThe URL of the file attachment. messenger supports a wide range of attachments including .zip, .csv and .pdf. whatsapp supports .pdf, .doc(x), .ppt(x) and .xls(x).
13000Additional text to accompany the image.Additional text to accompany the image. Supported by WhatsApp and MMS.
whatsapp:hsm:technology:vonage:verifyThe name of the template.
1234The parameters are an array. The first value being in the template.1
transactionThe use of different category tags enables the business to send messages for different use cases. For Viber Business Messages the first message sent from a business to a user must be personal, informative and a targeted message - not promotional. By default Vonage sends the transaction category to Viber Business Messages.
transactionpromotion3086400600Only valid for Viber Business Messages. Set the time-to-live of message to be delivered in seconds. i.e. if the message is not delivered in 600 seconds then delete the message.
message_tagThe use of different category tags enables the business to send messages for different use cases. For Facebook Messenger they need to comply with their Messaging Types policy. Vonage maps our category to their messaging_type. If message_tag is used, then an additional tag for that type is mandatory. By default Vonage sends the response category to Facebook Messenger.
responseupdatemessage_tagticket_update‘A full list of the possible tags is available on developers.facebook.com'
deterministicPlease note that WhatsApp will deprecate fallback policy in January 2020. There are two policies that you can specify when sending a Message Template: deterministic and fallback. deterministic — Deliver the Message Template in exactly the language and locale asked for. fallback — Deliver the Message Template in the language that matches users language/locale setting on device. If one can not be found, deliver using the specified fallback language.
fallbackdeterministicen-GBWe are using the industry standard, BCP 47, for locales. So in your API call to the /messages API you will need to put “en-GB” and this will refer to the “en_GB” template for WhatsApp. A full list of the possible locales is available on developers.facebook.com.
Please note that last message does not have failover attribute inside it. All other messages must contain a failover attribute.
1586400600In seconds. Minimum value is 15 and maximum value is 86,400 seconds (1 day).
deliveredSet the status the message must reach in the expiry_time before failing over. Options are delivered or read.
deliveredreadExample Request
{
"template": "failover",
"workflow": [
{
"to": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"from": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"message": {
"content": {
"type": "text",
"text": "Vonage Verification code: 64873. Valid for 10 minutes.",
"image": {
"url": "https://example.com/image.jpg",
"caption": "Additional text to accompany the image."
},
"audio": {
"url": "https://example.com/audio.mp3"
},
"video": {
"url": "https://example.com/video.mp4"
},
"file": {
"url": "https://example.com/file.zip",
"caption": "Additional text to accompany the image."
},
"template": {
"name": "whatsapp:hsm:technology:vonage:verify",
"parameters": [
{
"default": "1234"
}
]
}
},
"viber_service_msg": {
"category": "transaction",
"ttl": 600
},
"messenger": {
"category": "message_tag",
"tag": "ticket_update"
},
"whatsapp": {
"policy": "deterministic",
"locale": "en-GB"
}
},
"failover": {
"expiry_time": 600,
"condition_status": "delivered"
}
}
]
}{
"template": "failover",
"workflow": [
{
"to": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"from": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"message": {
"content": {
"type": "text",
"text": "Vonage Verification code: 64873. Valid for 10 minutes.",
"image": {
"url": "https://example.com/image.jpg",
"caption": "Additional text to accompany the image."
},
"audio": {
"url": "https://example.com/audio.mp3"
},
"video": {
"url": "https://example.com/video.mp4"
},
"file": {
"url": "https://example.com/file.zip",
"caption": "Additional text to accompany the image."
},
"template": {
"name": "whatsapp:hsm:technology:vonage:verify",
"parameters": [
{
"default": "1234"
}
]
}
},
"viber_service_msg": {
"category": "transaction",
"ttl": 600
},
"messenger": {
"category": "message_tag",
"tag": "ticket_update"
},
"whatsapp": {
"policy": "deterministic",
"locale": "en-GB"
}
},
"failover": {
"expiry_time": 600,
"condition_status": "delivered"
}
}
]
}aaaaaaaa-bbbb-cccc-dddd-0123456789abThe parent ID for workflow request.
Example Response
{
"dispatch_uuid": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab"
}aaaaaaaa-bbbb-cccc-dddd-0123456789absmsThe type of message that you want to send.
smsviber_service_msgmessengerwhatsapp1500123456789012345The ID of the message recipient.
Messenger: This value should be the from.id value you received in the inbound messenger event.
SMS: or Viber: or WhatsApp This value is not required.
150447700900000SMS: or MMS: or Viber: or WhatsApp The phone number of the message recipient in the E.164 format. Don't use a leading + or 00 when entering a phone number, start with the country code, for example, 447700900000.
Messenger: This value is not required.
smsThe type of message that you want to send.
smsviber_service_msgmessengerwhatsapp1500123456789012345Your ID for the platform that you are sending from.
Messenger: This value should be the to.id value you received in the inbound messenger event.
Viber: This is your Service Message ID given to you by your Vonage Account Manager. To find out more please visit vonage.com.
SMS: MMS: or WhatsApp This value is not required.
150447700900000SMS: or MMS: The phone number of the message sender in the E.164 format.
WhatsApp: This is your WhatsApp Business Number given to you by your Vonage Account Manager. To find out more please visit vonage.com.
Messenger: or Viber: This value is not required.
2020-01-01T14:00:00.000ZThe datetime of when the event occurred.
deliveredThe status of the message.
submitteddeliveredreadrejectedundeliverable1300The error code. See our errors list for a list of possible errors
Not part of the provider networkText describing the error. See our errors list for a list of possible errors
EURThe charge currency in ISO 4217 format.
EUR0.0333The charge amount as a stringified number.
aaaaaaaa-bbbb-cccc-dddd-0123456789ab/workflows/aaaaaaaa-bbbb-cccc-dddd-0123456789abPlease note GET is not currently supported
Example Payload
{
"message_uuid": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab",
"to": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"from": {
"type": "sms",
"id": "0123456789012345",
"number": "447700900000"
},
"timestamp": "2020-01-01T14:00:00.000Z",
"status": "delivered",
"error": {
"code": 1300,
"reason": "Not part of the provider network"
},
"usage": {
"currency": "EUR",
"price": "0.0333"
},
"_links": {
"workflow": {
"dispatch_uuid": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab",
"href": "/workflows/aaaaaaaa-bbbb-cccc-dddd-0123456789ab"
}
}
}The Final Report callback
The final workflow callback is sent when The condition_status was met within the expiry_time. If we take the example API call above. If we received a delivered status at 300 seconds (within the expiry_time) the workflow would be marked as completed. We would not send an SMS. We would then send the final callback. The final message in the failover is delivered. If the message Errors on the last step we will send the final callback. Please note GET is not currently supported. You will notice we have an href to a resource in some of the callbacks. These will fail to load but we wanted to maintain the same structure so that we can seamlessly integrate GET later.
aaaaaaaa-bbbb-cccc-dddd-0123456789abfailoverfailovercompletedcompletederror2020-01-01T14:00:00.000ZThe datetime of when the event occurred.
This is the total cost of your Workflow request. Please note if a preceding message in the workflow request is delivered after the final message in the workflow is delivered it may not reflect the true total cost of the workflow.
0.02The charge amount as a stringified number.
EURThe charge currency in ISO 4217 format.
EURaaaaaaaa-bbbb-cccc-dddd-0123456789abaaaaaaaa-bbbb-cccc-dddd-0123456789abPlease note GET is not currently supported
viber_service_msgmessengerviber_sevice_msgsmswhatsappmmsEURThe charge currency in ISO 4217 format.
EUR0.0333The charge amount as a stringified number.
submitteddeliveredreadrejectedundeliverableExample Payload
{
"dispatch_uuid": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab",
"template": "failover",
"status": "completed",
"timestamp": "2020-01-01T14:00:00.000Z",
"usage": {
"price": "0.02",
"currency": "EUR"
},
"_links": {
"messages": [
{
"message_uuid": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab",
"href": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab",
"channel": "viber_service_msg",
"usage": {
"currency": "EUR",
"price": "0.0333"
},
"status": "submitted"
}
]
}
}