interface AffinityNodeParameters {
additionalFields?:
| { creator_id?: string }
| { persons?: unknown[] }
| { organizations?: unknown[] };
domain?: string;
emails?: string;
entityId?: string;
firstName?: string;
lastName?: string;
limit?: number;
listEntryId?: string;
listId?: string;
name?: string;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete";
options?: | { withInteractionDates?: boolean }
| { term?: string; withInteractionDates?: boolean };
organizationId?: string;
personId?: string;
resource?:
| "person"
| "list"
| "listEntry"
| "organization";
returnAll?: boolean;
updateFields?: | {
domain?: string;
name?: string;
persons?: unknown[];
}
| {
firstName?: string;
lastName?: string;
organizations?: unknown[];
};
}Properties§
§§§§§§§§§§§§§§§§
readonly additional Fields?:
| { creator_id?: string }
| { persons?: unknown[] }
| { organizations?: unknown[] }§
readonly domain?: stringThe domain name of the organization
readonly emails?: stringThe email addresses of the person Default: [] Type options: {"multipleValues":true,"multipleValueButtonText":"Add To Email"}
readonly entity Id?: stringThe unique ID of the entity (person, organization, or opportunity) to add to this list
readonly first Name?: stringThe first name of the person
readonly last Name?: stringThe last name of the person
readonly limit?: numberMax number of results to return Default: 5 Type options: {"minValue":1,"maxValue":10}
readonly list Entry Id?: stringThe unique ID of the list entry object to be retrieved
readonly list Id?: stringThe unique ID of the list object to be retrieved
readonly name?: stringThe name of the organization
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "get"
readonly options?:
| { withInteractionDates?: boolean }
| { term?: string; withInteractionDates?: boolean }Default: {}
readonly organization Id?: stringUnique identifier for the organization
readonly person Id?: stringUnique identifier for the person
readonly resource?: "person" | "list" | "listEntry" | "organization"Default: "organization"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly update Fields?:
| {
domain?: string;
name?: string;
persons?: unknown[];
}
| {
firstName?: string;
lastName?: string;
organizations?: unknown[];
}Default: {}
Default: {}