Be Online
Set yourself online
GET https://api.wapim.io/api/v1/whatsapp/online/set
Headers
Name
Type
Description
Token*
YOUR_WAPIM_TOKEN
{
"status": true,
"code": 200,
"data": "OK"
}curl
-X GET https://api.wapim.io/api/v1/whatsapp/online/set
-H 'Token: YOUR_WAPIM_TOKEN'const axios = require('axios');
axios
.get(
'https://api.wapim.io/api/v1/whatsapp/online/set',
{
headers: {
token: 'YOUR_WAPIM_TOKEN',
}
}
)
.then(response => console.log(response.data))
.catch(error => console.log(error.response.data))Last updated