Interface VeroNodeParameters

Source
interface VeroNodeParameters {
    additionalFields?: { email?: string };
    dataAttributesJson?: string;
    dataAttributesUi?: {
        dataAttributesValues: {
            key?: string;
            value?: string;
        }[];
    };
    email?: string;
    eventName?: string;
    extraAttributesJson?: string;
    extraAttributesUi?: {
        extraAttributesValues: {
            key?: string;
            value?: string;
        }[];
    };
    id?: string;
    jsonParameters?: boolean;
    newId?: string;
    operation?: | "create"
    | "delete"
    | "track"
    | "unsubscribe"
    | "alias"
    | "addTags"
    | "resubscribe"
    | "removeTags";
    resource?: "event"
    | "user";
    tags?: string;
}

Properties§

Source§

readonly additionalFields?: { email?: string }

Default: {}

Source§

readonly dataAttributesJson?: string

Key value pairs that represent the custom user properties you want to update Type options: {"alwaysOpenEditWindow":true}

Source§

readonly dataAttributesUi?: { dataAttributesValues: { key?: string; value?: string }[] }

Key value pairs that represent the custom user properties you want to update Default: {} Type options: {"multipleValues":true}

Source§

readonly email?: string

Source§

readonly eventName?: string

The name of the event tracked

Source§

readonly extraAttributesJson?: string

Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below. Type options: {"alwaysOpenEditWindow":true}

Source§

readonly extraAttributesUi?: {
    extraAttributesValues: {
        key?: string;
        value?: string;
    }[];
}

Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below. Default: {} Type options: {"multipleValues":true}

Source§

readonly id?: string

The unique identifier of the customer

Source§

readonly jsonParameters?: boolean

Source§

readonly newId?: string

The new unique identifier of the user

Source§

readonly operation?:
    | "create"
    | "delete"
    | "track"
    | "unsubscribe"
    | "alias"
    | "addTags"
    | "resubscribe"
    | "removeTags"

Default: "create"

Source§

readonly resource?: "event" | "user"

Default: "user"

Source§

readonly tags?: string

Tags to add separated by ","