post https://api-ext.zluri.com/v2/add-user
This endpoint allows you to add a new user to your organization.
Fields Table:
| Field | Required | Type | Description / Allowed Values |
|---|---|---|---|
user_name | Yes | string | User's full name |
user_email | Yes | string | User's primary email address (must be unique) |
user_designation | No | string | User's job title/designation |
user_status | No | enum | User status (active, inactive, suspended) |
user_department_id | No | string | Department ID where the user belongs |
account_type | No | enum | Type of user account (employee, external, service, group) |
reporting_manager_email | No | string | Email address of the user's reporting manager |
user_personal_email | No | string | User's personal email address |
user_custom_fields | No | array | Array of custom field values (see example below) |
onboardingData | No | object | Onboarding assignment details (see example below) |
Custom Fields Format Example:
[
{
"field_id": "679b613f315ee0a11cb67bd0",
"field_value": "New York"
}
]
Onboarding Data Format Example:
{
"assigned_to": "679b5a0a315ee0a11cb4e79b",
"date": "2025-08-26",
"time": "12:00 AM",
"timezone_id": "64184b3bec8af4b1d7caa05f"
}
Notes:
- Email addresses must be unique within the organization.
- Department ID must exist in the organization.
- Reporting manager email must be a valid user email in the organization.
- Custom field IDs must be valid and accessible to your organization.
- All validations will be applied during user creation.
