ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

This node integrates with the ScaleFluidly API to perform various operations related to quotes, rooms, pricing, configuration, and administration within the ScaleFluidly platform. Specifically for the Quote resource and the Room Details operation, it retrieves detailed information about a particular room associated with a quote.

Common scenarios where this node is beneficial include:

  • Fetching comprehensive details of a collaboration room linked to a sales quote.
  • Integrating room data into workflows for sales automation or reporting.
  • Automating retrieval of room participants, activities, or metadata for further processing.

For example, a sales team could use this node to automatically pull room details when a quote reaches a certain stage, enabling them to trigger notifications or update CRM records accordingly.

Properties

Name Meaning
Environment The target environment for the API call. Options: Dev (development), QA (quality assurance), Local (local server).
Request JSON object containing the request body parameters required by the specific operation. For "Room Details", this would typically include identifiers such as the room ID.

Output

The node outputs an array of JSON objects representing the response from the ScaleFluidly API for the requested operation. For the "Room Details" operation, the output JSON contains detailed information about the specified room, which may include:

  • Room metadata (e.g., room ID, name, creation date)
  • Participants in the room
  • Associated quotes or documents
  • Activity logs or timelines related to the room

If the API returns binary data (not typical for this operation), it would be included in the binary output field, but this operation primarily deals with JSON data.

Dependencies

  • Requires access to the ScaleFluidly API endpoint corresponding to the selected environment.
  • An API authentication token (bearer token) must be provided via the input data headers on the first item; subsequent calls reuse this token.
  • No explicit internal credential type names are exposed; users must configure appropriate API authentication credentials in n8n.
  • Network connectivity to the chosen environment URL is necessary.

Troubleshooting

  • Bearer token not found error: This occurs if the authorization header with a bearer token is missing in the first input item. Ensure that the first input includes valid authorization headers.
  • Operation not found error: If the specified operation does not exist in the internal mapping, verify that the operation name is correct and supported.
  • API request failures: Could be due to incorrect environment URLs, invalid tokens, or malformed request bodies. Check the environment selection, token validity, and JSON structure of the request property.
  • Empty or unexpected responses: Confirm that the request JSON includes all required fields for the "Room Details" operation, such as the room identifier.

Links and References


Note: The exact structure of the request JSON and response depends on the ScaleFluidly API specification for the "get_room_by_id" or equivalent endpoint used internally for the "Room Details" operation.

Discussion