Create Users Proxy

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.

nameParam TypeData TypeValuesDescription
ProxyUserIdBodyint-Designates the proxy user
UsersBodyint[]-Designates the principal user

Request Format

Examples

{
  "proxyUserId": 0,
  "users": [
    0
  ]
}