You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
OrgCustomerCreation
Data object that contains information necessary for user creation OrgCustomerCreation
export interface OrgCustomerCreation {
'email'?: string;
'firstName'?: string;
'lastName'?: string;
'orgUnit'?: B2BUnit;
'roles'?: Array<string>;
'titleCode'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
email | Optional | string | Email of the user {string} OrgCustomerCreation |
firstName | Optional | string | First name of the user {string} OrgCustomerCreation |
lastName | Optional | string | Last name of the user {string} OrgCustomerCreation |
orgUnit | Optional | B2BUnit | {B2BUnit} OrgCustomerCreation |
roles | Optional | Array<string> | List of organizational approvers {Array<string>} OrgCustomerCreation |
titleCode | Optional | string | Code of the user's title {string} OrgCustomerCreation |