{ "opencollection": "1.0.0", "info": { "name": "Nortech Asset API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Asset", "type": "folder" }, "items": [ { "info": { "name": "List Workspace Assets", "type": "http" }, "http": { "method": "GET", "url": "https://api.apps.nor.tech/api/v1/workspaces/:workspace/assets", "params": [ { "name": "workspace", "value": "", "type": "path" }, { "name": "size", "value": "", "type": "query" }, { "name": "nextToken", "value": "", "type": "query" }, { "name": "sortBy", "value": "", "type": "query" }, { "name": "sortOrder", "value": "", "type": "query" } ] }, "docs": "List all `Assets` in a `Workspace` by its `ID` or `Name`." }, { "info": { "name": "Get Workspace Asset", "type": "http" }, "http": { "method": "GET", "url": "https://api.apps.nor.tech/api/v1/workspaces/:workspace/assets/:asset", "params": [ { "name": "workspace", "value": "", "type": "path" }, { "name": "asset", "value": "", "type": "path" } ] }, "docs": "Get an `Asset` in a `Workspace` by their `Names`." }, { "info": { "name": "Get Asset", "type": "http" }, "http": { "method": "GET", "url": "https://api.apps.nor.tech/api/v1/assets/:asset", "params": [ { "name": "asset", "value": "", "type": "path" } ] }, "docs": "Get an `Asset` by its `ID`." }, { "info": { "name": "Update Asset", "type": "http" }, "http": { "method": "PUT", "url": "https://api.apps.nor.tech/api/v1/assets/:asset", "params": [ { "name": "asset", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an `Asset` by its `ID` or `Name` **(Requires editor permissions)**" }, { "info": { "name": "Create Asset", "type": "http" }, "http": { "method": "POST", "url": "https://api.apps.nor.tech/api/v1/assets", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new `Asset` **(Requires editor permissions)**" } ] } ], "bundled": true }