Get WhatsApp Profile Names
Get WhatsApp Profile Names
GET
https://api.wapim.io/api/v1/whatsapp/pushnames
{
"pushnames": [
{
"number": "908503461870***",
"pushname": "Bazen Defter"
},
{
"number": "****",
"pushname": "Başakşehir Özdamla MTSK"
},
{
"number": "****",
"pushname": "Başakşehir Özdamla Şb."
}
// ...
// Stripped
]
"count": 1134
}
curl
-X GET https://api.wapim.io/api/v1/whatsapp/pushnames
-H 'Token: YOUR_WAPIM_TOKEN'
const axios = require('axios');
axios
.get(
'https://api.wapim.io/api/v1/whatsapp/pushnames',
{
headers: {
token: 'YOUR_WAPIM_TOKEN',
}
}
)
.then(response => console.log(response.data))
.catch(error => console.log(error.response.data))