interface EgoiNodeParameters {
additionalFields?: {
birth_date?: string;
cellphone?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
};
by?: "id"
| "email";
contactId?: string;
email?: string;
limit?: number;
list?: string;
operation?: "create" | "get" | "getAll" | "update";
resolveData?: boolean;
resource?: "contact";
returnAll?: boolean;
simple?: boolean;
updateFields?: {
birth_date?: string;
cellphone?: string;
email?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
};
}
Properties§
Source§readonly additional Fields?: {
birth_date?: string;
cellphone?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
}
readonly additional Fields?: {
birth_date?: string;
cellphone?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Source§readonly list?: string
readonly list?: string
ID of list to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getLists"}
Source§readonly resolve Data?: boolean
readonly resolve Data?: boolean
By default the response just includes the contact ID. If this option gets activated, it will resolve the data automatically. Default: true
Source§readonly simple?: boolean
readonly simple?: boolean
Whether to return a simplified version of the response instead of the raw data Default: true
Source§readonly update Fields?: {
birth_date?: string;
cellphone?: string;
email?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
}
readonly update Fields?: {
birth_date?: string;
cellphone?: string;
email?: string;
extraFieldsUi?: {
extraFieldValues: {
field_id?: string;
value?: string;
}[];
};
first_name?: string;
last_name?: string;
status?: | "active"
| "unconfirmed"
| "inactive"
| "removed";
tagIds?: unknown[];
}
Default: {}
Default: {}