{ "opencollection": "1.0.0", "info": { "name": "Rollbar Deployment Access Tokens API", "version": "1" }, "request": { "auth": { "type": "apikey", "key": "X-Rollbar-Access-Token", "value": "{{X-Rollbar-Access-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "Access Tokens", "type": "folder" }, "items": [ { "info": { "name": "List All Project Access Tokens", "type": "http" }, "http": { "method": "GET", "url": "https://api.rollbar.com/api/1/project/:projectId/access_tokens", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "The ID of the project." } ] }, "docs": "Returns all access tokens for a specific project, including their scopes and rate limits." }, { "info": { "name": "Create a Project Access Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.rollbar.com/api/1/project/:projectId/access_tokens", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "The ID of the project." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new access token for a project with specified scopes and rate limits." }, { "info": { "name": "Update a Project Access Token", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.rollbar.com/api/1/project/:projectId/access_token/:accessTokenId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "The ID of the project." }, { "name": "accessTokenId", "value": "", "type": "path", "description": "The ID of the access token to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates properties of a project access token, such as its name, scopes, or rate limits." } ] } ], "bundled": true }