List showcase products

GET/showcases/{showcase_id}/products

Lists 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.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

showcase_id*string

Query Parameters

limit?integer
Range1 <= value <= 200
cursor?string
sort?string

Value 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"  }}