{ "opencollection": "1.0.0", "info": { "name": "Tinybird Analyze Tokens API", "version": "v0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tokens", "type": "folder" }, "items": [ { "info": { "name": "List Tokens", "type": "http" }, "http": { "method": "GET", "url": "https://api.tinybird.co/v0/tokens/" }, "docs": "Retrieve all workspace static tokens." }, { "info": { "name": "Create Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.tinybird.co/v0/tokens/", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new static or JWT token with specified scopes and permissions." }, { "info": { "name": "Get Token", "type": "http" }, "http": { "method": "GET", "url": "https://api.tinybird.co/v0/tokens/:tokenId", "params": [ { "name": "tokenId", "value": "", "type": "path" } ] }, "docs": "Fetch information about a particular static token." }, { "info": { "name": "Update Token", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tinybird.co/v0/tokens/:tokenId", "params": [ { "name": "tokenId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Modify an existing static token's properties and scopes." }, { "info": { "name": "Delete Token", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.tinybird.co/v0/tokens/:tokenId", "params": [ { "name": "tokenId", "value": "", "type": "path" } ] }, "docs": "Remove a static token, immediately revoking its access." }, { "info": { "name": "Refresh Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.tinybird.co/v0/tokens/:tokenId/refresh", "params": [ { "name": "tokenId", "value": "", "type": "path" } ] }, "docs": "Refresh a static token's value while preserving all other attributes." } ] } ], "bundled": true }