{ "opencollection": "1.0.0", "info": { "name": "GetAccept Archive Users API", "version": "1.6" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://app.getaccept.com/oauth2/authorize", "accessTokenUrl": "https://app.getaccept.com/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List teams", "type": "http" }, "http": { "method": "GET", "url": "https://api.getaccept.com/v1/teams" }, "docs": "List of current teams for the entity." }, { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://api.getaccept.com/v1/users" }, "docs": "Fetch a list of active users for the current authenticated entity" }, { "info": { "name": "Create user", "type": "http" }, "http": { "method": "POST", "url": "https://api.getaccept.com/v1/users", "body": { "type": "json", "data": "{}" } }, "docs": "This will create a new contact in the database for the current entity" }, { "info": { "name": "Get user details", "type": "http" }, "http": { "method": "GET", "url": "https://api.getaccept.com/v1/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "This call will return details of a single user.\nReceive details and available entities of the current authenticated user using user-id *me*" }, { "info": { "name": "Delete user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.getaccept.com/v1/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "Delete a user." }, { "info": { "name": "Get user statistics", "type": "http" }, "http": { "method": "GET", "url": "https://api.getaccept.com/v1/users/:userId/statistics", "params": [ { "name": "userId", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "Get statistics for a single user." } ] } ], "bundled": true }