Enterprise Proxy Update Enterprise Proxy User

Enterprise Proxy Update Enterprise Proxy User

Updates the specified enterprise proxy admin user (by object id or other identifying attribute). Expects an _update object containing the field(s) to be updated and their corresponding value(s).

Privileges required:

UPDATE PROXY_USER

Request
URI
POST
https://{api_host}/portal/rest/enterpriseProxy/updateEnterpriseProxyUser
COPY
Request Body

Show optional properties

{
    "_update": {}
}
{
    "_update": {
        "domain": "string",
        "password": "string",
        "password2": "string",
        "firstName": "string",
        "lastName": "string",
        "officePhone": "string",
        "mobilePhone": "string",
        "isNative": false,
        "isActive": false,
        "disableSecondFactor": false,
        "email": "string",
        "roleId": 0,
        "sshUsername": "string",
        "accessLevel": "string"
    },
    "id": 0,
    "enterpriseProxyId": 0,
    "username": "string",
    "currentPassword": "string"
}
integer
id
Optional

id

integer
enterpriseProxyId
Optional

enterpriseProxyId

string
username
Optional

username

string
currentPassword
Optional

currentPassword

Responses
200

Request was successfully processed

Returns enterprise_proxy_update_enterprise_proxy_user_result of type(s) application/json
This response body class contains all of the following: Inlineenterprise_proxy_update_enterprise_proxy_user_result0
"enterprise_proxy_update_enterprise_proxy_user_result Object"

400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"_update:"object"}' https://{api_host}/portal/rest/enterpriseProxy/updateEnterpriseProxyUser