Creates a new platform user account and sends an invitation email.
Documentation Index
Fetch the complete documentation index at: https://docs.numium.com/llms.txt
Use this file to discover all available pages before exploring further.
Result of PlatformUserModel containing:
The platform user creation request containing email and optional name information.
User created and invitation sent successfully.
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": "admin@example.com",
"firstName": "Jane",
"lastName": "Doe",
"id": 5,
"isEnabled": true,
"userId": 1
}