Check whether a number is registered
This command checks whether a number is registered in WhatsApp.
Request command
To check a number, send a POST request to:
https://whatsgate.org/api/v1/check
Request body object
The request body must contain the following object:
{
"WhatsappID": "YOUR_WHATSAPP_ID",
"number": "79991112233"
}
- WhatsappID - WhatsApp identifier in the system
- number - phone number in digits only, including country code, for example 79991112233
Response object
Successful response object
{
"result": "OK",
"data": true
}
data - if true, the number is registered in WhatsApp; if false, it is not.