Normal Post Method

This is a normal post method and useful for those who would like to use the API as Webhook for various 3rd party applications like Zoho CRM, Zapier Integromat or any applications which don't directly support our default JSON POST method.

This method is useful for sending outgoing messages without the help of any developers since you can just copy & paste the code into 3rd party applications and map variables into it.

Sample Request Normal POST Method

You have to post the message into a variable "data" as shown below

https://pickyassist.com/app/api/v2/push?data=JSON

{
  "token": "YOUR_API_TOKEN",
  "priority ": "0",
  "application": "1",
  "globalmessage": "your global message ",
  "globalmedia": "MEDIA FILE UNIQUE URL",
  "data": [
    {
      "number": "NUMBER 1",
      "message": "MESSAGE FOR NUMBER 1"
    },
    {
      "number": "NUMBER 2",
      "message": "MESSAGE FOR NUMBER 2"
    },
    {
      "number": "NUMBER 3",
      "message": "MESSAGE FOR NUMBER 3"
    },
    {
      "number": "NUMBER 4",
      "message": "MESSAGE FOR NUMBER 4"
    },
    {
      "number": "NUMBER 5",
      "message": "MESSAGE FOR NUMBER 5"
    }
  ]
}

Last updated