{ "opencollection": "1.0.0", "info": { "name": "Utility Accounting Forms API", "version": "2" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Forms", "type": "folder" }, "items": [ { "info": { "name": "List Forms", "type": "http" }, "http": { "method": "GET", "url": "https://utilityapi.com/api/v2/forms", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "next", "value": "", "type": "query" } ] }, "docs": "List all authorization forms for the authenticated account." }, { "info": { "name": "Create Form", "type": "http" }, "http": { "method": "POST", "url": "https://utilityapi.com/api/v2/forms", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new authorization form for collecting customer utility data permissions." }, { "info": { "name": "Get Form", "type": "http" }, "http": { "method": "GET", "url": "https://utilityapi.com/api/v2/forms/:uid", "params": [ { "name": "uid", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Retrieve a specific authorization form by UID." }, { "info": { "name": "Modify Form", "type": "http" }, "http": { "method": "PUT", "url": "https://utilityapi.com/api/v2/forms/:uid", "params": [ { "name": "uid", "value": "", "type": "path", "description": "Unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing authorization form." }, { "info": { "name": "Delete Form", "type": "http" }, "http": { "method": "DELETE", "url": "https://utilityapi.com/api/v2/forms/:uid", "params": [ { "name": "uid", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Delete an authorization form." } ] } ], "bundled": true }