ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

The "Add Participants" operation for the Quote resource in this ScaleFluidly node allows users to add participants to a specific quote within the ScaleFluidly platform. This is useful in scenarios where multiple stakeholders or team members need to be involved in reviewing, approving, or collaborating on a quote. For example, sales teams can add approvers or collaborators to ensure proper oversight and input before finalizing a quote.

This operation sends a request to the ScaleFluidly API endpoint corresponding to adding participants to a quote, using user-provided JSON data as the request body.

Properties

Name Meaning
Environment The target environment for the API call. Options are: Dev (development), QA (quality assurance), Local (local server).
Request The JSON-formatted request body containing details about the participants to add to the quote. This must conform to the API's expected schema for adding participants.

Output

The node outputs an array of JSON objects representing the responses from the ScaleFluidly API for each input item processed. Each JSON object corresponds to the API response for adding participants to a quote, typically including confirmation of added participants or error details if the operation failed.

If the API returns binary data (not typical for this operation), it would be included accordingly, but primarily the output is JSON data reflecting the result of the add participants request.

Dependencies

  • Requires access to the ScaleFluidly API endpoints.
  • An authorization token (Bearer token) must be provided in the input item's headers.authorization field on the first item or via configured credentials.
  • The node supports selecting different environments (Dev, QA, Local) by specifying the base URL for the API.
  • No other external dependencies are required beyond standard HTTP request capabilities.

Troubleshooting

  • Bearer token not found: If the authorization token is missing from the first input item's headers, the node will throw an error. Ensure that the first input item includes a valid Bearer token in headers.authorization.
  • Operation not found: If the operation name does not map to a known API endpoint, an error will be thrown. Verify that the operation parameter is correctly set to "add_participants_for_quote".
  • Invalid request body: Since the request body is user-defined JSON, malformed or incorrect data may cause API errors. Validate the JSON structure against the ScaleFluidly API documentation for adding participants.
  • Environment URL issues: Selecting the wrong environment or having network connectivity issues to the specified environment URL can cause request failures.

Links and References

  • ScaleFluidly API Documentation (QA environment)
  • Refer to your ScaleFluidly API docs for the exact JSON schema required in the "Request" property when adding participants to a quote.

Discussion