Actions252
- Api Keys Actions
- Attachments Actions
- Blocklists Actions
- Calendar Channel Event Associations Actions
- Find Many Calendar Channel Event Associations
- Create One Calendar Channel Event Association
- Create Many Calendar Channel Event Associations
- Find One Calendar Channel Event Association
- Delete One Calendar Channel Event Association
- Update One Calendar Channel Event Association
- Find Calendar Channel Event Association Duplicates
- Companies Actions
- Calendar Channels Actions
- Calendar Event Participants Actions
- Calendar Events Actions
- Connected Accounts Actions
- Favorite Folders Actions
- Favorites Actions
- Message Channel Message Associations Actions
- Find Many Message Channel Message Associations
- Create One Message Channel Message Association
- Create Many Message Channel Message Associations
- Find One Message Channel Message Association
- Delete One Message Channel Message Association
- Update One Message Channel Message Association
- Find Message Channel Message Association Duplicates
- Message Channels Actions
- Message Folders Actions
- View Fields Actions
- Message Participants Actions
- Messages Actions
- Message Threads Actions
- Notes Actions
- Note Targets Actions
- Opportunities Actions
- People Actions
- Tasks Actions
- Task Targets Actions
- Timeline Activities Actions
- View Filter Groups Actions
- View Filters Actions
- View Groups Actions
- Views Actions
- View Sorts Actions
- Webhooks Actions
- Workflow Automated Triggers Actions
- Workflow Runs Actions
- Workflows Actions
- Workflow Versions Actions
- Workspace Members Actions
Overview
This node allows you to delete a single participant from a calendar event. It is useful in scenarios where you need to manage event attendees dynamically, such as removing a participant who can no longer attend or correcting an attendee list. For example, if you have an event scheduled and one of the participants cancels, this node can be used to remove that participant from the event programmatically.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the calendar event participant to delete. This is required to specify which participant should be removed. |
Output
The output contains a JSON object representing the result of the deletion operation. Typically, this will confirm whether the participant was successfully deleted. The exact structure depends on the API response but generally includes status information or confirmation details.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential for authentication with the external service.
- The node uses a base URL configured via credentials to connect to the Twenty API.
- The node depends on the
@devlikeapro/n8n-openapi-nodepackage and a specific OpenAPI schema (twenty-v1.0.3-openapi.json) to build its properties and handle requests.
Troubleshooting
- Missing or invalid Id: If the "Id" property is not provided or incorrect, the node will fail to identify the participant to delete. Ensure the correct participant ID is supplied.
- Authentication errors: If the API key or domain credentials are missing or invalid, the request will fail. Verify that the credentials are correctly set up in n8n.
- Network or API errors: Issues like network connectivity problems or API downtime may cause failures. Check your internet connection and the status of the external API.
- Permission issues: The API user associated with the credentials must have permission to delete event participants. Lack of permissions will result in authorization errors.
Links and References
- Twenty API Documentation (Assumed based on the node name; please verify with actual API docs)
- n8n Documentation on Credentials
- OpenAPI Specification