{ "opencollection": "1.0.0", "info": { "name": "Elementum Access Token Flows API", "version": "0.0.1" }, "items": [ { "info": { "name": "Flows", "type": "folder" }, "items": [ { "info": { "name": "Create a flow", "type": "http" }, "http": { "method": "POST", "url": "/v1/flows/create", "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Create a flow" }, { "info": { "name": "Update a flow by ID", "type": "http" }, "http": { "method": "PUT", "url": "/v1/flows/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The resource ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Update a flow by ID" } ] } ], "bundled": true }