Actions16
Overview
This node integrates with the Outseta CRM API to manage people, accounts, and deals within your CRM system. Specifically, for the Person - Delete operation, it allows you to remove a person record from your Outseta CRM by specifying their unique identifier (UID). This is useful in scenarios where you need to clean up outdated or incorrect contact information, comply with data removal requests, or automate CRM maintenance workflows.
Practical example: Automatically deleting a person from your CRM when they unsubscribe from your service or when their account is closed.
Properties
Name | Meaning |
---|---|
Person UID | The unique identifier of the person to delete from the CRM. This is required to specify which person record to remove. |
Output
The output of this operation will be the JSON response returned by the Outseta API after attempting to delete the specified person. Typically, this might include confirmation of deletion or an empty response indicating success.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for authenticating with the Outseta CRM API.
- The node expects the domain of the Outseta instance to be configured in credentials.
- Network access to the Outseta API endpoint (
https://<domain>/api/v1
) is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Person UID will likely result in an error from the API indicating that the resource was not found.
- Missing or incorrect API authentication credentials will cause authorization errors.
- Network connectivity problems can prevent the request from completing.
Error messages:
- 404 Not Found: The specified Person UID does not exist. Verify the UID is correct.
- 401 Unauthorized: Authentication failed. Check that the API key credential is valid and properly configured.
- 400 Bad Request: The request parameters are invalid. Ensure the Person UID is provided and correctly formatted.
Resolving these typically involves verifying input values, checking credentials, and ensuring network connectivity.
Links and References
- Outseta API Documentation (for detailed API endpoints and responses)
- n8n Documentation (for general guidance on using n8n nodes and credentials)