2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2020-04-07 21:35:50 -07:00
2021-12-03 00:44:16 -08:00
export const ticketOperations : INodeProperties [ ] = [
2020-04-07 21:35:50 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-04-07 21:35:50 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a ticket' ,
2022-07-10 13:50:51 -07:00
action : 'Create a ticket' ,
2020-04-07 21:35:50 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2020-07-24 03:56:41 -07:00
description : 'Delete a ticket' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a ticket' ,
2020-04-07 21:35:50 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a ticket' ,
2022-07-10 13:50:51 -07:00
action : 'Get a ticket' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-04-07 21:35:50 -07:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many tickets' ,
2022-09-08 08:10:13 -07:00
action : 'Get many tickets' ,
2020-04-07 21:35:50 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a ticket' ,
2022-07-10 13:50:51 -07:00
action : 'Update a ticket' ,
2020-04-07 21:35:50 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-04-07 21:35:50 -07:00
2021-12-03 00:44:16 -08:00
export const ticketFields : INodeProperties [ ] = [
2021-01-31 23:31:40 -08:00
/* -------------------------------------------------------------------------- */
/* ticket:create */
/* -------------------------------------------------------------------------- */
2020-04-07 21:35:50 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Pipeline Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'pipelineId' ,
type : 'options' ,
required : true ,
typeOptions : {
2020-10-22 06:46:03 -07:00
loadOptionsMethod : 'getTicketPipelines' ,
2020-04-07 21:35:50 -07:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'create' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the pipeline the ticket is in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Stage Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'stageId' ,
type : 'options' ,
required : true ,
typeOptions : {
loadOptionsMethod : 'getTicketStages' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'pipelineId' ] ,
2020-04-07 21:35:50 -07:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'create' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'The stage ID of the pipeline the ticket is in; depends on Pipeline ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Ticket Name' ,
name : 'ticketName' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'create' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
default : '' ,
} ,
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket Properties' ,
2020-04-07 21:35:50 -07:00
name : 'additionalFields' ,
type : 'collection' ,
2023-05-08 06:15:13 -07:00
placeholder : 'Add Property' ,
2020-04-07 21:35:50 -07:00
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'create' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Company Names or IDs' ,
2020-04-07 21:35:50 -07:00
name : 'associatedCompanyIds' ,
type : 'multiOptions' ,
typeOptions : {
2021-01-31 23:31:40 -08:00
loadOptionsMethod : 'getCompanies' ,
2020-04-07 21:35:50 -07:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Company properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Contact Names or IDs' ,
2020-04-07 21:35:50 -07:00
name : 'associatedContactIds' ,
type : 'multiOptions' ,
typeOptions : {
2021-01-31 23:31:40 -08:00
loadOptionsMethod : 'getContacts' ,
2020-04-07 21:35:50 -07:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Contact properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Category Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'category' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketCategories' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Main reason customer reached out for help. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Close Date' ,
name : 'closeDate' ,
type : 'dateTime' ,
default : '' ,
2023-05-08 06:15:13 -07:00
description :
'The date the ticket was closed. When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Create Date' ,
name : 'createDate' ,
type : 'dateTime' ,
default : '' ,
2023-05-08 06:15:13 -07:00
description :
'The date the ticket was created. When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
2023-05-08 06:15:13 -07:00
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
2020-04-07 21:35:50 -07:00
default : '' ,
description : 'Description of the ticket' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Priority Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'priority' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketPriorities' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The level of attention needed on the ticket. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Resolution Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'resolution' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketResolutions' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The action taken to resolve the ticket. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Source Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'source' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketSources' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Channel where ticket was originally submitted. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Ticket Owner Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'ticketOwnerId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getOwners' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The user from your team that the ticket is assigned to. You can assign additional users to a ticket record by creating a custom HubSpot user property. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
] ,
} ,
2021-01-31 23:31:40 -08:00
/* -------------------------------------------------------------------------- */
/* ticket:update */
/* -------------------------------------------------------------------------- */
2020-04-07 21:35:50 -07:00
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket to Update' ,
2020-04-07 21:35:50 -07:00
name : 'ticketId' ,
2023-05-08 06:15:13 -07:00
type : 'resourceLocator' ,
default : { mode : 'list' , value : '' } ,
2020-04-07 21:35:50 -07:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'update' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
2023-05-08 06:15:13 -07:00
modes : [
{
displayName : 'From List' ,
name : 'list' ,
type : 'list' ,
placeholder : 'Select from the list' ,
typeOptions : {
searchListMethod : 'searchTickets' ,
} ,
} ,
{
displayName : 'By Id' ,
name : 'id' ,
type : 'string' ,
placeholder : '58539222' ,
validation : [
{
type : 'regex' ,
properties : {
regex : '[0-9]+' ,
errorMessage : 'Not a valid HubSpot Ticket ID' ,
} ,
} ,
] ,
} ,
] ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'update' ] ,
2020-04-07 21:35:50 -07:00
} ,
} ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Company Names or IDs' ,
2020-04-07 21:35:50 -07:00
name : 'associatedCompanyIds' ,
type : 'multiOptions' ,
typeOptions : {
2021-01-31 23:31:40 -08:00
loadOptionsMethod : 'getCompanies' ,
2020-04-07 21:35:50 -07:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Company properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Contact Names or IDs' ,
2020-04-07 21:35:50 -07:00
name : 'associatedContactIds' ,
type : 'multiOptions' ,
typeOptions : {
2021-01-31 23:31:40 -08:00
loadOptionsMethod : 'getContacts' ,
2020-04-07 21:35:50 -07:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Contact properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Category Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'category' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketCategories' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Main reason customer reached out for help. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Close Date' ,
name : 'closeDate' ,
type : 'dateTime' ,
default : '' ,
2023-05-08 06:15:13 -07:00
description :
'The date the ticket was closed. When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Create Date' ,
name : 'createDate' ,
type : 'dateTime' ,
default : '' ,
2023-05-08 06:15:13 -07:00
description :
'The date the ticket was created. When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format.' ,
2020-04-07 21:35:50 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
2023-05-08 06:15:13 -07:00
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
2020-04-07 21:35:50 -07:00
default : '' ,
description : 'Description of the ticket' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Pipeline Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'pipelineId' ,
type : 'options' ,
typeOptions : {
2020-10-22 06:46:03 -07:00
loadOptionsMethod : 'getTicketPipelines' ,
2020-04-07 21:35:50 -07:00
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the pipeline the ticket is in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Priority Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'priority' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketPriorities' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The level of attention needed on the ticket. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Resolution Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'resolution' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketResolutions' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The action taken to resolve the ticket. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Source Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'source' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketSources' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Channel where ticket was originally submitted. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
2022-06-19 22:29:43 -07:00
{
2022-06-19 19:46:55 -07:00
displayName : 'Stage Name or ID' ,
name : 'stageId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getTicketStages' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'updateFields.pipelineId' ] ,
2022-06-19 19:46:55 -07:00
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The stage ID of the pipeline the ticket is in; depends on Pipeline ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-06-19 19:46:55 -07:00
} ,
2020-04-07 21:35:50 -07:00
{
displayName : 'Ticket Name' ,
name : 'ticketName' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Ticket Owner Name or ID' ,
2020-04-07 21:35:50 -07:00
name : 'ticketOwnerId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getOwners' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The user from your team that the ticket is assigned to. You can assign additional users to a ticket record by creating a custom HubSpot user property. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-04-07 21:35:50 -07:00
} ,
] ,
} ,
2021-01-31 23:31:40 -08:00
/* -------------------------------------------------------------------------- */
/* ticket:get */
/* -------------------------------------------------------------------------- */
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket to Get' ,
2021-01-31 23:31:40 -08:00
name : 'ticketId' ,
2023-05-08 06:15:13 -07:00
type : 'resourceLocator' ,
default : { mode : 'list' , value : '' } ,
2021-01-31 23:31:40 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'get' ] ,
2021-01-31 23:31:40 -08:00
} ,
2020-04-07 21:35:50 -07:00
} ,
2023-05-08 06:15:13 -07:00
modes : [
{
displayName : 'From List' ,
name : 'list' ,
type : 'list' ,
placeholder : 'Select from the list' ,
typeOptions : {
searchListMethod : 'searchTickets' ,
} ,
} ,
{
displayName : 'By Id' ,
name : 'id' ,
type : 'string' ,
placeholder : '58539222' ,
validation : [
{
type : 'regex' ,
properties : {
regex : '[0-9]+' ,
errorMessage : 'Not a valid HubSpot Ticket ID' ,
} ,
} ,
] ,
} ,
] ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
{
2023-05-08 06:15:13 -07:00
displayName : 'Options' ,
2021-01-31 23:31:40 -08:00
name : 'additionalFields' ,
type : 'collection' ,
2023-05-08 06:15:13 -07:00
placeholder : 'Add Option' ,
2021-01-31 23:31:40 -08:00
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'get' ] ,
2021-01-31 23:31:40 -08:00
} ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
options : [
{
displayName : 'Include Deleted' ,
name : 'includeDeleted' ,
type : 'boolean' ,
default : false ,
} ,
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket Properties to Include' ,
2021-01-31 23:31:40 -08:00
name : 'properties' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getTicketProperties' ,
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Ticket properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-01-31 23:31:40 -08:00
} ,
{
displayName : 'Properties With History' ,
name : 'propertiesWithHistory' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
"Works similarly to properties=, but this parameter will include the history for the specified property, instead of just including the current value. Use this parameter when you need the full history of changes to a property's value." ,
2021-01-31 23:31:40 -08:00
} ,
] ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
/* -------------------------------------------------------------------------- */
/* ticket:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'getAll' ] ,
2021-01-31 23:31:40 -08:00
} ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-01-31 23:31:40 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 250 ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-04-07 21:35:50 -07:00
} ,
2021-01-31 23:31:40 -08:00
{
2023-05-08 06:15:13 -07:00
displayName : 'Options' ,
2021-01-31 23:31:40 -08:00
name : 'additionalFields' ,
type : 'collection' ,
2023-05-08 06:15:13 -07:00
placeholder : 'Add Option' ,
2021-01-31 23:31:40 -08:00
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'getAll' ] ,
2021-01-31 23:31:40 -08:00
} ,
} ,
options : [
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket Properties to Include' ,
2021-01-31 23:31:40 -08:00
name : 'properties' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getTicketProperties' ,
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
2023-05-08 06:15:13 -07:00
'Whether to include specific Ticket properties in the returned results. Choose from a list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-01-31 23:31:40 -08:00
} ,
{
displayName : 'Properties With History' ,
name : 'propertiesWithHistory' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
"Works similarly to properties=, but this parameter will include the history for the specified property, instead of just including the current value. Use this parameter when you need the full history of changes to a property's value." ,
2021-01-31 23:31:40 -08:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* ticket:delete */
/* -------------------------------------------------------------------------- */
{
2023-05-08 06:15:13 -07:00
displayName : 'Ticket to Delete' ,
2021-01-31 23:31:40 -08:00
name : 'ticketId' ,
2023-05-08 06:15:13 -07:00
type : 'resourceLocator' ,
default : { mode : 'list' , value : '' } ,
2021-01-31 23:31:40 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'ticket' ] ,
operation : [ 'delete' ] ,
2021-01-31 23:31:40 -08:00
} ,
2020-04-07 21:35:50 -07:00
} ,
2023-05-08 06:15:13 -07:00
modes : [
{
displayName : 'From List' ,
name : 'list' ,
type : 'list' ,
placeholder : 'Select from the list' ,
typeOptions : {
searchListMethod : 'searchTickets' ,
} ,
} ,
{
displayName : 'By Id' ,
name : 'id' ,
type : 'string' ,
placeholder : '58539222' ,
validation : [
{
type : 'regex' ,
properties : {
regex : '[0-9]+' ,
errorMessage : 'Not a valid HubSpot Ticket ID' ,
} ,
} ,
] ,
} ,
] ,
2020-04-07 21:35:50 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;