{ "opencollection": "1.0.0", "info": { "name": "Zesty Accounts Apps Tokens API", "version": "1.0.0" }, "items": [ { "info": { "name": "Tokens", "type": "folder" }, "items": [ { "info": { "name": "Zesty List all access tokens", "type": "http" }, "http": { "method": "GET", "url": "https://accounts.api.zesty.io/v1/tokens", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Returns a list of all access tokens for the account." }, { "info": { "name": "Zesty Create an access token", "type": "http" }, "http": { "method": "POST", "url": "https://accounts.api.zesty.io/v1/tokens", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Creates a new access token for API authentication." }, { "info": { "name": "Zesty Get an access token", "type": "http" }, "http": { "method": "GET", "url": "https://accounts.api.zesty.io/v1/tokens/:tokenZUID", "params": [ { "name": "tokenZUID", "value": "", "type": "path", "description": "The ZUID of the token." } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Returns details for a specific access token." }, { "info": { "name": "Zesty Delete an access token", "type": "http" }, "http": { "method": "DELETE", "url": "https://accounts.api.zesty.io/v1/tokens/:tokenZUID", "params": [ { "name": "tokenZUID", "value": "", "type": "path", "description": "The ZUID of the token." } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Deletes a specific access token." } ] } ], "bundled": true }