diff --git a/docs/gen/redoc.ingress.v1.html b/docs/gen/redoc.ingress.v1.html index cd97840..a79de60 100644 --- a/docs/gen/redoc.ingress.v1.html +++ b/docs/gen/redoc.ingress.v1.html @@ -12,377 +12,377 @@ margin: 0; } -
Download OpenAPI specification:
Read-only API for querying the Stash managed product catalog. Designed for server-to-server communication between partner backends and Stash services.
Read-only endpoints for querying the managed product catalog
Retrieves a paginated list of published products for a shop. Results are ordered by creation date (most recent first). Only published products are returned; drafts and deleted products are excluded.
Shop identifier from Stash Studio
Maximum results per page. Defaults to 50. Maximum allowed value is 100.
Pagination offset. Use next_offset from the previous response to fetch the next page. Defaults to 0.
A successful response.
An unexpected error response.
{"products": [{"guid": "string","name": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"productId": "string","description": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"images": {"mainImage": "string","backgroundImage": "string"},"status": "PRODUCT_STATUS_PUBLISHED","createdAt": "2019-08-24T14:15:22Z","updatedAt": "2019-08-24T14:15:22Z","displayName": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"prices": [{"currency": "USD","platform": "PRODUCT_PRICE_PLATFORM_UNIVERSAL","region": "US","cents": 499,"updatedAt": "2026-01-15T10:30:00Z"}],"items": [{"image": "https://example.com/coin.png","quantity": "100","displayName": {"defaultText": "Gold Coin"}}]}],"nextOffset": 0}
Retrieves a single published product by its GUID. Returns NOT_FOUND if the product does not exist or is not published.
Stash-internal unique product identifier (UUID)
{"product": {"guid": "string","name": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"productId": "string","description": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"images": {"mainImage": "string","backgroundImage": "string"},"status": "PRODUCT_STATUS_PUBLISHED","createdAt": "2019-08-24T14:15:22Z","updatedAt": "2019-08-24T14:15:22Z","displayName": {"defaultText": "string","localizationKey": "string","localizedText": "string"},"prices": [{"currency": "USD","platform": "PRODUCT_PRICE_PLATFORM_UNIVERSAL","region": "US","cents": 499,"updatedAt": "2026-01-15T10:30:00Z"}],"items": [{"image": "https://example.com/coin.png","quantity": "100","displayName": {"defaultText": "Gold Coin"}}]}}