Posts under category Meta & Facebook

I'm doing a request to the Product Catalog Products API with this URL:
https://graph.facebook.com/v20.0/[PRODUCT_CATALOG_ID]/products?access_token=[ACCESS_TOKEN]&filter={"name":{"i_contains":"Agua"}}&fields=["retailer_id","name","description","price","visibility","inventory","url","image_url"]
Some days ago it stopped working, in the response i'm only reeiving the info of the name like this:
{ "data": [ { "name": "Agua" } ], "paging": { "cursors": { "before": [BEFORE_CURSOR], "after": [AFTER_CURSOR] }, "next": [NEXT_URL], "previous": [PREVIOUS_URL] } }

Hello! I'm having some recent issues with message delivery. Some messages sent to my personal phone number (as a test) and some other numbers are not being delivered. From the same template, there are messages delivered and others not delivered, but without any apparent logic or reason. I would like to understand what could be happening. On webhook I'm receiving a payload of a return that reports the error/delivery failure with a generic code. Reading the documentation about this error code, it doesn't fit our case and that's why I'm contacting support/forum. Could anyone help-me?
Bellow a sample return payload:
{ "object": "whatsapp_business_account", "entry": [ { "id": "132019526670561", "changes": [ { "value": { "messaging_product": "whatsapp", "metadata": { "display_phone_number": "5519971220099", "phone_number_id": "118611738011797" }, "statuses": [ { "id": "wamid.HBgNNTUxOTk4ODE5MTMwNRUCABEYEjYzQjBDNzU1QTFFNDhENkM3MgA=", "status": "failed", "timestamp": "1726059026", "recipient_id": "5519988191305", "errors": [ { "code": 131026, "title": "Message undeliverable", "message": "Message undeliverable", "error_data": { "details": "Message Undeliverable." }, "href": "https://developers.facebook.com/docs/whatsapp/cloud-api/support/error-codes/" } ] } ] }, "field": "messages" } ] } ] }

The operation failed with an error. Unsupported get request. Object with ID '6473825786074581' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api (100, GraphMethodException)

I'm trying to unlink a product catalog from a WhatsApp Business Account (WABA) via the Meta Graph API. Still, I can't find the appropriate API endpoint for this action.

From the Meta Business Manager, I noticed that when unlinking a catalog, the following request is made:

Request URL: https://business.facebook.com/api/graphql/ Request Method: POST { "input": { "waba_id": "WABA_ID_HERE", "catalog_id": "CATALOG_ID_HERE", "action": "UNLINK", "actor_id": "ACTOR_ID_HERE", "client_mutation_id": "" } }

However, this seems to be part of the internal GraphQL API, and I can't find a corresponding endpoint in the official Graph API documentation to unlink a catalog from a WABA.

Is there a specific Graph API endpoint or another method that allows unlinking a product catalog from a WABA through the official Meta Graph API? If so, could you provide details on implementing it or any alternative solution?

Thank you in advance for any help!