Skip to content

Get Response

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

Credentials

getResponseApi (alias: @get) / getResponseOAuth2Api (alias: @get)

CREDENTIAL @get = getResponseApi "My Get Response"

Operations

Resource: contact

create

Parameter Type Default Details
email string ""
campaignId options ""
additionalFields collection {} keys: customFieldsUi, dayOfCycle, ipAddress, name, note, scoring, ...

delete

Parameter Type Default Details
contactId string "" required
options collection {} keys: ipAddress, messageId

get

Parameter Type Default Details
contactId string "" required
options collection {} keys: fields

getAll

Parameter Type Default Details
returnAll boolean false
limit number 20
options collection {} keys: campaignId, changeOnFrom, changeOnTo, createdOnFrom, createdOnTo, exactMatch, ...

update

Parameter Type Default Details
contactId string "" required
updateFields collection {} keys: campaignId, customFieldsUi, dayOfCycle, email, ipAddress, name, ...

Common Parameters

Parameter Type Default Details
authentication options "apiKey" apiKey, oAuth2

Parameter Details

additionalFields children:

Parameter Type Default Details
customFieldsUi fixedCollection {} groups: customFieldValues
dayOfCycle string ""
ipAddress string ""
name string ""
note string ""
scoring number ""
tags multiOptions []

options children:

Parameter Type Default Details
ipAddress string ""
messageId string ""

updateFields children:

Parameter Type Default Details
campaignId options ""
customFieldsUi fixedCollection {} groups: customFieldValues
dayOfCycle string ""
email string ""
ipAddress string ""
name string ""
note string ""
scoring number ""
tags multiOptions []

Example

NODE "getResponse" @get AS "Get Response" {
  resource: "contact",
  operation: "get",
  contactId: {{ $json.contactId }}
}