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. API Reference
  • WhatsApp API - WhatsiPlus Documentation
  • API Reference
    • 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
  • Settings
    • serviceSettings
      GET
    • countryCode
      GET
    • enable receiveMessage
      GET
    • disable receiveMessage
      GET
  • Webhook
    • set webhook
      GET
    • remove webhook
      GET
    • pending webhook
      GET
    • resend webhook
      GET
  • Partner
    • showAllService
      GET
    • create
      GET
    • qrCode
      GET
    • disconnect
      GET
    • connect
      GET
    • suspend
      GET
    • unsuspend
      GET
    • renew
      GET
    • remove
      GET
  1. API Reference

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