Alokai

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

NameRequiredTypeDescription
emailRequiredstringEmail of the user {string} OrgUserRegistrationData
firstNameRequiredstringFirst name of the user {string} OrgUserRegistrationData
lastNameRequiredstringLast name of the user {string} OrgUserRegistrationData
messageOptionalstringContains info to approver, usually composed by UI with a template {string} OrgUserRegistrationData
titleCodeOptionalstringCode of the user's title {string} OrgUserRegistrationData

On this page