{ "opencollection": "1.0.0", "info": { "name": "ClimateAI Platform Product API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "product", "type": "folder" }, "items": [ { "info": { "name": "Get all available products", "type": "http" }, "http": { "method": "GET", "url": "/product/" } }, { "info": { "name": "Creates a new product", "type": "http" }, "http": { "method": "POST", "url": "/product/", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new product" }, { "info": { "name": "Retrieves a product by its id", "type": "http" }, "http": { "method": "GET", "url": "/product/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ] } }, { "info": { "name": "Updates product", "type": "http" }, "http": { "method": "PUT", "url": "/product/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates product" }, { "info": { "name": "Deletes product", "type": "http" }, "http": { "method": "DELETE", "url": "/product/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ] }, "docs": "Deletes product" } ] } ], "bundled": true }