Interface DropcontactNodeParameters

Source
interface DropcontactNodeParameters {
    additionalFields?: {
        company?: string;
        country?: string;
        first_name?: string;
        full_name?: string;
        last_name?: string;
        linkedin?: string;
        num_siren?: string;
        phone?: string;
        siret?: string;
        website?: string;
    };
    email?: string;
    operation?: "enrich"
    | "fetchRequest";
    options?: {
        language?: "en" | "fr";
        siren?: boolean;
        waitTime?: number;
    };
    requestId?: string;
    resource?: "contact";
    simplify?: boolean;
}

Properties§

Source§

readonly additionalFields?: {
    company?: string;
    country?: string;
    first_name?: string;
    full_name?: string;
    last_name?: string;
    linkedin?: string;
    num_siren?: string;
    phone?: string;
    siret?: string;
    website?: string;
}

Default: {}

Source§

readonly email?: string

Source§

readonly operation?: "enrich" | "fetchRequest"

Default: "enrich"

Source§

readonly options?: {
    language?: "en" | "fr";
    siren?: boolean;
    waitTime?: number;
}

Default: {}

Source§

readonly requestId?: string

Source§

readonly resource?: "contact"

Default: "contact"

Source§

readonly simplify?: boolean

When off, waits for the contact data before completing. Waiting time can be adjusted with Extend Wait Time option. When on, returns a request_id that can be used later in the Fetch Request operation.