Skip to content

Autopilot

Node: autopilot · Full type: n8n-nodes-base.autopilot · Version: 1

Credentials

autopilotApi (alias: @autopilot)

CREDENTIAL @autopilot = autopilotApi "My Autopilot"

Operations

Resource: contact

upsert

Parameter Type Default Details
email string "" required
additionalFields collection {} keys: Company, customFieldsUi, Fax, FirstName, Industry, LastName, ...

delete

Parameter Type Default Details
contactId string "" required

get

Parameter Type Default Details
contactId string "" required

getAll

Parameter Type Default Details
returnAll boolean false
limit number 100

Resource: contactJourney

add

Parameter Type Default Details
triggerId options "" required
contactId string "" required

Resource: contactList

add

Parameter Type Default Details
listId options "" required
contactId string "" required

exist

Parameter Type Default Details
listId options "" required
contactId string "" required

getAll

Parameter Type Default Details
listId options "" required
returnAll boolean false
limit number 100

remove

Parameter Type Default Details
listId options "" required
contactId string "" required

Resource: list

create

Parameter Type Default Details
name string "" required

getAll

Parameter Type Default Details
returnAll boolean false
limit number 100

Parameter Details

additionalFields children:

Parameter Type Default Details
Company string ""
customFieldsUi fixedCollection {} groups: customFieldsValues
Fax string ""
FirstName string ""
Industry string ""
LastName string ""
LeadSource string ""
LinkedIn string ""
autopilotList options ""
MailingCountry string ""
MailingPostalCode string ""
MailingState string ""
MailingStreet string ""
MailingCity string ""
MobilePhone string ""
newEmail string ""
notify boolean true
NumberOfEmployees number 0
owner_name string ""
Phone string ""
Salutation string ""
autopilotSessionId string ""
Status string ""
Title string ""
unsubscribed boolean false
Website string ""

Example

NODE "autopilot" @autopilot AS "Autopilot" {
  resource: "contact",
  operation: "get",
  email: {{ $json.email }},
  contactId: {{ $json.contactId }},
  name: {{ $json.name }}
}