Sending Bulk Messages - Push
Send 100 of message in a single api call
If you wish to send same content to many numbers through a single API like message is static and numbers are different for example a promotion message which need to send to 100+ users etc then use the below method ;
Leave individual “message” variable blank, and pass your message content in “globalmessage”variable
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 Bulk Messages
POST
https://pickyassist.com/app/api/v2/push
This API allows you to send Bulk Messages
Request Body
Name | Type | Description |
---|---|---|
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 10 = WhatsApp Web Automation |
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 +
|
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