The products API provides basic catalog management — creating new products and retrieving them by ID. Creating a product requires theDocumentation Index
Fetch the complete documentation index at: https://alphabet-06152314.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
CatalogWrite authorization policy; retrieving a product is open to anonymous requests.
Create a product
Location header points to the URL of the new resource.
Authorization: CatalogWrite policy required.
Request body
Display name of the product. Must be non-empty.
Optional description of the product.
Unit price of the product. Must be a positive value.
ISO 4217 currency code (e.g.
USD, EUR, GBP).Response
201 Created — returnsProductResponseDto. The Location header is set to /api/v1/products/{id}.
Unique identifier for the created product.
Display name of the product.
Description of the product.
Unit price of the product.
Currency code for the price.
ProblemDetails when validation fails or the product could not be created.
Example
Example response
Get a product by ID
Path parameters
The unique identifier of the product to retrieve.
Response
200 OK — returnsProductResponseDto.
Unique identifier of the product.
Display name of the product.
Description of the product.
Unit price of the product.
Currency code for the price.
ProblemDetails when no product with the specified ID exists.