Get Blocked Numbers
Get WhatsApp Blocked Numbers
GET https://api.wapim.io/api/v1/whatsapp/blocklist
Headers
Name
Type
Description
Token*
YOUR_WAPIM_TOKEN
{
"blocklist": [
"14155238886",
"14155238887"
],
"count": 2
}curl
-X GET https://api.wapim.io/api/v1/whatsapp/blocklist
-H 'Token: YOUR_WAPIM_TOKEN'const axios = require('axios');
axios
.get(
'https://api.wapim.io/api/v1/whatsapp/blocklist',
{
headers: {
token: 'YOUR_WAPIM_TOKEN',
}
}
)
.then(response => console.log(response.data))
.catch(error => console.log(error.response.data))Last updated