Actions32
- Contatos Actions
- Oportunidades Actions
- Tarefas Actions
- Produtos Actions
- Funis Actions
- Campos Personalizados Actions
- Notas Actions
- Anexos Actions
- Propostas Actions
- Webhooks Actions
Overview
This node integrates with the Linqer CRM API to manage contacts and other CRM resources. Specifically, for the "Contatos" (Contacts) resource and the "Deletar" (Delete) operation, it allows users to delete a contact by specifying its unique ID. This is useful in scenarios where you want to automate the removal of outdated or incorrect contact records from your CRM system.
Practical example: Automatically deleting contacts that have unsubscribed or are no longer relevant after a certain workflow step, ensuring your CRM data stays clean and up-to-date.
Properties
| Name | Meaning |
|---|---|
| ID do Contato | The unique identifier of the contact to be deleted. This is required to specify which contact to remove. |
| Account ID | The account ID used to filter contacts. Optional but may be required depending on context when deleting a contact. |
Output
The output JSON contains the response from the Linqer CRM API after attempting to delete the specified contact. Typically, this will include confirmation of deletion or an error message if the operation failed.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Linqer CRM API.
- The node uses HTTP DELETE requests to the endpoint
/v1/contacts/public/{contactId}with an optionalaccountIdin the request body. - Proper configuration of the API URL and authentication credentials within n8n is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent contact ID will result in an error from the API.
- Missing or incorrect API credentials will cause authentication failures.
- If the account ID is required by the API but not provided, the deletion might fail or not target the correct scope.
Error messages:
- Errors returned by the API typically include messages indicating why the deletion failed (e.g., "Contact not found", "Unauthorized").
- To resolve, verify the contact ID exists, check API credentials, and ensure the account ID is correctly set if needed.
Links and References
- Linqer CRM API documentation (for endpoints related to contacts): Linqer CRM API Docs (hypothetical link as actual URL is not provided)
