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§
§§§§§§§§§
readonly additional Fields?: { ... }§
readonly data Attributes Json?: stringKey value pairs that represent the custom user properties you want to update Type options: {"alwaysOpenEditWindow":true}
readonly data Attributes Ui?: { ... }Key value pairs that represent the custom user properties you want to update Default: {} Type options: {"multipleValues":true}
readonly email?: string§readonly event Name?: stringThe name of the event tracked
readonly extra Attributes Json?: stringKey value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below. Type options: {"alwaysOpenEditWindow":true}
readonly extra Attributes Ui?: { ... }Key value pairs that represent reserved, Vero-specific operators. Refer to the note on “deduplication” below. Default: {} Type options: {"multipleValues":true}
readonly id?: stringThe unique identifier of the customer
readonly json Parameters?: boolean§readonly new Id?: stringThe new unique identifier of the user
readonly operation?:
| "create"
| "delete"
| "track"
| "unsubscribe"
| "alias"
| "addTags"
| "resubscribe"
| "removeTags"Default: "create"
readonly resource?: "event" | "user"Default: "user"
Tags to add separated by ","
Default: {}