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?: string
Key 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?: string
The name of the event tracked
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}
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?: string
The unique identifier of the customer
readonly json Parameters?: boolean
§readonly new Id?: string
The 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: {}