Notices of end of days on balance
Automatically know in advance when you are running out of balance
When the specified value is reached, a call will be sent to your webhook. This allows you to monitor your balance.
curl --request PATCH \
--url https://manager.whapi.cloud/partners/whapicloud/settings \
--header 'accept: application/json' \
--header 'authorization: Bearer eyJhbGciOiJS......DEg' \
--header 'content-type: application/json' \
--data '
{
"webhooks": [
{
"url": "https://Your_Webhook_Address",
"events": [
{
"type": "days",
"method": "post"
}
],
"mode": "body"
}
],
"days_limit": 30
}
'
Last updated
Was this helpful?