Linqer CRM icon

Linqer CRM

Integração com a API do CRM Linqer

Overview

The node integrates with the Linqer CRM API to manage products within the CRM system. Specifically, for the "Produtos" (Products) resource and the "Criar" (Create) operation, it allows users to create new product entries in Linqer CRM by sending product details such as name, description, price, SKU, category, stock quantity, active status, and last modified user email.

This node is beneficial in scenarios where you want to automate product management workflows, such as syncing product catalogs from an external system into Linqer CRM, or programmatically adding new products based on events or data pipelines.

Practical example:

  • Automatically add new products to Linqer CRM when they are added to an e-commerce platform.
  • Create products in bulk from a spreadsheet or database using n8n workflows.

Properties

Name Meaning
Nome The name of the product.
Descrição A textual description of the product.
Preço The price of the product (number).
SKU The Stock Keeping Unit code identifying the product.
Categoria The category under which the product is classified.
Estoque The quantity of the product available in stock (number).
Ativo Boolean indicating if the product is active (true) or inactive (false).
Última Modificação Por Email address of the user who last modified the product.

Output

The node outputs JSON data representing the response from the Linqer CRM API after creating the product. This typically includes the created product's details such as its unique identifier and all submitted fields confirmed by the API.

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 requests to communicate with the Linqer CRM REST API endpoints.
  • Proper configuration of the API URL and authentication credentials in n8n is necessary.

Troubleshooting

  • Common issues:

    • Missing required fields like "Nome" (name) will cause the API to reject the request.
    • Invalid API credentials or misconfigured authentication will result in authorization errors.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "Operação 'create' não suportada para produtos": Indicates an unsupported operation was requested; ensure the operation parameter is set correctly.
    • API error responses related to validation will include messages about missing or invalid fields; verify input property values.
    • Authentication errors suggest checking the API key credential setup.
  • Resolutions:

    • Double-check that all required properties are provided and valid.
    • Verify the API key credential is correctly configured and has sufficient permissions.
    • Ensure network access to the Linqer CRM API endpoint is available.

Links and References

Discussion