Represents a collection of product catalogs in an IG User's Instagram Shop. See Product Tagging guide for complete usage details.
Available for the Instagram API with Facebook Login.
This operation is not supported.
GET /<IG_USER_ID>/available_catalogs
Get the product catalog in an IG User's Instagram Shop.
Type | Requirement |
---|---|
The app user must have an admin role on the Business Manager that owns the IG User's Instagram Shop. | |
The IG User must have an approved Instagram Shop with a product catalog containing products. | |
If the app user was granted a role via the Business Manager on the Page connected to the targeted IG User, you will also need one of: |
GET https://graph.facebook.com/<API_VERSION>/<IG_USER_ID>/available_catalogs ?fields=<LIST_OF_FIELDS> &access_token=<ACCESS_TOKEN>
Placeholder | Value |
---|---|
| API version. |
| Required. App user's app-scoped user ID. |
Key | Placeholder | Value |
---|---|---|
|
| Required. App user's User access token. |
|
| Comma-separated list of catalog fields you want returned for each catalog in the result set. |
A JSON-formatted object containing the data you requested.
{ "data": [ { "catalog_id": "{catalog-id}", "catalog_name": "{catalog-name}", "shop_name": "{shop-name}", "product_count": {product-count} } ] }
Property | Value |
---|---|
| Catalog ID. |
| Catalog name. |
| Shop name. |
| Number of products in catalog. Includes all products regardless of review status. |
curl -i -X GET \
"https://graph.facebook.com/v21.0
/90010177253934/available_catalogs?access_token=EAAOc..."
{ "data": [ { "catalog_id": "960179311066902", "catalog_name": "Jay's Favorite Snacks", "shop_name": "Jay's Bespoke", "product_count": 11 } ] }
This operation is not supported.
This operation is not supported.