Sending Dynamic Messages – Push
Sending Personalised Messages
If you wish to send different message contents (personalised messages) to different numbers through a single API call like sending bill alerts , customised reminders , absentees list, personalised greetings etc then please follow the below method;
Leave “globalmessage” variable as blank
Pass each message to be send in the “message” variable against each number
We highly recommend to use this method rather than calling the single API 10 times and which increase your phone / docker load and slow down the message processing speed.
Sending Dynamic Message
POST
https://pickyassist.com/app/api/v2/push
This API allows you to send Dynamic Messages
Request Body
token
string
Your API Token for authentication
application
number
Specify through which application the message need to sent. 1 = Whatsapp Personal 2 = Whatsapp Business 3 = SMS 4 = Call Conference 8 = WhatsApp Official
globalmessage
string
Global Message Text Message with emoji supported by whatsapp If you are sending image and video you can pass caption text here
globalmedia
string
URL from we need to fetch the media , Maximum Size is 50 MB
priority
string
This gives priority in the message queue 0 = Low (Default) 1 = High
data
array
This is an array in which you need to pass the mobile number and message
number
number
Mobile Number with full country code without 0 or +
+55 12345 6789 – Wrong Format
55123456789 – Correct Format
message
string
Text Message with emoji supported by whatsapp If you are sending image and video you can pass caption text also here. Caption text is not supported for PDF, Audio, Document
Sample Request Body JSON
Sample Response
Please note “100 -> Sucess” response doesn’t means the message has been successfully send to the user, it means your message has been accepted by our servers and pushed to your phone / docker / app for processing.
Last updated