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 interacts with the Twenty API to manage workspace members. Specifically, the "Delete One Workspace Member" operation allows users to remove a member from a workspace by specifying the member's unique identifier. This is useful in scenarios where you need to revoke access or clean up workspace memberships programmatically.
Practical examples include:
- Automating user management workflows by removing inactive or unauthorized members.
- Integrating workspace membership control into broader team management systems.
- Cleaning up workspace members as part of project archival or offboarding processes.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the workspace member to delete. This is a required string value representing the object id of the member. |
Output
The node outputs JSON data reflecting the result of the deletion request. Typically, this will confirm whether the deletion was successful or provide error details if it failed. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential for authenticating with the Twenty API.
- The node uses the base URL and headers configured via credentials, including
Accept: application/jsonandContent-Type: application/json. - The bundled code depends on an OpenAPI specification (
twenty-v1.0.3-openapi.json) and a helper library for building properties and making requests.
Troubleshooting
- Invalid or missing Id: If the provided Id is incorrect or not found, the API will likely return an error indicating the member does not exist. Verify the Id before running the node.
- Authentication errors: Ensure the API key credential is correctly set up and has sufficient permissions to delete workspace members.
- Network or API errors: Check connectivity and API status if requests fail unexpectedly.
- Permission issues: The authenticated user must have rights to delete members; otherwise, the API will reject the request.
Links and References
- Twenty API Documentation (general reference for the API)
- n8n documentation on creating custom nodes