deals_list_products
List all products associated with a deal, including pricing and quantity details. Optionally include full product data for each item.
Instructions
List all products attached to a deal.
Returns all products associated with this deal, including pricing and quantity details.
Workflow tips:
Shows product_attachment_id needed for updates/removal
Set include_product_data=1 to get full product details
Includes calculated totals with discounts
Cached for 5 minutes
Common use cases:
List products: { "id": 123 }
With full details: { "id": 123, "include_product_data": 1 }
Paginated: { "id": 123, "start": 0, "limit": 50 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the deal | |
| start | No | Pagination start | |
| limit | No | Number of items to return | |
| include_product_data | No | Whether to include full product data (1 = yes, 0 = no) |