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 data Attributes Json?: string
readonly data Attributes Json?: string
Key value pairs that represent the custom user properties you want to update Type options: {"alwaysOpenEditWindow":true}
Source§readonly data Attributes Ui?: { dataAttributesValues: { key?: string; value?: string }[] }
readonly data Attributes Ui?: { 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 extra Attributes Json?: string
readonly extra Attributes Json?: string
Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below. Type options: {"alwaysOpenEditWindow":true}
Source§readonly extra Attributes Ui?: {
extraAttributesValues: {
key?: string;
value?: string;
}[];
}
readonly extra Attributes Ui?: {
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 operation?:
| "create"
| "delete"
| "track"
| "unsubscribe"
| "alias"
| "addTags"
| "resubscribe"
| "removeTags"
readonly operation?:
| "create"
| "delete"
| "track"
| "unsubscribe"
| "alias"
| "addTags"
| "resubscribe"
| "removeTags"
Default: "create"
Tags to add separated by ","
Default: {}