POST v2/api/users/{id}/enabled
Sets the activity of the specified Interactive User. Disabling a user also deactivates all associated API Credentials. Re-enabling a user sets them back to their exact previous active state - i.e. password and API Credentials are exactly as they were. This API call can only be made by the Administrator who created the target user.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | The identifier. |
Define this parameter in the request URI. |
newStateInput | The new activity state. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
{ "Enabled": "sample string 1" }
Response Information
The newly updated Interactive User with their API Credentials is returned. This endpoint can only be called by the Administrator who created the target user, otherwise a 403:Forbidden is returned. The user's state must be a valid state, otherwise a 400:BadRequest is returned.
Response body formats
application/json, text/json
{ "Id": "88096f66-a369-4e74-9ef6-172a6071a688", "Name": "sample string 2", "Username": "sample string 3", "Role": "sample string 4", "Credentials": [ { "Id": "1c8504b4-0a31-435b-bbb8-6c371d416ee1", "Enabled": true, "Created": "2025-04-04T05:38:45.7232924+00:00" }, { "Id": "1c8504b4-0a31-435b-bbb8-6c371d416ee1", "Enabled": true, "Created": "2025-04-04T05:38:45.7232924+00:00" }, { "Id": "1c8504b4-0a31-435b-bbb8-6c371d416ee1", "Enabled": true, "Created": "2025-04-04T05:38:45.7232924+00:00" } ], "Enabled": true, "Created": "2025-04-04T05:38:45.7232924+00:00" }