Actions98
- Admin Actions
- Get Users Details
- Get User Permissions
- Update Users
- Create Users
- Get All Groups
- Get Group Members
- Get Groups
- Create Groups
- Update Groups
- Get Permissions
- Get Permission
- Create Permission
- Update Permission
- Get Configuration Rules
- Get Rule Product Groups
- Get Tables
- Get Configuration Rule
- Add or Update Configuration Rule
- Add Rule Product Groups
- Update Rule Product Groups
- Get Configuration
- Save Configuration
- Save Quote Types
- Get Currency Conversions
- Get Object Names Meta Data
- Get Customer Languages
- Get Layout Fields By Object
- Get Data Values
- Get Field Columns
- Add Currency Conversion
- Update Currency Conversion
- Delete Currency Conversion
- Save Translation Meta Data
- Save Translation Data
- Set Customer Languages
- Get Properties
- Get Locations
- Get Flows
- Get Flow By ID
- Create Flow
- Update Flow
- Set Up Customer Profile for Salesforce
- Request Free Trial
- Get Categories
- Get All Categories
- Get Category Products
- Get Non-Associated Category Products
- Get Category Pricebooks
- Get Non-Associated Pricebooks
- Get Category Details
- Get Category Discounts
- Get Category Discount By ID
- Add Categories
- Update Category
- Add Products to Category
- Delete Category Products
- Update Category Pricebooks
- Add Pricebook to a Category
- Add or Update Category Discounts
- Delete Category Discounts
- Get Price Books
- Get Based On Price Books
- Get Price Book Associated Products
- Get Price Book Available Products
- Pricebook Line Items
- Get Pricing Customer Lookup
- Add Price Book
- Update Price Book
- Add Price Book Associated Products
- Update Price Book Associated Products
- Get Deal Guidances
- Add Deal Guidance
- Update Deal Guidances
- Get Table Schemas
- Get Approvals
- Get Group Users
- Add or Update Approval
- Get Objects
- Get Object Details by ID
- Get Data Types
- Add Objects
- Update Objects
- Import Data
- Get Functions
- Get Template List
- Insert or Update Templates
- Get Layout Fields
- Get Layouts
- Get Layouts By Layout ID
- Add Layouts
- Delete Layouts
- Get Product Activity Timeline
- Get Price Book Activity Timeline
- Get Price Book Item Activity Timeline
- Get Rule Activity Timeline
- Get All Product UOMs
- Get All Product UOM Conversions
- Get Products
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 with the Get Configuration operation, the node sends a request to retrieve configuration data from the ScaleFluidly platform.
Typical use cases include:
- Fetching administrative configuration settings to dynamically adjust workflows.
- Automating retrieval of system or application configurations for monitoring or reporting.
- Integrating ScaleFluidly admin data into broader automation pipelines.
For example, a user might configure this node to pull current configuration rules or settings before executing further logic in an n8n workflow.
Properties
Name | Meaning |
---|---|
Environment | The target environment URL for the ScaleFluidly API. Options: Dev, QA, Local. |
Request | JSON object representing the request body sent to the API. Required for most operations. |
Details on Properties:
- Environment: Selects which ScaleFluidly environment to target (e.g., development, QA, or local instance).
- Request: A JSON input that contains the request payload specific to the chosen operation. For "Get Configuration" under Admin, this may be empty or contain parameters required by the API endpoint.
Output
The node outputs an array of JSON objects corresponding to the responses received from the ScaleFluidly API calls. Each item in the output array represents the parsed JSON response from one API request.
- The
json
field contains the full response data returned by the ScaleFluidly API for the requested operation. - No binary data output is indicated in the source code.
Dependencies
- Requires access to the ScaleFluidly API endpoints specified by the selected environment.
- Optionally uses an API authentication token passed via an authorization header. This token can be provided either in the input data headers or through configured credentials.
- The node depends on n8n's HTTP request helper methods to communicate with the ScaleFluidly API.
- No explicit external libraries beyond n8n core modules are required.
Troubleshooting
- Bearer token not found: If the first input item does not contain an authorization token in its headers, and no prior token is stored, the node will throw an error. Ensure the input data includes a valid bearer token or configure credentials properly.
- Operation not found: If the specified operation (intent) does not exist in the internal mapping, the node throws an error indicating the operation is unknown. Verify the operation name matches supported actions.
- Invalid JSON in Request: The
request_info
property expects valid JSON. Malformed JSON will cause errors when sending the API request. - API connectivity issues: Network problems or incorrect environment URLs can lead to failed requests. Confirm the environment URL is reachable and correct.
Links and References
- ScaleFluidly API Documentation (QA environment)
- n8n HTTP Request Node Documentation
- General REST API best practices for authentication and error handling
This summary focuses on the Admin resource and Get Configuration operation as requested, based on static analysis of the provided source code and properties.