Interface CreateNewUserResponse

interface CreateNewUserResponse {
    email?: string;
    htmlErrors: string[];
    message?: string;
    success: boolean;
    userId?: number;
    users: NewUser[];
}

Properties

email?: string

The new user's email address. This property will not be available when creating multiple users in same request.

htmlErrors: string[]

Array of htmlErrors returned for failure cases when multiple user creation is being requested.

message?: string

HTML message describing how the system handled creation of the user. This property will not be available when creating multiple users in same request.

success: boolean

Indicates if the user(s) were created successfully.

userId?: number

The userId of the new user. This property will not be available when creating multiple users in same request.

users: NewUser[]

Array of information objects for each user that was created.

Generated using TypeDoc