Rvops icon

Rvops

Integração Rvops

Overview

The node integrates with the Rvops platform to manage various CRM-related resources, including contacts, deals, companies, products, users, notes, tasks, associations, properties, and segments. Specifically, for the Nota (Note) resource with the List Notes operation, the node retrieves a list of notes associated with a specified object type and ID.

This operation is useful when you want to fetch all notes linked to a particular contact, deal, or other supported objects in your CRM system. For example, you might use it to display all notes related to a specific deal during a sales process or to audit communications attached to a contact.

Properties

Name Meaning
Autenticação Do Cliente Authentication method to access the API; currently supports "Access Token" only.
Objeto (fromObjectList) The type of object whose notes you want to list. Options: "Contato" (contact), "Negócio" (deal).
ID Do Objeto (fromObjectIdList) The unique numeric ID of the object instance whose notes are to be retrieved. Must be ≥ 1.

Additional sorting and ordering properties exist but are not relevant for the List Notes operation.

Output

The output is a JSON array where each item represents a note associated with the specified object. Each note object includes its properties as returned by the API. The exact structure depends on the API response but typically contains fields such as note ID, text, type, owner, timestamp, and any other metadata.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authentication (referred generically as an API token).
  • Depends on the Rvops API endpoint accessible via HTTP requests.
  • The node uses internal helper functions to make authenticated API calls and handle pagination if applicable.

Troubleshooting

  • Common Issues:

    • Invalid or missing object ID: Ensure the "ID Do Objeto" property is set correctly and corresponds to an existing object.
    • Incorrect object type: The "Objeto" property must match the type of the object whose notes you want to list.
    • Authentication errors: Verify that the provided API token is valid and has sufficient permissions.
    • Network or API downtime: Check connectivity and API status.
  • Error Messages:

    • Errors from the API will be caught and can include HTTP status codes and server messages.
    • If the node is configured to continue on failure, error details will be included in the output JSON under an error field.
    • To resolve errors, verify input parameters, credentials, and API availability.

Links and References


This summary focuses exclusively on the "Nota" resource with the "List Notes" operation as requested, based on static analysis of the provided source code and input property definitions.

Discussion