ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

The "Get Rooms" operation of the Quote resource in this ScaleFluidly node interacts with the ScaleFluidly API to retrieve information about user rooms related to quotes. This operation is useful for scenarios where you need to fetch details about collaboration spaces or rooms associated with quotes, such as retrieving participants, messages, or metadata tied to a quote's room.

Practical examples include:

  • Fetching all rooms a user has access to for managing quote discussions.
  • Integrating room data into CRM workflows to display collaborative contexts.
  • Automating notifications or updates based on room activity linked to quotes.

Properties

Name Meaning
Environment The target environment URL for the API call. Options:
- Dev (https://documentation-dev.scalefluidly.com)
- QA (https://documentation.scalefluidly.com)
- Local (http://localhost:8400)

Output

The output is an array of JSON objects representing the response from the ScaleFluidly API for the "Get Rooms" operation. Each object contains data about a room related to quotes, such as room identifiers, participant lists, and other room-specific metadata returned by the API.

If the API returns binary data (not indicated explicitly here), it would typically represent attachments or files related to rooms, but this operation primarily deals with JSON data.

Dependencies

  • Requires an active connection to the ScaleFluidly API endpoint specified by the chosen environment.
  • Uses an authorization bearer token extracted from input data headers or provided credentials to authenticate API requests.
  • No explicit internal credential names are exposed; users must provide a valid API authentication token.
  • The node depends on n8n's HTTP request helper methods to perform authenticated API calls.

Troubleshooting

  • Bearer token not found: If the first input item does not contain an authorization header with a bearer token, and no prior token is stored, the node will throw an error. Ensure that the input data includes a valid authorization token or configure credentials properly.
  • Operation not found: If the operation name does not map to a known intent URL, the node throws an error indicating the operation is invalid. Verify the operation parameter is correctly set to "get_user_room" for this use case.
  • API connectivity issues: Network errors or incorrect environment URLs can cause request failures. Confirm the environment URL is reachable and correct.
  • Invalid request body: Although "Get Rooms" likely does not require a complex request body, malformed JSON in the optional request_info property could cause errors.

Links and References


This summary focuses specifically on the "Quote" resource and its "Get Rooms" operation as requested.

Discussion