{ "opencollection": "1.0.0", "info": { "name": "Tiendanube / Nuvemshop Categories Products API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authentication", "value": "{{Authentication}}", "placement": "header" } }, "items": [ { "info": { "name": "Products", "type": "folder" }, "items": [ { "info": { "name": "List products", "type": "http" }, "http": { "method": "GET", "url": "https://api.tiendanube.com/v1/{store_id}/products", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" }, { "name": "q", "value": "", "type": "query", "description": "Full-text search across product names and SKUs." }, { "name": "category_id", "value": "", "type": "query", "description": "Filter products belonging to a category." }, { "name": "published", "value": "", "type": "query" }, { "name": "updated_at_min", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of products in the store's catalog." }, { "info": { "name": "Create a product", "type": "http" }, "http": { "method": "POST", "url": "https://api.tiendanube.com/v1/{store_id}/products", "body": { "type": "json", "data": "{}" } }, "docs": "Create a product" }, { "info": { "name": "Get a product", "type": "http" }, "http": { "method": "GET", "url": "https://api.tiendanube.com/v1/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a product" }, { "info": { "name": "Update a product", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tiendanube.com/v1/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a product" }, { "info": { "name": "Delete a product", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.tiendanube.com/v1/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a product" } ] } ], "bundled": true }