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
The "Update Users" operation within the Admin resource of the ScaleFluidly node allows users to update user information by sending a custom JSON request body to the ScaleFluidly API. This node acts as a flexible interface to interact with various ScaleFluidly API endpoints, specifically here for administrative user updates.
Common scenarios where this node is beneficial include:
- Automating user management tasks such as updating user roles, permissions, or profile details in bulk.
- Integrating ScaleFluidly user administration into broader workflows, e.g., syncing user data from other systems.
- Customizing user attributes dynamically based on workflow logic.
For example, a workflow could trigger when a new employee joins and automatically update their user profile in ScaleFluidly with relevant department and access level information.
Properties
Name | Meaning |
---|---|
Environment | The target environment URL for the API call. Options: Dev (https://documentation-dev.scalefluidly.com ), QA (https://documentation.scalefluidly.com ), Local (http://localhost:8400 ). Determines which ScaleFluidly instance the request targets. |
Request | A JSON object representing the request body sent to the API for updating users. This must be provided and should conform to the expected API schema for user updates. |
Output
The node outputs an array of JSON objects corresponding to the responses received from the ScaleFluidly API for each input item processed. Each JSON object contains the API response data related to the user update operation.
If the API returns binary data (not typical for this operation), it would be included accordingly, but primarily the output is structured JSON reflecting success, errors, or updated user details.
Dependencies
- Requires access to the ScaleFluidly API endpoint specified by the chosen environment.
- May require an API authentication token (bearer token) passed via HTTP headers; this token is extracted from the first input item's JSON
headers.authorization
field or managed internally if configured. - No explicit external credential type names are exposed; users must ensure valid authorization tokens are available in the workflow context.
Troubleshooting
- Bearer token not found: If the authorization header is missing in the first input item, the node throws an error. Ensure that the first input includes a valid bearer token in
json.headers.authorization
. - Operation not found: If the operation name does not map to a known intent URL, an error is thrown. Confirm the operation parameter is correctly set to
"update_users"
for this use case. - Invalid JSON request body: The
request_info
property must be a valid JSON object matching the API's expected schema. Malformed or incomplete JSON will cause API errors. - API connectivity issues: Verify the selected environment URL is reachable and correct, especially when using local or dev environments.
- Permission errors: Ensure the API token has sufficient privileges to perform user updates.
Links and References
- ScaleFluidly API Documentation (QA environment)
- Refer to your organization's ScaleFluidly API specification for detailed request body schemas and user update rules.