Overview
This node integrates with the Taime Pro API to manage contacts and messages. Specifically, for the Contact - Delete operation, it deletes a contact from the Taime Pro system by its unique Contact ID.
Typical use cases include:
- Automating cleanup of outdated or invalid contacts.
- Removing contacts based on external triggers or workflows.
- Managing contact lifecycle within a CRM or communication platform integrated via Taime Pro.
Example: Automatically delete a contact when they unsubscribe from a mailing list or after a certain period of inactivity.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact to delete. This is required to specify which contact will be removed. |
Output
The output JSON contains the response from the Taime Pro API after attempting to delete the specified contact. Typically, this might be an empty object or a confirmation message indicating successful deletion.
No binary data is output by this operation.
Example output JSON structure:
{}
or possibly a confirmation message depending on the API response.
Dependencies
- Requires an active connection to the Taime Pro API.
- Needs an API authentication token or key configured in n8n credentials (referred generically as "an API key credential").
- The node uses internal helper functions to make HTTP requests to the Taime Pro endpoints.
Troubleshooting
Common issues:
- Invalid or missing Contact ID: The API will reject the request if the Contact ID is not provided or incorrect.
- Authentication errors: Ensure the API key credential is valid and has permissions to delete contacts.
- Network or API downtime: Temporary failures connecting to the Taime Pro service.
Error messages:
- "Contact not found": The specified Contact ID does not exist; verify the ID.
- "Unauthorized" or "Authentication failed": Check API credentials.
- "Request failed": Could indicate network issues or malformed requests.
To resolve these, verify input parameters, ensure credentials are correct, and check the Taime Pro service status.
Links and References
- Taime Pro API Documentation (Assumed URL, replace with actual if known)
- n8n documentation on creating custom nodes