Crowd.dev Node icon

Crowd.dev Node

Crowd.dev - An open-source suite of community and data tools built to unlock community-led growth for developer tools.

Overview

This node allows you to delete an Organization in Crowd.dev, an open-source suite of community and data tools. The "Delete" operation for the "Organization" resource is used to remove an organization from your Crowd.dev workspace by specifying its unique ID.

Common scenarios:

  • Cleaning up test or obsolete organizations.
  • Automating organization lifecycle management.
  • Integrating with other systems to synchronize deletions.

Example:
You might use this node in a workflow that automatically deletes organizations flagged as inactive in your CRM.

Properties

Name Type Meaning
ID String The ID of the organization to be deleted.

Output

The output will be a JSON object indicating the result of the operation:

{
  "result": "success"
}

If the API returns additional information, it will be included in the output JSON. If an error occurs and "Continue On Fail" is enabled, the output will include an error field with details.

Dependencies

  • External Service: Requires access to the Crowd.dev API.
  • Credentials: You must configure the crowdApi credential in n8n for authentication.

Troubleshooting

  • Missing or Invalid ID: If the provided ID does not correspond to an existing organization, the node may return an error from the API.
  • Authentication Errors: If the crowdApi credentials are missing or invalid, the node will fail to connect to Crowd.dev.
  • Error Handling: If "Continue On Fail" is enabled, errors will be included in the output; otherwise, the workflow will stop on error.

Common error messages:

  • "Organization not found": Check that the ID is correct.
  • "Invalid credentials": Ensure your Crowd.dev API credentials are set up properly in n8n.

Links and References

Discussion