Actions31
Overview
The node integrates with the Steuerboard API to manage workspace members. Specifically, the "List" operation under the "Workspace Member" resource retrieves a list of members associated with a particular workspace and client. This is useful for scenarios where you need to programmatically access or audit the members of a workspace, such as managing permissions, synchronizing user lists, or generating reports on workspace participation.
Practical examples include:
- Fetching all members of a workspace to display in a custom dashboard.
- Automating membership audits by listing workspace members regularly.
- Integrating workspace member data into other systems like CRM or project management tools.
Properties
| Name | Meaning |
|---|---|
| Client ID | The ID of the client whose workspace members you want to list. |
| Workspace ID | The ID of the workspace from which to list members. |
Output
The output JSON contains an array of workspace member objects corresponding to the specified client and workspace IDs. Each object represents a member's details within that workspace. The exact structure depends on the Steuerboard API response but typically includes member identifiers, roles, and status information.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Steuerboard API.
- Needs an API authentication token configured in the node credentials.
- The base URL for the API must be set in the node credentials configuration.
Troubleshooting
- Missing or invalid Client ID or Workspace ID: Ensure both IDs are provided and correctly correspond to existing entities in Steuerboard.
- Authentication errors: Verify that the API key or token is valid and has sufficient permissions to list workspace members.
- Network issues or incorrect base URL: Confirm the base URL is correct and the network allows outbound requests to the Steuerboard API.
- Empty results: If no members are returned, check if the workspace actually has members or if the client/workspace IDs are correct.
Links and References
- Steuerboard API documentation (refer to official API docs for detailed endpoint info)
- n8n documentation on creating and using API credential nodes