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§
Source§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 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;
}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Source§readonly operation?:
| "create"
| "getAll"
| "update"
| "add"
| "delete"
| "addSubscriber"
| "getSubscriptions"
readonly operation?:
| "create"
| "getAll"
| "update"
| "add"
| "delete"
| "addSubscriber"
| "getSubscriptions"
Default: "update"
Source§readonly resource?:
| "tag"
| "form"
| "customField"
| "sequence"
| "tagSubscriber"
readonly resource?:
| "tag"
| "form"
| "customField"
| "sequence"
| "tagSubscriber"
Default: "form"
Source§readonly tag Id?: string
readonly tag Id?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTags"}
Default: {}