Retrieve a showcase

GET/showcases/{showcase_id}

Retrieves a showcase by its public ID, including the number of products it contains.

The response includes an ETag representing the current revision. Send this value in the If-Match header when updating the showcase to avoid overwriting a newer version.

Showcases that do not exist or are not accessible with the current credentials return 404 Not Found.

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

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/showcases/string"
{  "data": {    "created_at": "2019-08-24T14:15:22Z",    "deleted": true,    "id": "string",    "image": "string",    "kind": "group",    "name": "string",    "object": "showcase",    "parent_id": "string",    "position": 0,    "products_count": 0,    "revision": "string",    "status": "published",    "updated_at": "2019-08-24T14:15:22Z"  }}