{ "opencollection": "1.0.0", "info": { "name": "Drift Accounts API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "Drift Create an account", "type": "http" }, "http": { "method": "POST", "url": "http://{{base_url}}/accounts/create", "body": { "type": "json", "data": "{}" } }, "docs": "Drift Create an account" }, { "info": { "name": "Drift Fetch an account", "type": "http" }, "http": { "method": "GET", "url": "http://{{base_url}}/accounts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Drift accountId" } ] }, "docs": "Drift Fetch an account" }, { "info": { "name": "Drift Delete an account", "type": "http" }, "http": { "method": "DELETE", "url": "http://{{base_url}}/accounts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Drift accountId" } ] }, "docs": "Drift Delete an account" }, { "info": { "name": "Drift List accounts", "type": "http" }, "http": { "method": "GET", "url": "http://{{base_url}}/accounts", "params": [ { "name": "index", "value": "", "type": "query", "description": "Used as a starting index of the the accounts query in the authenticated Drift user's account" }, { "name": "size", "value": "", "type": "query", "description": "Number of accounts per batch (default=10, max=65)" } ] }, "docs": "Drift List accounts" }, { "info": { "name": "Drift Update an account", "type": "http" }, "http": { "method": "PATCH", "url": "http://{{base_url}}/accounts/update", "body": { "type": "json", "data": "{}" } }, "docs": "Drift Update an account" } ] } ], "bundled": true }