Actions99
- Group Accounts Actions
- Group Account Codes Actions
- Accounts Actions
- Expenses Actions
- Purchase Orders Actions
- Get A List Of Purchase Orders
- Create A New Purchase Order
- Get A Purchase Order
- Update A Purchase Order
- Open A Purchase Order
- Get A List Of Purchase Orders Items For A Specific Purchase Order
- Create A Purchase Order Item
- Get A Purchase Order Item
- Update A Purchase Order Item
- Delete A Purchase Order Item
- Get A List Of Goods Received Notes For A Specific Purchase Order
- Create A Goods Received Note
- Attach A File To A Goods Received Note
- Delete A Goods Received Note
- Suppliers Actions
- Fund Accounts Actions
- Cards Actions
- Expense Categories Actions
- Tax Rates Actions
- Amortizations Actions
- Account Teams Actions
- Account Codes Actions
- External Teams Actions
- Custom Fields Actions
- Get Custom Fields
- Create A New Custom Field
- Get Custom Field
- Update Custom Field
- Delete A Custom Field And All Its Values
- Get Custom Field Values
- Create A Custom Field Value
- Delete Custom Field Values
- Get A Custom Field Value
- Update A Custom Field Value
- Delete A Custom Field Value
- Get Managers For A Specific Custom Field Value
- Adds Managers For A Specific Custom Field Value
- Replaces Managers For A Specific Custom Field Value
- Removes Managers For A Specific Custom Field Value
- Webhook Subscriptions Actions
- Group Teams Actions
Overview
This node operation retrieves the list of users associated with a specific account. It is useful in scenarios where you need to manage or audit user access within an account, such as fetching all users for review, synchronizing user data with another system, or automating user-related workflows.
For example, you might use this node to:
- Get all users linked to a particular account to send notifications.
- Audit user permissions by retrieving current account users.
- Integrate with other systems that require up-to-date user lists from your accounts.
Properties
| Name | Meaning |
|---|---|
| Account Id | Identifier of the account whose users you want to retrieve. |
| Filter | JSON-stringified and URL-encoded filter expression object to narrow down the users returned. The filter must conform to the expected schema for account user filtering. |
Output
The output contains a JSON array of user objects associated with the specified account. Each user object typically includes details such as user identifiers, names, roles, and other relevant metadata depending on the API's response structure.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authentication with the external service.
- The node expects a base URL configuration for the API endpoint.
- The operation uses HTTP GET requests with query parameters for filtering.
Troubleshooting
Common issues:
- Invalid or missing Account Id will result in errors or empty responses.
- Malformed filter JSON can cause request failures; ensure the filter is properly JSON-stringified and URL-encoded.
- Authentication errors if the API key or credentials are not set correctly.
Error messages:
- "Unauthorized" or "Authentication failed": Check that the API key credential is configured and valid.
- "Invalid filter format": Verify the filter JSON syntax and encoding.
- "Account not found": Confirm the Account Id exists and is correct.
Links and References
- Refer to the external API documentation for detailed schema of account users and filter expressions.
- n8n documentation on how to configure API credentials and use JSON input properties.