interface ConvertKitNodeParameters {
additionalFields?:
| {
fieldsUi?: {
fieldsValues: { key?: string; value?: string }[];
};
firstName?: string;
}
| { subscriberState?: "active"
| "cancelled" }
| {
fieldsUi?: {
fieldsValues: { key?: string; value?: string }[];
};
firstName?: string;
tags?: unknown[];
}
| {
fields?: {
field: { key?: string; value?: string }[];
};
firstName?: string;
};
email?: string;
id?: string;
label?: string;
limit?: number;
name?: string;
operation?: | "create"
| "getAll"
| "update"
| "add"
| "delete"
| "addSubscriber"
| "getSubscriptions";
resource?: | "tag"
| "form"
| "customField"
| "sequence"
| "tagSubscriber";
returnAll?: boolean;
tagId?: string;
}Properties§
§§§§§§§§§
readonly additional Fields?:
| {
fieldsUi?: {
fieldsValues: { key?: string; value?: string }[];
};
firstName?: string;
}
| { subscriberState?: "active"
| "cancelled" }
| {
fieldsUi?: {
fieldsValues: { key?: string; value?: string }[];
};
firstName?: string;
tags?: unknown[];
}
| {
fields?: {
field: { key?: string; value?: string }[];
};
firstName?: string;
}§
readonly email?: stringThe subscriber's email address
readonly id?: stringThe ID of your custom field
readonly label?: stringThe label of the custom field
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly name?: stringTag name, multiple can be added separated by comma
readonly operation?:
| "create"
| "getAll"
| "update"
| "add"
| "delete"
| "addSubscriber"
| "getSubscriptions"Default: "update"
readonly resource?:
| "tag"
| "form"
| "customField"
| "sequence"
| "tagSubscriber"Default: "form"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly tag Id?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTags"}
Default: {}