Log in to your Whatsiplus panel using this link to generate your API key

Whatsiplus API
HomeGeneralSettingWebhookPartner
Wordpress Plugin
  • WhatsApp Order Notification
  • WhatsApp Login
  • WhatsApp Scheduled Notification
WHMCS Module
  • WhatsApp Notification
  • WhatsApp Login
HomeGeneralSettingWebhookPartner
Wordpress Plugin
  • WhatsApp Order Notification
  • WhatsApp Login
  • WhatsApp Scheduled Notification
WHMCS Module
  • WhatsApp Notification
  • WhatsApp Login
WhatsApp
  1. General
  • sendMsg | Single
    GET
  • sendMsg | Single
    POST
  • sendMsg | Multiple phone numbers
    POST
  • sendMsg | Multiple phone numbers (Json)
    POST
  • sentMessages
    GET
  • receivedMessages
    GET
  • getStatus
    GET
  • pending
    GET
  • getGroupList
    GET
  • sendGroup | Single
    POST
  • sendGroup | Single
    GET
  • sendGroup | Multiple groups
    POST
  • sendLocation
    GET
  • sendLocation
    POST
  • sendLocation (JSON)
    POST
  • isRegistered
    GET
  1. General

sendMsg | Multiple phone numbers (Json)

POST
https://api.whatsiplus.com/sendMsg/APIKEY
By using the following JSON structure, you can send WhatsApp messages to multiple phone numbers. This method allows you to organize the data in a clear and standardized format, making it easy to integrate with various APIs or services that support JSON.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.whatsiplus.com/sendMsg/APIKEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "phonenumber": [
        "15303776310",
        "15303776311"
    ],
    "message": "This is a test message",
    "schedule": "1724160037",
    "link": "https://www.example.com/TestPDFfile.pdf"
}'
Response Response Example
{
    "0": {
        "phonenumber": "15303776310",
        "messageId": 1817
    },
    "1": {
        "phonenumber": "15303776311",
        "messageId": 1818
    },
    "success": "true",
    "messages": "Added to the message queue"
}

Request

Body Params application/json

Examples

Responses

🟢200sendMsg | Multiple phone numbers (Json)
application/json
Body

Modified at 2024-08-27 14:29:19
Previous
sendMsg | Multiple phone numbers
Next
sentMessages
Built with