Check valid WA number
POST /api/wa/validations
Headers
Name
Value
Content-Type
application/json
X-Api-Key
<ApiKey>
Body
Query Params
Type
Description
wa
string
String of wa number with separator comma (,).
Response
{
"meta": {
"status": 200,
"message": "Successfully sent broadcast"
},
"data": {
"valids" : ["6286756524322", "6286756524325"],
"invalids" : ["6286756524324", "6286756524323"]
}
} {
"meta": {
"status": 400,
"message": "Invalid resuest"
},
"data": {}
}Last updated