interface DriftNodeParameters {
additionalFields?: { name?: string; phone?: string };
authentication?: "oAuth2" | "accessToken";
contactId?: string;
email?: string;
operation?:
| "create"
| "get"
| "update"
| "delete"
| "getCustomAttributes";
resource?: "contact";
updateFields?: {
email?: string;
name?: string;
phone?: string;
};
}Properties§
§§§§§§
readonly additional Fields?: { ... }§
readonly authentication?: "oAuth2" | "accessToken"Default: "accessToken"
readonly contact Id?: stringUnique identifier for the contact
readonly email?: stringThe email of the contact
readonly operation?:
| "create"
| "get"
| "update"
| "delete"
| "getCustomAttributes"Default: "create"
readonly resource?: "contact"Default: "contact"
readonly update Fields?: { ... }Default: {}
Default: {}