{ "opencollection": "1.0.0", "info": { "name": "COR Attachments Brands API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Brands", "type": "folder" }, "items": [ { "info": { "name": "Get Brands", "type": "http" }, "http": { "method": "GET", "url": "https://api.projectcor.com/v1/brands", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (default: 1). Set to `false` to disable pagination." }, { "name": "perPage", "value": "", "type": "query", "description": "Number of items per page (default: 20)." } ] }, "docs": "Retrieves a paginated list of brands. By default, responses are paginated with 20 items per page." }, { "info": { "name": "Create a brand", "type": "http" }, "http": { "method": "POST", "url": "https://api.projectcor.com/v1/brands", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new brand entity." }, { "info": { "name": "Get brand by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.projectcor.com/v1/brands/:brand_id", "params": [ { "name": "brand_id", "value": "", "type": "path" } ] }, "docs": "Get brand by ID" }, { "info": { "name": "Update a brand", "type": "http" }, "http": { "method": "PUT", "url": "https://api.projectcor.com/v1/brands/:brand_id", "params": [ { "name": "brand_id", "value": "", "type": "path" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "client_id", "value": "" } ] } }, "docs": "Update a brand entity." }, { "info": { "name": "Delete a brand", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.projectcor.com/v1/brands/:brand_id", "params": [ { "name": "brand_id", "value": "", "type": "path" } ] }, "docs": "Destroy a brand entity." } ] } ], "bundled": true }