Create Proxy Assignments
POST {{host}}/api/rest/v1/management/user/proxy
This endpoint allows you to create user proxy assignments. Proxy users have the capability to switch their profile and work on behalf of their (principal) user.
Params
All params are required. Calls to this endpoint will replace the existing values for the proxy user.
name | Param Type | Data Type | Values | Description |
---|---|---|---|---|
ProxyUserId | Body | int | - | Designates the proxy user |
Users | Body | int[] | - | Designates the principal user |
Request Format
Examples
{
"proxyUserId": 0,
"users": [
0
]
}