catalog_managementGET request:GET /v25.0/{product-catalog-id}/apps_and_software HTTP/1.1
Host: graph.facebook.com
| Parameter | Type | Description |
|---|---|---|
filter | string | Optional. JSON-encoded WCA filter rule for filtering apps and software. For example: {"app_category":{"eq":"Games"}}. See Product Set for the full list of filter operators. |
summary | boolean | Optional. When true, includes a summary object with total_count in the response. |
limit | integer | Optional. Maximum number of items to return per page. |
before | string | Optional. Cursor for backward pagination. |
after | string | Optional. Cursor for forward pagination. |
{
"data": [],
"paging": {},
"summary": {}
}
datapagingsummarysummary=true as a query parameter to include this in the response.| Field | Type | Description |
|---|---|---|
total_count | integer | Total number of items in the catalog. |
POST request:POST /v25.0/{product-catalog-id}/apps_and_software HTTP/1.1
Host: graph.facebook.com
Content-Type: application/json
{
"retailer_id": "app-001",
"name": "Super Puzzle Game",
"description": "A fun and challenging puzzle game for all ages",
"image_url": "https://example.com/app-icon.jpg",
"url": "https://example.com/super-puzzle-game",
"app_category": "Games",
"genre": ["Puzzle", "Casual"],
"operating_system": ["iOS", "Android"]
}
retailer_id, name, description, image_url, url. All other fields are optional.{
"id": "1234567890"
}