users
User management service
change_caller_password
Changes the password of the calling user. When the user is identified by the DQOps local API key, it is the user whose email is stored in the DQOps API Key.
Source code
PUT
Request body
Description | Data type | Required |
---|---|---|
New Password | string |
Usage examples
change_user_password
Changes the password of a user identified by the email.
Source code
PUT
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
User's email | string |
Request body
Description | Data type | Required |
---|---|---|
New Password | string |
Usage examples
create_user
Creates (adds) a new user to a multi-user account.
Source code
POST
Request body
Description | Data type | Required |
---|---|---|
User model | DqoCloudUserModel |
Usage examples
delete_user
Deletes a user from a multi-user account.
Source code
DELETE
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
User's email | string |
Usage examples
get_all_users
Returns a list of all users.
Source code
GET
Return value
Property name | Description | Data type |
---|---|---|
dqo_cloud_user_model | List[DqoCloudUserModel] |
Usage examples
get_user
Returns the user model that describes the role of a user identified by an email
Source code
GET
Return value
Property name | Description | Data type |
---|---|---|
dqo_cloud_user_model | DqoCloudUserModel |
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
User's email | string |
Usage examples
update_user
Updates a user in a multi-user account. The user's email cannot be changed.
Source code
PUT
Parameters of this method are described below
Property name | Description | Data type | Required |
---|---|---|---|
User's email | string |
Request body
Description | Data type | Required |
---|---|---|
User model | DqoCloudUserModel |
Usage examples