Platform user update request body.
Email address for the new platform user account.
First name of the platform user.
"Jane"
Last name of the platform user.
"Doe"
Unique identifier of the platform user to update.
5
True if the platform user account is active and can access the system.
true
Internal domain user identifier for audit and tracking purposes.
1
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"email": "[email protected]",
"firstName": "Jane",
"lastName": "Doe",
"id": 5,
"isEnabled": true,
"userId": 1
}