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

sendGroup | Multiple groups

POST
https://api.whatsiplus.com/sendGroup/APIKEY

Send Group Message#

Use this endpoint to send a message to several groups at the same time

Request Body#

groupId[] (text): WhatsApp Group ID (array)
message (text): Text Message
url (text): Media URL (image, sound, video, ...)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.whatsiplus.com/sendGroup/APIKEY' \
--form 'groupId[]="120363292564959780"' \
--form 'groupId[]="120363293575057977"' \
--form 'message="This is a test message"' \
--form 'link="https://example.com/image.jpg"'
Response Response Example
{
    "0": {
        "groupId": "120363292564959780",
        "messageId": 647
    },
    "1": {
        "groupId": "120363293575057977",
        "messageId": 648
    },
    "success": "true",
    "messages": "Added to the message queue"
}

Request

Body Params multipart/form-data

Responses

🟢200sendGroup
application/json
Body

Modified at 2024-09-07 19:43:05
Previous
sendGroup | Single
Next
sendLocation
Built with