2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-02-21 23:49:00 -08:00
2021-12-03 00:44:16 -08:00
export const registrantOperations : INodeProperties [ ] = [
2021-02-21 23:49:00 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-02-21 23:49:00 -08:00
default : 'get' ,
options : [
{
name : 'Create' ,
value : 'create' ,
2022-07-10 13:50:51 -07:00
action : 'Create a registrant' ,
2021-02-21 23:49:00 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a registrant' ,
2021-02-21 23:49:00 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get a registrant' ,
2021-02-21 23:49:00 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-02-21 23:49:00 -08:00
value : 'getAll' ,
2022-09-08 08:10:13 -07:00
action : 'Get many registrants' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-21 23:49:00 -08:00
2021-12-03 00:44:16 -08:00
export const registrantFields : INodeProperties [ ] = [
2021-02-21 23:49:00 -08:00
// ----------------------------------
// registrant: create
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Key of the webinar of the registrant to create. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'First Name' ,
name : 'firstName' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'First name of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Last Name' ,
name : 'lastName' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Last name of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-02-21 23:49:00 -08:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Email address of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Full Address' ,
name : 'fullAddress' ,
placeholder : 'Add Address Fields' ,
type : 'fixedCollection' ,
2022-05-06 14:01:25 -07:00
description : 'Full address of the registrant to create' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
displayName : 'Address' ,
name : 'address' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zipCode' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Industry' ,
name : 'industry' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description : "The type of industry the registrant's organization belongs to" ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Job Title' ,
name : 'jobTitle' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'MultiChoice Responses' ,
name : 'multiChoiceResponses' ,
placeholder : 'Add MultiChoice Response' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Set the answers to all questions' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Question Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'questionKey' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-02-21 23:49:00 -08:00
typeOptions : {
loadOptionsMethod : 'getRegistranMultiChoiceQuestions' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'webinarKey' ] ,
2021-02-21 23:49:00 -08:00
} ,
default : '' ,
} ,
{
displayName : 'Answer Key' ,
name : 'AnswerKey' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Answer ID of the question' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Number of Employees' ,
name : 'numberOfEmployees' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description : "The size in employees of the registrant's organization" ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Organization' ,
name : 'organization' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Telephone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Purchasing Role' ,
name : 'purchasingRole' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description : "Registrant's role in purchasing the product" ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Purchasing Time Frame' ,
name : 'purchasingTimeFrame' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Time frame within which the product will be purchased' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Questions and Comments' ,
name : 'questionsAndComments' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Questions or comments made by the registrant during registration' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Resend Confirmation' ,
name : 'resendConfirmation' ,
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Simple Responses' ,
name : 'simpleResponses' ,
placeholder : 'Add Simple Response' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Set the answers to all questions' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Question Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'questionKey' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-02-21 23:49:00 -08:00
typeOptions : {
loadOptionsMethod : 'getRegistranSimpleQuestions' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'webinarKey' ] ,
2021-02-21 23:49:00 -08:00
} ,
default : '' ,
} ,
{
displayName : 'Response Text' ,
name : 'responseText' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Text of the response to the question' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Source' ,
name : 'source' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The source that led to the registration' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
// ----------------------------------
// registrant: getAll
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'The key of the webinar to retrieve registrants from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'getAll' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'getAll' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 10 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-02-21 23:49:00 -08:00
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
// ----------------------------------
// registrant: delete
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Key of the webinar of the registrant to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'delete' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Registrant Key' ,
name : 'registrantKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the registrant to delete' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'delete' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
// ----------------------------------
// registrant: get
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Key of the webinar of the registrant to retrieve. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'get' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Registrant Key' ,
name : 'registrantKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the registrant to retrieve' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'registrant' ] ,
operation : [ 'get' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;