ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions98

Overview

This node integrates with the ScaleFluidly API, allowing users to perform various operations across multiple resources such as Admin, Quote, Configure, Pricing, and MCP. Specifically for the Admin resource and the Save Quote Types operation, the node sends a JSON request body to the ScaleFluidly API endpoint responsible for saving or updating quote types in the system.

Typical use cases include automating administrative tasks related to quote management, such as updating quote type configurations programmatically within workflows. For example, a user might update quote types based on external data changes or trigger updates after certain business events.

Properties

Name Meaning
Environment The target environment for the API call. Options:
- Dev (https://documentation-dev.scalefluidly.com)
- QA (https://documentation.scalefluidly.com)
- Local (http://localhost:8400)
Request The JSON-formatted request body containing the data to save or update quote types. This is required and must conform to the API's expected schema for quote types.

Output

The node outputs an array of JSON objects representing the responses from the ScaleFluidly API for each input item processed. Each response corresponds to the result of the "save_quote_types" operation and typically includes confirmation of the saved data or error details if the operation failed.

No binary data output is produced by this node.

Dependencies

  • Requires access to the ScaleFluidly API endpoints.
  • Optionally uses an API authentication token if provided in the input data headers; otherwise, it attempts to use configured credentials.
  • The node expects the user to configure the appropriate environment URL and provide valid JSON request bodies matching the API specification.

Troubleshooting

  • Bearer token not found: If the first input item does not contain an authorization header with a bearer token and no credential is configured, the node will throw an error. Ensure that either the input data includes a valid authorization token or the node credentials are properly set.
  • Operation not found: If the specified operation (intent) does not match any known API endpoint mapping, the node will throw an error indicating the operation is not found. Verify the operation name is correct and supported.
  • Invalid JSON request body: Providing malformed or incorrect JSON in the Request property may cause API errors. Validate the JSON structure against the ScaleFluidly API documentation before running the node.
  • Environment URL issues: Selecting an incorrect or unreachable environment URL can lead to connection failures. Confirm the environment setting matches your deployment.

Links and References


This summary focuses on the Admin resource's Save Quote Types operation as requested, based on static analysis of the provided source code and property definitions.

Discussion