Linkable
Products

Get product detail

GET
/v1/stores/{store_id}/products/{product_id}

Returns a single product with all its variants. Use variant_id from a variant when creating an order.

Authorization

ClientToken
AuthorizationBearer <token>

Bearer token issued by Infinitee. Pass in the Authorization: Bearer <token> header.

In: header

Path Parameters

store_id*string
Formatuuid
product_id*string
Formatuuid

Response Body

application/json

curl -X GET "https://example.com/v1/stores/497f6eca-6276-4993-bfeb-53cbbbba6f08/products/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",  "title": "string",  "status": "ACTIVE",  "variants": [    {      "variant_id": "8a2d415d-59aa-4132-bef3-011f97c4a0f6",      "title": "string",      "sku": "string",      "price": "string"    }  ]}