2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2020-09-18 00:42:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { activeCampaignDefaultGetAllProperties } from './GenericFunctions';
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const contactOperations: INodeProperties[] = [
|
2019-11-07 01:50:02 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2019-11-07 01:50:02 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete a contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get data of a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2019-11-07 01:50:02 -08:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get data of many contacts',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many contacts',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const contactFields: INodeProperties[] = [
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// contact:create
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2019-11-07 01:50:02 -08:00
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The email of the contact to create',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Update if Exists',
|
2019-11-07 01:50:02 -08:00
|
|
|
name: 'updateIfExists',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Whether to update user if it exists already. If not set and user exists it will error instead.',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
2020-09-18 00:42:01 -07:00
|
|
|
displayName: 'Custom Fields',
|
|
|
|
name: 'fieldValues',
|
|
|
|
placeholder: 'Add Custom Fields',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
2019-11-07 01:50:02 -08:00
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'property',
|
2020-09-18 00:42:01 -07:00
|
|
|
displayName: 'Custom Field',
|
2019-11-07 01:50:02 -08:00
|
|
|
values: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Field Name or ID',
|
2020-09-18 00:42:01 -07:00
|
|
|
name: 'field',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getContactCustomFields',
|
|
|
|
},
|
2019-11-07 01:50:02 -08:00
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
2020-09-18 00:42:01 -07:00
|
|
|
displayName: 'Field Value',
|
2019-11-07 01:50:02 -08:00
|
|
|
name: 'value',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Value of the field to set',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-09-18 00:42:01 -07:00
|
|
|
{
|
|
|
|
displayName: 'First Name',
|
|
|
|
name: 'firstName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The first name of the contact to create',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Last Name',
|
|
|
|
name: 'lastName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The last name of the contact to create',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Phone',
|
|
|
|
name: 'phone',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Phone number of the contact',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
2019-11-07 01:50:02 -08:00
|
|
|
],
|
|
|
|
},
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// contact:update
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
name: 'contactId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the contact to update',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The fields to update',
|
2019-11-07 01:50:02 -08:00
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
2020-09-18 00:42:01 -07:00
|
|
|
{
|
|
|
|
displayName: 'Custom Fields',
|
|
|
|
name: 'fieldValues',
|
|
|
|
placeholder: 'Add Custom Fields',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
2020-09-18 00:42:01 -07:00
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'property',
|
|
|
|
displayName: 'Custom Field',
|
|
|
|
values: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Field Name or ID',
|
2020-09-18 00:42:01 -07:00
|
|
|
name: 'field',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getContactCustomFields',
|
|
|
|
},
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Field Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Value of the field to set',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-11-07 01:50:02 -08:00
|
|
|
{
|
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2019-11-07 01:50:02 -08:00
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Email of the contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'First Name',
|
|
|
|
name: 'firstName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'First name of the contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Last Name',
|
|
|
|
name: 'lastName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Last name of the contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Phone',
|
|
|
|
name: 'phone',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Phone number of the contact',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// contact:delete
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
name: 'contactId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['delete'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the contact to delete',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// contact:get
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
name: 'contactId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the contact to get',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2019-11-03 03:47:36 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// contact:getAll
|
|
|
|
// ----------------------------------
|
2020-09-18 00:42:01 -07:00
|
|
|
...activeCampaignDefaultGetAllProperties('contact', 'getAll'),
|
2019-11-07 01:50:02 -08:00
|
|
|
{
|
2020-09-18 00:42:01 -07:00
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
2019-11-07 01:50:02 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['contact'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
2020-09-18 00:42:01 -07:00
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Datetime',
|
|
|
|
name: 'datetime',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Contacts created on the specified date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2020-09-18 00:42:01 -07:00
|
|
|
default: '',
|
|
|
|
description: 'Email address of the contact you want to get',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Email Like',
|
|
|
|
name: 'email_like',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts that contain the given value in the email address',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Exclude',
|
|
|
|
name: 'exclude',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Exclude from the response the contact with the given ID',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Form ID',
|
|
|
|
name: 'formid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts associated with the given form',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'listid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts associated with the given list',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Search',
|
|
|
|
name: 'search',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Filter contacts that match the given value in the contact names, organization, phone or email',
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Segment ID',
|
|
|
|
name: 'segmentid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Return only contacts that match a list segment',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Series ID',
|
|
|
|
name: 'seriesid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts associated with the given automation',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
2022-06-03 10:23:49 -07:00
|
|
|
{
|
|
|
|
name: 'Active',
|
|
|
|
value: 1,
|
|
|
|
},
|
2020-09-18 00:42:01 -07:00
|
|
|
{
|
|
|
|
name: 'Any',
|
|
|
|
value: -1,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Bounced',
|
|
|
|
value: 3,
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Unconfirmed',
|
|
|
|
value: 0,
|
2020-09-18 00:42:01 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Unsubscribed',
|
|
|
|
value: 2,
|
|
|
|
},
|
2019-11-07 01:50:02 -08:00
|
|
|
],
|
2020-09-18 00:42:01 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Tag ID',
|
|
|
|
name: 'tagid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts associated with the given tag',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Created Before',
|
|
|
|
name: 'filters[created_before]',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts that were created prior to this date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Created After',
|
|
|
|
name: 'filters[created_after]',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts that were created after this date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Updated Before',
|
|
|
|
name: 'filters[updated_before]',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts that were updated before this date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Updated After',
|
|
|
|
name: 'filters[updated_after]',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter contacts that were updated after this date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Wait ID',
|
|
|
|
name: 'waitid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter by contacts in the wait queue of an automation block',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Order By',
|
|
|
|
name: 'orderBy',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Creation Date',
|
|
|
|
value: 'orders[cdate]',
|
|
|
|
description: 'Order contacts by creation date',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email',
|
|
|
|
value: 'orders[email]',
|
|
|
|
description: 'Order contacts by email',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'First Name',
|
|
|
|
value: 'orders[first_name]',
|
|
|
|
description: 'Order contacts by first name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Last Name',
|
|
|
|
value: 'orders[last_name]',
|
|
|
|
description: 'Order contacts by last name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Name',
|
|
|
|
value: 'orders[name]',
|
|
|
|
description: 'Order contacts by full name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Score',
|
|
|
|
value: 'orders[score]',
|
|
|
|
description: 'Order contacts by score',
|
|
|
|
},
|
2019-11-07 01:50:02 -08:00
|
|
|
],
|
2020-09-18 00:42:01 -07:00
|
|
|
default: '',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2020-09-18 00:42:01 -07:00
|
|
|
],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|