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