Posts under category Meta & Facebook

I have tried location tagging earlier and it used to work but now we are unable to add location tag to the Instagram Reel posts since past few weeks. Though the location_id passed through params in the "{ig-user-id}/media" API is correct, the location doesn't reflect on the publish Reel post, which used to work properly. Can someone please help in resolving this.
Graph API v18.0 media_type - REELS location_id - 110774245616525 (fetched through Pages Search API)

All my templates that contains media cannot be received in the WhatsApp account sent to even if the send status is successful. Here is the response after sending a template with an image: {"success":true,"response":{"messaging_product":"whatsapp","contacts":[{"input":"212690727818","wa_id":"212690727818"}],"messages":[{"id":"wamid.HBgMMjEyNjkwNzI3ODE4FQIAERgSMDI2NzkzNkZFMzMyMUYzN0E4AA==","message_status":"accepted"}]}}. But the other templates with no media are well received.

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" }