User Management API
Version 22.0.8483
Version 22.0.8483
User Management API
Connection Management
List all Users
Returns a list of all Users within the Sync application.
GET http://mydomain.com:8019/api.rsc/users(Name)
Query Parameters
| Name | Description |
|---|---|
| User | The name of the user to retrieve. |
Modify a User
Modifies an existing User. The only modifiable fields are User, ExpiredIn, Active and Roles
PUT http://mydomain.com:8019/api.rsc/users(Name)
Query Parameters
| Name | Description |
|---|---|
| User (required) | The name of the user to modify. |
Body Parameters
| Name | Description |
|---|---|
| User | The User’s name. |
| Active | Whether the user is active or not. |
| ExpiredIn | The number of days until the AuthToken expires. |
| Roles | The User’s role. |
{
"User": "MyUser",
"Active": true,
"ExpiredIn": 100,
"Roles": "Standard"
}