{ "opencollection": "1.0.0", "info": { "name": "Gelato Ecommerce API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Ecommerce", "type": "folder" }, "items": [ { "info": { "name": "List products", "type": "http" }, "http": { "method": "GET", "url": "https://order.gelatoapis.com/v1/stores/:storeId/products", "params": [ { "name": "storeId", "value": "", "type": "path" }, { "name": "orderBy", "value": "", "type": "query" }, { "name": "order", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of products in a connected store." }, { "info": { "name": "Get product", "type": "http" }, "http": { "method": "GET", "url": "https://order.gelatoapis.com/v1/stores/:storeId/products/:productId", "params": [ { "name": "storeId", "value": "", "type": "path" }, { "name": "productId", "value": "", "type": "path" } ] }, "docs": "Returns a single product from a connected store." }, { "info": { "name": "Create product from template", "type": "http" }, "http": { "method": "POST", "url": "https://order.gelatoapis.com/v1/stores/:storeId/products:create-from-template", "params": [ { "name": "storeId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a store product from an existing template, supplying title, description, and variant overrides." }, { "info": { "name": "Get template", "type": "http" }, "http": { "method": "GET", "url": "https://order.gelatoapis.com/v1/templates/:templateId", "params": [ { "name": "templateId", "value": "", "type": "path" } ] }, "docs": "Returns the details of a product template by its template id." } ] } ], "bundled": true }