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. Partner
  • 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
    • remove webhook
    • pending webhook
    • resend webhook
  • Partner
    • showAllService
      GET
    • create
      GET
    • qrCode
      GET
    • disconnect
      GET
    • connect
      GET
    • suspend
      GET
    • unsuspend
      GET
    • renew
      GET
    • remove
      GET
  1. Partner

showAllService

GET
https://api.whatsiplus.com/module/showAllService

Show all agent services#

This method retrieves all the available services using the provided agentKey.

Request#

Method: GET
URL: https://api.whatsiplus.com/module/showAllService
Query Parameters:
agentKey (string, required): The key of the agent

Response:#

serviceCount (integer): The count of services available.
services (array): An array of service objects containing the following properties:
apiKey (string): Your user service API KEY.
whatsappNumber (string): The WhatsApp number associated with the service.
connectedToWhatsapp (boolean): Indicates if the service is connected to WhatsApp.
expire (string): The expiry date of the service.
getMessageStatus (boolean): Indicates whether the ability to receive WhatsApp messages for the service is enabled or not..
webhook (string): The webhook URL associated with the service.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.whatsiplus.com/module/showAllService?agentKey=AGENTKEY'
Response Response Example
{
    "serviceCount": 3,
    "services": [
        {
            "apiKey": "UserAPIKEY1",
            "whatsappNumber": "",
            "connectedToWhatsapp": false,
            "expire": "2024-06-22",
            "getMessageStatus": false,
            "webhook": ""
        },
        {
            "apiKey": "UserAPIKEY2",
            "whatsappNumber": "1234567890",
            "connectedToWhatsapp": true,
            "expire": "2024-05-28",
            "getMessageStatus": true,
            "webhook": ""
        },
        {
            "apiKey": "UserAPIKEY3",
            "whatsappNumber": "1234567890",
            "connectedToWhatsapp": true,
            "expire": "2024-05-15",
            "getMessageStatus": true,
            "webhook": ""
        }
    ]
}

Request

Query Params

Responses

🟢200showAllService
application/json
Body

Modified at 2024-05-23 22:22:16
Previous
Partner
Next
create
Built with