Actions22
Overview
This node allows you to delete a Member resource in Crowd.dev, an open-source suite of community and data tools. The "Delete" operation removes a member from the system based on their unique ID. This is useful for managing your community database, such as when a user leaves or needs to be removed for compliance reasons.
Example scenarios:
- Removing users who have requested account deletion.
- Cleaning up test or duplicate accounts.
- Enforcing moderation actions by deleting problematic members.
Properties
| Name | Type | Meaning |
|---|---|---|
| ID | String | The ID of the member to be deleted. |
Output
The output will be a JSON object with the following structure:
{
"result": "success"
}
- If the deletion is successful, you receive
{ "result": "success" }. - If there is additional information returned by the API, it will be included in the
jsonfield. - In case of errors and if "Continue On Fail" is enabled, the output will include the original input and error details.
Dependencies
- External Service: Requires access to the Crowd.dev API.
- Credentials: You must configure the
crowdApicredential in n8n for authentication.
Troubleshooting
- Missing or Invalid ID: If the provided ID does not exist or is invalid, the node may throw an error indicating that the member could not be found or deleted.
- Authentication Errors: If the
crowdApicredentials are missing or incorrect, you may see authentication or authorization errors. - API Connectivity Issues: Network problems or incorrect API endpoints can result in connection errors.
- Error Handling: If "Continue On Fail" is enabled, errors will be included in the output; otherwise, the workflow will stop on error.