Actions5
- Organização Actions
Overview
This node interacts with the RD Station CRM to manage organizations and their related data. Specifically, for the "Organização" resource and the "Listar Contatos" operation, it retrieves a paginated list of contacts associated with a specified organization. This is useful when you want to fetch all contacts linked to an organization for further processing, reporting, or integration with other systems.
Practical examples include:
- Synchronizing contacts from RD Station CRM into another CRM or marketing tool.
- Generating reports on contacts related to specific organizations.
- Automating workflows that depend on contact information tied to organizations.
Properties
| Name | Meaning |
|---|---|
| ID da Organização | The unique identifier of the organization whose contacts you want to list (required). |
| Parâmetros de Listagem | Parameters to control pagination of the contacts list: - Página: Page number (default 1) - Limite: Number of contacts per page (default 20, max 200) |
Output
The output is a JSON object containing the list of contacts associated with the specified organization. Each item in the output corresponds to one contact's data as returned by the RD Station CRM API. The structure includes typical contact fields such as name, email, phone numbers, and any other contact details managed within RD Station CRM.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for RD Station CRM configured in n8n.
- The node makes HTTP requests to the RD Station CRM API endpoint at
https://crm.rdstation.com/api/v1. - Proper authentication setup in n8n is necessary to authorize these API calls.
Troubleshooting
- Missing Organization ID: If the "ID da Organização" property is not provided, the node will throw an error indicating that the organization ID is mandatory.
- API Limits: The maximum limit for contacts per request is 200. Requests exceeding this may be rejected or truncated.
- Authentication Errors: Ensure the API key credential is valid and has sufficient permissions to access organization contacts.
- Pagination Handling: If you expect more contacts than the limit, implement pagination by adjusting the "Página" parameter accordingly.
Links and References
- RD Station CRM API Documentation
- n8n Documentation on HTTP Request Node (for understanding how API calls are made)