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 operation deletes a single timeline activity by its unique identifier. It is useful in scenarios where you need to remove specific activities from a timeline, such as cleaning up outdated or incorrect entries in a project management or social feed context.
For example, if you have an automated workflow that tracks user actions or events and you want to retract or delete one of those recorded activities based on certain conditions, this operation allows you to do so by specifying the activity's ID.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the timeline activity to delete. This is a required string value representing the object id. |
Output
The output JSON will typically contain the response from the API confirming the deletion of the timeline activity. This may include status information or details about the deleted object. No binary data output is expected for this operation.
Dependencies
- Requires an API key credential to authenticate requests to 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 local OpenAPI specification file (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 is incorrect, the API will likely return an error indicating that the resource could not be found or the request is malformed. Ensure the Id is correct and corresponds to an existing timeline activity.
- Authentication errors: If the API key or authentication token is missing or invalid, the node will fail to connect. Verify that the credentials are correctly set up in n8n.
- Network or API errors: Issues like timeouts or server errors can occur. Check network connectivity and API service status.
- Permission issues: The authenticated user must have permission to delete timeline activities; otherwise, the API will reject the request.
Links and References
- Twenty API Documentation (Assumed official API docs for reference)
- n8n Documentation - Creating Nodes