interface CustomerIoNodeParameters {
additionalFields?:
| {
steps?: number;
type?: | "email"
| "empty"
| "webhook"
| "push"
| "slack"
| "twilio"
| "urbanAirship";
}
| {
createdAt?: string;
customProperties?: {
customProperty: { key: string; value: string }[];
};
email?: string;
}
| {
customAttributes?: {
customAttribute: { key: string; value: string }[];
};
type?: string;
}
| {
customAttributes?: {
customAttribute: { key: string; value: string }[];
};
};
additionalFieldsJson?: string;
campaignId?: number;
customerId?: string;
customerIds?: string;
eventName?: string;
id?: string;
jsonParameters?: boolean;
operation?: | "get"
| "getAll"
| "add"
| "remove"
| "delete"
| "upsert"
| "getMetrics"
| "track"
| "trackAnonymous";
period?: "hours"
| "days"
| "weeks"
| "months";
resource?:
| "event"
| "customer"
| "campaign"
| "segment";
segmentId?: number;
}Properties§
§§§§§§§§§§
readonly additional Fields?:
| {
steps?: number;
type?: | "email"
| "empty"
| "webhook"
| "push"
| "slack"
| "twilio"
| "urbanAirship";
}
| {
createdAt?: string;
customProperties?: {
customProperty: { key: string; value: string }[];
};
email?: string;
}
| {
customAttributes?: {
customAttribute: { key: string; value: string }[];
};
type?: string;
}
| {
customAttributes?: {
customAttribute: { key: string; value: string }[];
};
}§
readonly additional Fields Json?: stringObject of values to set as described here Type options: {"alwaysOpenEditWindow":true}
readonly campaign Id?: numberThe unique identifier for the campaign
readonly customer Id?: stringThe unique identifier for the customer
readonly customer Ids?: stringA list of customer IDs to add to the segment
readonly event Name?: stringName of the event to track
readonly id?: stringThe unique identifier for the customer
readonly json Parameters?: boolean§readonly operation?:
| "get"
| "getAll"
| "add"
| "remove"
| "delete"
| "upsert"
| "getMetrics"
| "track"
| "trackAnonymous"Default: "get"
readonly period?: "hours" | "days" | "weeks" | "months"Specify metric period Default: "days"
readonly resource?: "event" | "customer" | "campaign" | "segment"Default: "customer"
readonly segment Id?: numberThe unique identifier of the segment
Default: {}