Rvops icon

Rvops

Integração Rvops

Overview

This node integrates with the Rvops platform to manage contacts and related entities. Specifically, for the Create a Contact operation under the "Contato" (Contact) resource, it allows users to create new contact records in Rvops with customizable properties and associations.

Typical use cases include:

  • Automating the creation of new contacts from form submissions or CRM data.
  • Associating newly created contacts with existing companies and deals automatically.
  • Populating custom contact properties dynamically based on workflow data.

For example, you can create a contact with specific attributes like name, email, and phone number, and simultaneously link this contact to one or more companies and deals by their IDs.

Properties

Name Meaning
Autenticação Do Cliente Authentication method to access the API; currently supports "Access Token".
Propriedades Collection of contact properties to set on creation. Each property requires selecting a property name/ID and providing its value.
Associações Com Empresas List of company IDs to associate the new contact with.
Associações Com Negócios List of deal IDs to associate the new contact with.

Details on "Propriedades"

  • You add multiple properties as key-value pairs.
  • Property names are loaded dynamically from available contact properties.
  • Values are strings representing the new property's value.

Associations

  • Companies and deals are associated by specifying their numeric IDs.
  • Multiple associations can be added.

Output

The output JSON for each created contact includes:

  • id: The unique identifier of the newly created contact.
  • properties: An object containing all the properties set on the contact.

Example output structure:

{
  "id": "12345",
  "properties": {
    "email": "example@example.com",
    "firstname": "John",
    "lastname": "Doe"
  }
}

No binary data is output by this operation.

Dependencies

  • Requires an API authentication token (access token) configured in n8n credentials to authorize requests to the Rvops API.
  • Relies on the Rvops REST API endpoints for contacts and associations.
  • Uses internal helper methods to make HTTP requests and handle pagination or metadata construction.

Troubleshooting

  • Invalid or missing authentication: Ensure the access token credential is correctly configured and has sufficient permissions.
  • Property not found or invalid: When specifying properties, ensure the property names/IDs exist in Rvops and are spelled correctly.
  • Association errors: Verify that company and deal IDs used for associations exist and are valid integers.
  • API rate limits or network issues: If requests fail intermittently, check network connectivity and API rate limits.
  • Error messages from API: The node surfaces error messages returned by the API, including HTTP status and server message. Use these details to diagnose issues.

If the node is set to continue on failure, errors will be included in the output JSON under an error field.

Links and References


This summary focuses exclusively on the "Contato" resource and the "Create a Contact" operation as requested.

Discussion