RD Station CRM Negociações icon

RD Station CRM Negociações

Operações com negociações no RD Station CRM

Actions5

Overview

This node integrates with RD Station CRM to perform operations on sales deals ("Negociações"). Specifically, the "Listar Contatos" operation under the "Negociação" resource retrieves a paginated list of contacts associated with a given deal. This is useful for scenarios where you want to analyze or process all contacts linked to a particular sales opportunity.

Practical examples include:

  • Fetching all contacts related to a specific deal to send targeted follow-up emails.
  • Synchronizing contact data from RD Station CRM into another system based on deal associations.
  • Generating reports that combine deal and contact information.

Properties

Name Meaning
ID da Negociação The unique identifier of the deal whose contacts you want to list. (Required)
Parâmetros de Listagem Parameters to control pagination of the contacts list:
- Página: Page number of the contacts list (default 1).
- Limite: Maximum number of contacts per page (default 20, max 200).

Output

The output is a JSON object containing the response body from the RD Station CRM API endpoint that lists contacts for the specified deal. It includes an array of contact objects with their details as stored in RD Station CRM.

No binary data output is produced by this operation.

Example structure of the output JSON (simplified):

{
  "contacts": [
    {
      "id": "contact_id_1",
      "name": "Contact Name",
      "emails": [...],
      "phones": [...],
      ...
    },
    ...
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 100
  }
}

Dependencies

  • Requires an API key credential for RD Station CRM configured in n8n.
  • Uses the RD Station CRM REST API v1 at https://crm.rdstation.com/api/v1.
  • The node requires network access to RD Station CRM endpoints.

Troubleshooting

  • Missing Deal ID: If the "ID da Negociação" property is not provided, the node will throw an error stating that the deal ID is mandatory. Ensure this field is filled correctly.
  • API Authentication Errors: If the API key credential is invalid or missing, requests will fail. Verify the credential configuration in n8n.
  • Pagination Limits: Setting the "Limite" parameter above 200 may cause the API to reject the request or return errors. Keep it within allowed limits.
  • Empty Contact List: If no contacts are associated with the deal, the returned list will be empty. Confirm the deal ID is correct and has linked contacts.
  • Network Issues: Connectivity problems to RD Station CRM API endpoints will cause request failures. Check your network and proxy settings if applicable.

Links and References

Discussion