Sending WHATSAPP
To have an opportunity to send WHATSAPP messages, please contact your manager.
Messages are sent in chat mode:
if the chat is initiated by a client, the first message must match the registered template. Each time the subscriber replies, a 24-hour window will open to send messages with arbitrary content. If the subscriber does not reply, the client can send messages to the user outside the 24-hour window using pre-registered message templates;
if the chat is initiated by the subscriber, during the 24-hour window the client can send messages with arbitrary content.
Sending WHATSAPP
POST
https://direct.revicom.ltd/api/v1/message
The method allows for sending an array of single messages (1 to 1,000)
Headers
Authorization*
string
Basic {TOKEN_1}
Content-Type*
string
application/json
Request Body
channelType*
string
Sending channel (SMS
)
senderName*
string
Sender name. WHATSAPP-names with the status “Approved” are allowed, with the start date not later than the request time
destination*
string
Subscriber number
content*
object
Message content. Below are the possible contents
tags
array
Message tags (array of strings). Each tag must match the expression ^\w+$
(any case letters, numbers and underscore "_" are allowed)
useLocalTime
boolean
Flag responsible for the time zone in which the message will be sent:
true
– sending in the subscriber time zone
false
– sending by Moscow time
By default, true
localSendTime
string
Low bound for the allowed time to send a message (subject to useLocalTime
)
Date in the format 'YYYY-MM-DD hh:mm:ss
' in the range from (current UTC time – 12 hours) to (current UTC time + 7 days)
By default the message will be sent immediately
localCompletionTime
string
Upper bound for the allowed time to send a message (subject to useLocalTime
) in the range from localSendTime
to (current UTC time + 70 days)
ttl
integer
Message lifetime in seconds. After the ttl expires, the final status is set to the message
60 ≤ ttl ≤ 86400
hours
array
Valid sending hours (array of numbers). Integers from 0 to 23 can be transmitted in the array, each corresponding to the hour interval allowed for sending, subject to useLocalTime;
the values must be unique.
days
array
Valid sending days (array of numbers). Integers from 1 (Mon) to 7 (Sun) can be transmitted in the array, each corresponding to the week day allowed for sending; the values must be unique.
shortUrl
boolean
Flag responsible for shortening links in the message:
true
- links in the text of the message will be shortened
By default, false
callbackUrl
string
Address to send callback
callbackEvents
array
Events to send callback (an array of strings). If there is callbackUrl
and no callbackEvents
in the request, a callback will be sent on the event delivered
If the request is successful, a response is returned that lists the message IDs and result codes. With errors = false, all submitted messages are guaranteed to have been successfully generated.
Recommended minimum timeout: 70 seconds
To set up custom domain for the link shortening functionality, please contact customer support
Enumerations:
callbackEvents
Text message
In addition to text, a WHATSAPP text message may contain a header, footer, and buttons. To send a text WHATSAPP message, use the following object content
:
contentType
string
required
Content type (text
)
text
string
required
Message text; UTF-8 encoded string without Byte Order Mark
1 to 1,000 characters
header
object optional
Message header
header.text
string optonal
Header text Any string 1 to 60 characters
header.documentUrl
string optional
Link to the document for the header
header.documentName
string optional
Title of the document for the header; may only be present if documentUrl
header.imageUrl
string optional
Link to the image for the header
footer
object optional
Message footer
footer.text
string optional
Footer text Any string 1 to 60 characters
buttons
array (objects) optional
Array with button objects
buttons.text
string optonal
Button text Any string 1 to 20 characters
buttons.url
string optional
The link to which the button is clicked
Any string 1 to 1,000 characters
Must begin with http
buttons.phone
string optional
Phone number to which you are prompted to make a call when you press the button
Any string 1 to 1,000 characters
buttons.payload
string optional
Hidden text that will be sent in the incoming message if the user clicks on the button
Any string 1 to 1,000 mcharacters
Message header
• in the header
object, only one of the following can be used:
text
documentUrl
иdocumentName
imageUrl
Message buttons
in the buttons array, 1 to 3 objects are allowed
any object must have text
there are two types of the buttons:
link button: contains text and url or text and phone
text button: contains text and payloa
one message may transmit one-type buttons only
one message may have only one button with parameter
url
one message may have only one button with parameter
phone
when transmitting buttons with text, no more than three objects in the array are allowed
when passing buttons with a link, no more than two objects in the array are allowed
buttons in the message do not affect a header or footer
Objects examples
Message with image
To send WHATSAPP message with an image attached, use the following object content
:
contentType
string required
Content Type (image
)
imageUrl
string required
Link to the image
imageName
string required
Image name
Header, footer and buttons are validated according to the same rules as for a text message
Message with document
To send WHATSAPP message with an image attached, use the following object content
:
contentType
string required
Content Type (document
)
documentUrl
string required
Link to the document
documentName
string required
Name of the document
Header, footer and buttons are validated according to the same rules as for a text message
Request example
Last updated