Check phone number is on WhatsApp
POST/contacts/check
This API to check is phone number registered as WhatsApp number. This API only available on STARTUP Package. to use this function you must re-pair your device first to recieved this update
Request
- application/json
Body
required
device stringrequired
phones string[]required
Responses
- 200
- 403
- 404
- 422
OK
Response Headers
X-Powered-By any
Content-Length any
ETag any
Date any
Connection any
Keep-Alive any
- application/json; charset=utf-8
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
status int32required
message stringrequired
data object[]required
phone stringrequired
is_on_whatsapp booleanrequired
{
"status": 200,
"message": "OK",
"data": [
{
"phone": "6281776521626",
"is_on_whatsapp": false
},
{
"phone": "6285603051722",
"is_on_whatsapp": true
}
]
}
{
"status": 200,
"message": "OK",
"data": [
{
"phone": "6281776521626",
"is_on_whatsapp": false
},
{
"phone": "6285603051722",
"is_on_whatsapp": true
}
]
}
General Forbidden Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Forbidden
message string
HTTP Status Message
{
"status": 403,
"message": "Forbidden"
}
General Not Found Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Not Found
message string
HTTP Status Message
{
"status": 404,
"message": "Not Found"
}
Unprocessable Entity
Response Headers
Date any
Server any
Vary any
X-Powered-By any
Cache-Control any
X-RateLimit-Limit any
X-RateLimit-Remaining any
phpdebugbar-id any
Content-Length any
Keep-Alive any
Connection any
- application/json
- Schema
- Example (from schema)
- Example
Schema
message stringrequired
errors objectrequired
device string[]required
{
"message": "The given data was invalid.",
"errors": {
"device": [
"The selected device is invalid."
]
}
}
{
"message": "The given data was invalid.",
"errors": {
"device": [
"The selected device is invalid."
]
}
}
Loading...