Rvops icon

Rvops

Integração Rvops

Overview

This node integrates with the Eloz CRM platform, enabling automation workflows to manage various CRM resources such as contacts, deals, companies, products, users, notes, tasks, associations, properties, and segments. Specifically, for the "Usuário" (User) resource with the "Create a User" operation, the node allows creating a new user in the Eloz CRM system by providing essential user details.

Typical use cases include:

  • Automating user creation when onboarding new team members.
  • Syncing user data from other systems into Eloz CRM.
  • Programmatically managing user accounts without manual entry.

Example: Automatically create a new CRM user named "John Doe" with username "john.doe" and email "john@example.com" via an n8n workflow triggered by an HR system event.

Properties

Name Meaning
Autenticação Do Cliente Authentication method; currently supports "Access Token".
Nome Do Usuário Full name of the new user, e.g., "John Doe".
Username Do Usuário Username for the new user, e.g., "john.doe".
E-Mail Email address of the new user.
É Atendente Boolean indicating if the user is an operator/attendant (true or false).
Crm Endpoint The base URL of your Eloz CRM instance, e.g., "https://dominio.eloz.io".

Note: Other properties listed in the full property JSON are related to different resources or operations and are not relevant for the "Create a User" operation.

Output

The node outputs the created user object in the json output field. The structure includes all returned fields from the Eloz API for the newly created user, typically:

{
  "id": "user_id",
  "properties": {
    "name": "John Doe",
    "username": "john.doe",
    "email": "john@example.com",
    "crmEndpoint": "https://dominio.eloz.io",
    "isOperator": false
  }
}

This output can be used downstream in the workflow for further processing or logging.

The node does not output binary data.

Dependencies

  • Requires an active Eloz CRM account with API access.
  • Needs an API authentication token (access token) configured in n8n credentials.
  • The user must provide the correct CRM endpoint URL corresponding to their Eloz CRM domain.
  • The node uses internal helper functions to make HTTP requests to the Eloz API.

Troubleshooting

  • Invalid Credentials Error: Ensure the provided access token is valid and has sufficient permissions to create users.
  • Invalid Endpoint URL: Verify that the CRM endpoint URL is correctly formatted and reachable.
  • Missing Required Fields: The node requires nameUser, username, emailUser, crmEndpoint, and isOperator. Omitting any will cause errors.
  • API Rate Limits: If many users are created rapidly, the Eloz API might throttle requests; implement retries or delays.
  • Error Messages: Errors returned from the Eloz API are passed through; check the error message and status code for diagnosis.

Links and References


This summary focuses exclusively on the "Usuário" resource and the "Create a User" operation as requested.

Discussion