ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

This node integrates with the ScaleFluidly API to perform various operations related to quotes, configuration, pricing, MCP (a custom action), and admin tasks. Specifically for the Quote resource and the Delete Participants operation, it allows users to delete participants associated with a quote by sending a properly structured request to the ScaleFluidly backend.

Common scenarios where this node is beneficial include:

  • Managing participant lists on sales quotes in an automated workflow.
  • Removing users or contacts from a quote's collaboration or approval process.
  • Integrating quote participant management into larger CRM or sales automation pipelines.

For example, a sales automation workflow could use this node to remove obsolete or incorrect participants from a quote before finalizing it.

Properties

Name Meaning
Environment The target environment for the API call. Options are:
- Dev (https://documentation-dev.scalefluidly.com)
- QA (https://documentation.scalefluidly.com)
- Local (http://localhost:8400)
Request JSON object representing the request body to send for the operation. This contains the details of which participants to delete and any other required parameters as defined by the ScaleFluidly API for this operation.

Output

The node outputs an array of JSON objects corresponding to the responses received from the ScaleFluidly API for each input item processed. Each output JSON object represents the result of the delete participants request, typically including success status, any error messages, or metadata returned by the API.

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

Dependencies

  • Requires access to the ScaleFluidly API endpoint specified by the chosen environment.
  • Optionally uses an API key or bearer token for authorization, which must be provided in the input data headers or configured via n8n credentials.
  • No additional external dependencies beyond standard HTTP requests.

Troubleshooting

  • Bearer token not found: If the first input item does not contain an authorization header with a bearer token, and no static authorization header was previously set, the node will throw an error. Ensure that the authorization token is correctly passed in the input data or configured in credentials.
  • Operation not found: If the operation name does not map to a known API endpoint, the node throws an error indicating the operation is invalid. Verify the operation parameter matches supported operations.
  • Invalid request body: Since the request body is user-provided JSON, malformed or incomplete JSON may cause API errors. Validate the JSON structure before execution.
  • API connectivity issues: Network problems or incorrect environment URLs can cause request failures. Confirm the environment URL is reachable and correct.

Links and References


This summary focuses on the "Quote" resource and the "Delete Participants" operation as requested, based on static analysis of the provided source code and property definitions.

Discussion