Interface LoneScaleNodeParameters

Source
interface LoneScaleNodeParameters {
    company_name?: string;
    companyAdditionalFields?: {
        contact_id?: string;
        domain?: string;
        linkedin_url?: string;
        location?: string;
    };
    first_name?: string;
    last_name?: string;
    list?: string;
    name?: string;
    operation?: "create"
    | "add";
    peopleAdditionalFields?: {
        company_name?: string;
        contact_id?: string;
        current_position?: string;
        domain?: string;
        email?: string;
        full_name?: string;
        linkedin_url?: string;
        location?: string;
    };
    resource?: "list"
    | "item";
    type?: "COMPANY" | "PEOPLE";
}

Properties§

Source§

readonly company_name?: string

Contact company name

Source§

readonly companyAdditionalFields?: {
    contact_id?: string;
    domain?: string;
    linkedin_url?: string;
    location?: string;
}

Default: {}

Source§

readonly first_name?: string

Contact first name

Source§

readonly last_name?: string

Contact last name

Source§

readonly list?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getLists","loadOptionsDependsOn":["type"]}

Source§

readonly name?: string

Name of your list

Source§

readonly operation?: "create" | "add"

Default: "create"

Source§

readonly peopleAdditionalFields?: {
    company_name?: string;
    contact_id?: string;
    current_position?: string;
    domain?: string;
    email?: string;
    full_name?: string;
    linkedin_url?: string;
    location?: string;
}

Default: {}

Source§

readonly resource?: "list" | "item"

Create a new list Default: "list"

Source§

readonly type?: "COMPANY" | "PEOPLE"

Type of your list Default: "PEOPLE"