ScaleFluidly icon

ScaleFluidly

Consume ScaleFluidly API

Actions224

Overview

The ScaleFluidly node integrates with the ScaleFluidly API to perform various operations related to quotes, accounts, contacts, orders, and other resources within the ScaleFluidly platform. Specifically, for the Quote resource and Create Account operation, this node sends a request to create a new account in the ScaleFluidly system.

This node is beneficial in automation workflows where you need to programmatically manage sales-related data such as creating accounts linked to quotes, updating contact information, or managing pricing and configurations. For example, when a new customer quote is generated, this node can automatically create an associated account in the backend system, streamlining CRM and sales processes.

Properties

Name Meaning
Environment The target environment for the API call. Options are:
- Dev: Development environment URL
- QA: Quality Assurance environment URL
- Local: Localhost URL for testing
Request JSON object representing the request body sent to the API. This contains all necessary data fields required by the "Create Account" operation in the ScaleFluidly API.

Output

  • The node outputs an array of JSON objects corresponding to the responses from the ScaleFluidly API for each input item.
  • Each output JSON object contains the response data returned by the API after attempting to create an account.
  • No binary data output is produced by this node.

Dependencies

  • Requires access to the ScaleFluidly API endpoint specified by the selected environment.
  • Optionally uses an API authentication token (Bearer token) passed via the authorization header in the input data's JSON under headers.authorization.
  • If no explicit authorization header is provided in the first input item, the node expects an API credential configured in n8n under a generic API key or token authentication method.
  • No additional external dependencies beyond standard HTTP requests.

Troubleshooting

  • Bearer token not found: If the first input item does not contain an authorization token in its headers and no API credential is configured, the node will throw an error. Ensure that either the input JSON includes a valid Bearer token in headers.authorization or configure the API credentials properly.
  • 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 JSON in Request: The request_info property must be a valid JSON object. Malformed JSON will cause the API call to fail.
  • Environment URL issues: Selecting an incorrect environment URL may lead to connection errors. Confirm the environment setting matches your deployment.

Links and References


This summary focuses on the Quote resource with the Create Account operation, describing how the node constructs and sends the API request, handles authentication, and returns the API response.

Discussion