mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
feat(HubSpot Trigger Node): Add support for ticket related events (#7156)
This commit is contained in:
parent
e01b9e5ae1
commit
57c609384a
|
@ -151,6 +151,22 @@ export class HubspotTrigger implements INodeType {
|
||||||
description:
|
description:
|
||||||
"To get notified if a specified property is changed for any deal in a customer's account",
|
"To get notified if a specified property is changed for any deal in a customer's account",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Ticket Created',
|
||||||
|
value: 'ticket.creation',
|
||||||
|
description: "To get notified if a ticket is created in a customer's account",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Ticket Deleted',
|
||||||
|
value: 'ticket.deletion',
|
||||||
|
description: "To get notified if any ticket is deleted in a customer's account",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Ticket Property Changed',
|
||||||
|
value: 'ticket.propertyChange',
|
||||||
|
description:
|
||||||
|
"To get notified if a specified property is changed for any ticket in a customer's account",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
default: 'contact.creation',
|
default: 'contact.creation',
|
||||||
required: true,
|
required: true,
|
||||||
|
|
Loading…
Reference in a new issue