For the complete documentation index, see llms.txt. This page is also available as Markdown.

Notices of end of days on balance

Automatically know in advance when you are running out of balance

Callback when your balance is less than a set number of days.

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