You can enable or disable the shopping cart and the product catalog on a per-business phone number basis. By default, the shopping cart is enabled and the storefront icon is hidden for all business phone numbers associated with a WhatsApp Business Account.
Use the WhatsApp Business Account > Phone Numbers endpoint to get a list of all business phone numbers associated with a WhatsApp Business Account.
Use the Business Phone Number > WhatsApp Commerce Settings endpoint to enable or disable the shopping cart for a specific business phone number.
When enabled, cart-related buttons appear in the conversation, catalog, and product details views:
When the cart is disabled, customers can see products and their details, but all cart related buttons will not appear in any view.
POST /<BUSINESS_PHONE_NUMBER_ID>/whatsapp_commerce_settings ?is_cart_enabled=<IS_CART_ENABLED>
Placeholder | Sample Value | Description |
---|---|---|
|
| Business phone number ID. |
|
| Boolean. Set to |
curl -X POST 'https://graph.facebook.com/v21.0
/106850078877666/whatsapp_commerce_settings?is_cart_enabled=true' \
-H 'Authorization: Bearer EAAJB...'
{ "success": true }
Use the Business Phone Number > WhatsApp Commerce Settings endpoint to enable or disable the product catalog for a specific business phone number.
When enabled, the catalog storefront icon and catalog-related buttons appear in conversation and business profile views:
When the catalog is disabled, the storefront icon and catalog-related buttons will not appear in any views and the catalog preview with thumbnails will not appear in the business profile view.
If you disable the catalog, wa.me links to your catalog, as well as the View catalog button that appears when you send your catalog link in a message will display an Invalid catalog link warning when tapped.
POST /<BUSINESS_PHONE_NUMBER_ID>/whatsapp_commerce_settings ?is_catalog_visible=<IS_CATALOG_VISIBLE>
Placeholder | Sample Value | Description |
---|---|---|
|
| Business phone number ID. |
|
| Boolean. Set to |
curl -X POST 'https://graph.facebook.com/v21.0
/106850078877666/whatsapp_commerce_settings?is_catalog_visible=true' \
-H 'Authorization: Bearer EAAJB...'
{ "success": true }
Use the Business Phone Number > WhatsApp Commerce Settings endpoint to get an individual business phone number's commerce settings.
GET /<BUSINESS_PHONE_NUMBER_ID>/whatsapp_commerce_settings
Placeholder | Sample Value | Description |
---|---|---|
|
| Business phone number ID. |
curl -X GET 'https://graph.facebook.com/v21.0
/106850078877666/whatsapp_commerce_settings' \
-H 'Authorization: Bearer EAAJB...'
{ "data": [ { "is_cart_enabled": true, "is_catalog_visible": true, "id": "727705352028726" } ] }