calendlyTrigger.json•2.36 kB
{
"nodeType": "n8n-nodes-base.calendlyTrigger",
"displayName": "Calendly Trigger",
"description": "Starts the workflow when Calendly events occur",
"version": 1,
"properties": [
{
"name": "authentication",
"displayName": "Authentication",
"type": "options",
"default": "apiKey",
"options": [
{
"name": "OAuth2 (recommended)",
"value": "oAuth2"
},
{
"name": "API Key or Personal Access Token",
"value": "apiKey"
}
]
},
{
"name": "scope",
"displayName": "Scope",
"type": "options",
"default": "user",
"description": "Triggers the webhook for all subscribed events within the organization",
"required": true,
"options": [
{
"name": "Organization",
"value": "organization",
"description": "Triggers the webhook for all subscribed events within the organization"
},
{
"name": "User",
"value": "user",
"description": "Triggers the webhook for subscribed events that belong to the current user"
}
]
},
{
"name": "events",
"displayName": "Events",
"type": "multiOptions",
"default": [],
"description": "Receive notifications when a new Calendly event is created",
"required": true,
"options": [
{
"name": "Event Created",
"value": "invitee.created",
"description": "Receive notifications when a new Calendly event is created"
},
{
"name": "Event Canceled",
"value": "invitee.canceled",
"description": "Receive notifications when a Calendly event is canceled"
}
]
}
],
"credentialsConfig": [
{
"name": "calendlyApi",
"required": true
},
{
"name": "default",
"required": false
},
{
"name": "authentication",
"required": false
},
{
"name": "scope",
"required": true
},
{
"name": "events",
"required": false
}
],
"io": {
"inputs": [],
"outputs": [],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [],
"produces": []
}
}