{ "opencollection": "1.0.0", "info": { "name": "Tripleseat Accounts API", "version": "v1" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.tripleseat.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "List Accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.tripleseat.com/v1/accounts.json", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page of results to return. Each page contains 50 records." } ] }, "docs": "Retrieve a paginated list of accounts." }, { "info": { "name": "Get Account", "type": "http" }, "http": { "method": "GET", "url": "https://api.tripleseat.com/v1/accounts/:account_id.json", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "The unique identifier of the account." } ] }, "docs": "Retrieve information for a single account by its identifier." }, { "info": { "name": "Update Account", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tripleseat.com/v1/accounts/:account_id.json", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "The unique identifier of the account." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing account by its identifier." } ] } ], "bundled": true }