Linqer CRM icon

Linqer CRM

Integração com a API do CRM Linqer

Overview

The node integrates with the Linqer CRM API to manage tasks ("Tarefas"). Specifically, the "Criar" (Create) operation allows users to create new tasks in the CRM system. This is useful for automating task creation based on workflow events, such as scheduling follow-ups, assigning responsibilities, or tracking deadlines.

Practical examples include:

  • Automatically creating a task when a new lead is added.
  • Scheduling a meeting or call task linked to an opportunity.
  • Setting reminders for overdue tasks or updating task statuses programmatically.

Properties

Name Meaning
Título Title of the task (required).
Descrição Description of the task.
Data de Vencimento Due date and time for the task (required).
Status Status of the task. Options: Pendente (Pending), Em Andamento (In Progress), Concluída (Completed), Atrasada (Overdue). Default is Pendente.
Responsável ID ID of the user responsible for the task.
Opportunity ID ID of the related opportunity.
Duração Estimated duration of the task (e.g., "30min", "1h").
Tipo Type of the task. Options: 1 = Tarefa (Task), 2 = Reunião (Meeting), 3 = Ligação (Call). Default is 1.

Output

The node outputs JSON data representing the created task as returned by the Linqer CRM API. The structure typically includes all task properties such as title, description, due date, status, responsible user ID, related opportunity ID, duration, and type, along with any additional metadata provided by the API.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating with the Linqer CRM API.
  • The node uses HTTP requests to the Linqer CRM API endpoints under /v1/tasks/public.
  • Proper configuration of the API URL and authentication credentials in n8n is necessary.

Troubleshooting

  • Common issues:

    • Missing required fields like "Título" or "Data de Vencimento" will cause the API request to fail.
    • Invalid IDs for responsible user or opportunity may result in errors from the API.
    • Network or authentication failures if the API key is invalid or missing.
  • Error messages:

    • "Operação 'create' não suportada para tarefas": Indicates an unsupported operation; ensure the operation parameter is correctly set to "create".
    • API errors related to validation will be returned from the Linqer CRM API; check that all required fields are properly filled.
  • Resolution tips:

    • Verify all required input properties are provided.
    • Confirm the API key credential is valid and has sufficient permissions.
    • Check network connectivity and API endpoint accessibility.

Links and References

Discussion