List showcase products
/showcases/{showcase_id}/productsLists the products in a showcase in summary form, ordered by position and paginated with a cursor. Requires both the showcases.read and products.read permissions.
Credentials limited to specific products only see those products.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Query Parameters
1 <= value <= 200Value in
- "position"
- "-position"
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/showcases/string/products"{ "data": [ { "id": "string", "name": "string", "object": "product", "position": 0, "status": "published" } ], "page": { "limit": 1, "next_cursor": "string", "prev_cursor": "string" }}Duplicate a showcase POST
Creates a copy of the showcase in the same account. Copying a showcase to a different account is not supported.
Reorder showcase products PUT
Sets the display order of the products in a showcase. Requires both the `products.update` and `showcases.update` permissions. The request must contain the complete set of product IDs currently in the showcase. If the supplied set does not match, the request is rejected with `order_set_mismatch` and the existing order remains unchanged. This operation does not move products between showcases; to change a product's showcase, update the product's `showcase_id`. Send the showcase's current `ETag` value in the `If-Match` header to avoid overwriting a newer version.