{ "opencollection": "1.0.0", "info": { "name": "Sisense REST Authentication Users API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List Users", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/v1/users", "params": [ { "name": "fields", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "skip", "value": "", "type": "query" } ] }, "docs": "Returns a list of users in the Sisense system." }, { "info": { "name": "Create User", "type": "http" }, "http": { "method": "POST", "url": "https://{host}/api/v1/users", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user in Sisense." }, { "info": { "name": "Get User", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier" } ] }, "docs": "Returns a specific user by ID." }, { "info": { "name": "Update User", "type": "http" }, "http": { "method": "PATCH", "url": "https://{host}/api/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates specific fields of a user." }, { "info": { "name": "Delete User", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}/api/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier" } ] }, "docs": "Deletes a user from Sisense." } ] } ], "bundled": true }