You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
OrgUserRegistrationData
Data object that contains information necessary to apply user registration OrgUserRegistrationData
export interface OrgUserRegistrationData {
'email': string;
'firstName': string;
'lastName': string;
'message'?: string;
'titleCode'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
email | Required | string | Email of the user {string} OrgUserRegistrationData |
firstName | Required | string | First name of the user {string} OrgUserRegistrationData |
lastName | Required | string | Last name of the user {string} OrgUserRegistrationData |
message | Optional | string | Contains info to approver, usually composed by UI with a template {string} OrgUserRegistrationData |
titleCode | Optional | string | Code of the user's title {string} OrgUserRegistrationData |