Posts under category Facebook WhatsApp Business API

Reading Facebook's documentation, there are various levels of limits for the messages a business can send in 24 hours.

1K business-initiated conversations
10K business-initiated conversations
100K business-initiated conversations
An unlimited number of business-initiated conversations

What I need via an API call is the current limit and the number of messages sent in 24 hours, so I can halt any further sends from my application if the limit is nearly reached. Do you know what API call should I execute in order to get the limit?

At the moment, the only API call that comes close to this result is the following:

GET https://graph.facebook.com/v17.0/{phone-number-id}/phone_numbers?access_token={access_token}

the API call returns this JSON:

{     "data": [         {             "verified_name": "{company-name}",             "code_verification_status": "EXPIRED",             "display_phone_number": "{company-number}",             "quality_rating": "GREEN",             "platform_type": "CLOUD_API",             "throughput": {                 "level": "STANDARD"             },             "webhook_configuration": {                 "application": "{webhook-url}"             },             "id": "{phone-number-id}"         }     ] } 

but what I except is something like this

{   "id": "your-phone-number-id",   "quality_rating": "GREEN",   "message_limit": 1000,   "next_limit_reset_timestamp": "2024-06-06T00:00:00Z",   "tier": "TIER_1" } 

When I click 'Delete' button in my Facebook Business settings > WhatsApp accounts, I get an error kinda 'Cannot delete because there's a phone number', even though it's just a test number. Also, cannot delete the test number, because 'Phone numbers' menu is disabled in WhatsApp Manager. Because of all this, I cannot delete my Facebook Business company. So, Meta, what's going on? How to delete this? Why do you have a 'Support' page if there is no actual info 'how to' do things?!

I was sent many msg by whatsapp API sent successfully and suddenly got an error message
(#135000) Generic user error
Phone Number: +966 50 612 6276 Email Address FB: [...] APP ID: 804460901614985 WhatsApp Business Account ID: 316522031545271 Phone number ID: 289654480905686
App ID: 418035371023763
Response Error: 400 bad Request { "error": { "message": "(#135000) Generic user error", "type": "OAuthException", "code": 135000, "error_data": { "messaging_product": "whatsapp", "details": "Generic user error" }, "fbtrace_id": "AUC_GOOkiSJb3f-aL1iyd9m" } }

I've tried several times, sending template via the API, now with 1 parameter and I get the same error. I send: {"messagingmarketing_product":"whatsapp", "template":{"components":[{"parameters":[{"text":"PARAM", "type":"text"}], "type":"body"}], "language":{"code":"he", "policy":"deterministic"}, "name":"inbox__data":{"details":"Generic user error", "messaging__id":"AL__241"}, "to":"972555033576", "type":"template"}}
I'm receiving: {"error":{"code":135000, "errorproduct":"whatsapp"}, "fbtraceiiz180gqQ5ywG-lNAA_g", "message":"(#135000) Generic user error", "type":"OAuthException"}}
Please help us overcome this issue as we cant send template messages.
It was working becuase using same API code and then suddently stopped working without any change from our side.