Operator User Get Operator User

Operator User Get Operator User

Gets the specified operator user object (by id or username).

Privileges required:

READ OPERATOR_USER

Request
URI
POST
https://{api_host}/portal/rest/operatorUser/getOperatorUser
COPY
Request Body
{
    "id": 0,
    "username": "string"
}
integer
id
Optional

id

string
username
Optional

username

Responses
200

Request was successfully processed

Returns operator_user_get_operator_user_result of type(s) application/json
This response body class contains all of the following: Inlineoperator_user_get_operator_user_result1
{
    "id": 0,
    "created": "string",
    "operatorId": 0,
    "userType": "string",
    "username": "string",
    "domain": "string",
    "password": "string",
    "firstName": "string",
    "lastName": "string",
    "officePhone": "string",
    "mobilePhone": "string",
    "isNative": 0,
    "isActive": 0,
    "isLocked": 0,
    "disableSecondFactor": 0,
    "email": "string",
    "lastLogin": "string",
    "modified": "string",
    "salt": "string",
    "passwordModified": "string",
    "bastionState": "string",
    "sshUsername": "string",
    "accessLevel": "string",
    "roleId": 0,
    "roleName": "string",
    "isSuper": 0,
    "networkId": 0
}

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 '{}' https://{api_host}/portal/rest/operatorUser/getOperatorUser