Get User Proxy Assignments
GET {{host}}/api/rest/v1/management/user/proxy
This endpoint allows you to see the user proxy assignments. Proxy users have the capability to switch their profile and work on behalf of their (principal) user.
Params
All parameters are optional.
name | Parameter Type | Data Type | Values | Description |
---|---|---|---|---|
proxyQuery | Query | string | string | Search by proxy user, can search by email or full name |
userQuery | Query | string | string | Search by user, can search by email or full name |
searchByName | Query | boolean | false | Toggle search |
pageNumber | Query | integer | 1 | Starting page number |
pageSize | Query | integer | 100 | Max items to return, do not exceed 1000 |
Examples
No Params
GET {{host}}/api/rest/v1/management/user/proxy
Authorization: Bearer {{token}}
Search by Proxy User to see who they are allowed to proxy as.
GET {{host}}/api/rest/v1/management/user/proxy?proxyQuery=user@domain.com &searchByName=false
Authorization: Bearer {{token}}
Search by Principal User to see who can proxy on their behalf
GET {{host}}/api/rest/v1/management/user/proxy?userQuery=user@domain.com &searchByName=false
Authorization: Bearer {{token}}