Generated after adding a Custom Field to a Customer using the Set CustomField update action. If a Custom Field already exists with the same name, a CustomerCustomFieldChanged Message is generated instead.

interface CustomerCustomFieldAddedMessagePayload {
    name: string;
    type: "CustomerCustomFieldAdded";
    value: any;
}

Properties

Properties

name: string

Name of the Custom Field that was added.

type: "CustomerCustomFieldAdded"
value: any

The added CustomFieldValue based on the FieldType.