{ "opencollection": "1.0.0", "info": { "name": "UpKeep Assets Parts API", "version": "2022-09-14" }, "request": { "auth": { "type": "apikey", "key": "session-token", "value": "{{session-token}}", "placement": "header" } }, "items": [ { "info": { "name": "Parts", "type": "folder" }, "items": [ { "info": { "name": "List Parts", "type": "http" }, "http": { "method": "GET", "url": "https://api.onupkeep.com/api/v2/parts", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Retrieve a list of parts and inventory items." }, { "info": { "name": "Create Part", "type": "http" }, "http": { "method": "POST", "url": "https://api.onupkeep.com/api/v2/parts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new part or inventory item." }, { "info": { "name": "Get Part", "type": "http" }, "http": { "method": "GET", "url": "https://api.onupkeep.com/api/v2/parts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve details of a specific part." }, { "info": { "name": "Update Part", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.onupkeep.com/api/v2/parts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing part." }, { "info": { "name": "Delete Part", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.onupkeep.com/api/v2/parts/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a part from inventory." } ] } ], "bundled": true }