{ "opencollection": "1.0.0", "info": { "name": "Zuper REST Assets API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Assets", "type": "folder" }, "items": [ { "info": { "name": "Get All Assets", "type": "http" }, "http": { "method": "GET", "url": "https://{dc_region}.zuperpro.com/api/assets", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (1-based)" }, { "name": "count", "value": "", "type": "query", "description": "Number of records per page (max 1000)" }, { "name": "sort", "value": "", "type": "query" } ] }, "docs": "Retrieve a paginated list of assets." }, { "info": { "name": "Create Asset", "type": "http" }, "http": { "method": "POST", "url": "https://{dc_region}.zuperpro.com/api/assets", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new asset record." }, { "info": { "name": "Get Asset Details", "type": "http" }, "http": { "method": "GET", "url": "https://{dc_region}.zuperpro.com/api/assets/:asset_uid", "params": [ { "name": "asset_uid", "value": "", "type": "path" } ] }, "docs": "Retrieve detailed information for a specific asset." }, { "info": { "name": "Update Asset", "type": "http" }, "http": { "method": "PUT", "url": "https://{dc_region}.zuperpro.com/api/assets/:asset_uid", "params": [ { "name": "asset_uid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing asset record." }, { "info": { "name": "Delete Asset", "type": "http" }, "http": { "method": "DELETE", "url": "https://{dc_region}.zuperpro.com/api/assets/:asset_uid", "params": [ { "name": "asset_uid", "value": "", "type": "path" } ] }, "docs": "Delete an asset record." } ] } ], "bundled": true }