ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

The "ScaleFluidly" node integrates with the ScaleFluidly API to perform various operations across multiple resources such as Quote, Configure, Pricing, MCP, and Admin. Specifically for the Quote resource and the Get User Quotes operation, this node fetches quotes associated with a user from the ScaleFluidly system.

This node is beneficial in scenarios where users need to programmatically retrieve quote data related to their account or activities, enabling automation of workflows involving sales quotes, approvals, or quote management. For example, a sales automation workflow could use this node to pull all quotes assigned to a user and then process or analyze them further.

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). Determines which backend environment the request will be sent to.
Request JSON object containing the request body parameters specific to the operation. This allows passing any required filters or parameters needed by the "Get User Quotes" API endpoint.

Output

The node outputs an array of JSON objects representing the response from the ScaleFluidly API for the requested operation. For the "Get User Quotes" operation, the output JSON typically contains details about the user's quotes, such as quote IDs, statuses, amounts, dates, and other relevant metadata returned by the API.

If the API returns binary data (not typical for this operation), it would be included accordingly, but primarily the output is structured JSON data reflecting the quotes information.

Dependencies

  • Requires access to the ScaleFluidly API endpoints.
  • Optionally uses an API authentication token if provided in the input headers; otherwise, it attempts to use credentials configured in n8n under a generic API key credential.
  • No explicit internal credential names are exposed; users must configure appropriate API authentication tokens or keys externally.
  • The node requires network connectivity to the selected environment URL.

Troubleshooting

  • Bearer token not found error: If the first input item does not contain an authorization header with a bearer token and no API credential is configured, the node will throw an error. Ensure that either the input includes a valid authorization token or the node is configured with proper API credentials.
  • Operation not found error: If the specified operation or intent name does not match any known API endpoint mapping, the node will throw an error indicating the operation was not found. Verify the operation name is correct and supported.
  • Request failures: Network issues, invalid environment URLs, or incorrect request bodies may cause API request failures. Check the environment selection and the JSON structure of the request body.
  • Empty or malformed response: Ensure the request_info JSON is correctly formatted and includes all required fields expected by the API for the "Get User Quotes" operation.

Links and References


This summary focuses on the "Quote" resource and the "Get User Quotes" operation based on the provided source code and property definitions.

Discussion