Actions19
Overview
This node integrates with the Orgo API, a multi-tenant SaaS platform for managing organizations. Specifically, the Contact - Delete operation allows users to delete an external contact by specifying its unique ID. This is useful in scenarios where contacts are no longer relevant or need to be removed from the system for data hygiene or compliance reasons.
Practical examples include:
- Removing outdated or duplicate contact records.
- Automating cleanup of contacts after certain workflows or events.
- Managing contact lifecycle within organizational CRM processes.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the contact to delete. This is required to specify which contact record should be removed. |
Output
The output JSON contains the response from the Orgo API after attempting to delete the specified contact. Typically, for a successful deletion, this might be an empty object or confirmation message depending on the API's behavior. If the deletion fails, the output will contain an error message describing the failure.
No binary data is produced by this operation.
Example output on success (may vary):
{}
Example output on failure:
{
"error": "Contact not found"
}
Dependencies
- Requires an API key credential for authenticating with the Orgo API.
- The node expects the base URL and API token to be configured in the credentials.
- HTTP requests are made to the Orgo API endpoints using standard REST methods.
Troubleshooting
Common issues:
- Providing an invalid or non-existent contact ID will result in an error from the API.
- Missing or incorrect API authentication token will cause authorization failures.
- Network connectivity issues can prevent the request from completing.
Error messages and resolutions:
"Contact not found": Verify that the contact ID is correct and exists in the system."Unauthorized"or similar: Check that the API token credential is valid and has necessary permissions.- Timeout or network errors: Ensure the Orgo API endpoint is reachable from your environment.
Links and References
- Orgo API Documentation (Replace with actual URL if available)
- n8n HTTP Request Node documentation for understanding underlying request mechanics: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/