Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation retrieves all team records associated with a specific account. It is useful when you need to list or manage the teams that belong to an account, for example, to display team members, audit team assignments, or synchronize team data with other systems.

Practical examples include:

  • Fetching all teams within a customer account to display in a dashboard.
  • Exporting team information for reporting or compliance purposes.
  • Integrating with other tools that require knowledge of team structures within accounts.

Properties

Name Meaning
Account Id Identifier of the account whose team records you want to list

Output

The output will be a JSON array containing the team records associated with the specified account. Each item in the array represents a team record with its details (such as team name, ID, members, etc., depending on the API response structure).

No binary data output is expected from this operation.

Dependencies

  • Requires an API key credential to authenticate requests to the external service managing accounts and teams.
  • The node expects the base URL and authentication credentials to be configured properly in n8n to connect to the target API.

Troubleshooting

  • Missing or invalid Account Id: Ensure the "Account Id" property is provided and correctly formatted; otherwise, the API call may fail or return no results.
  • Authentication errors: Verify that the API key or authentication token is valid and has sufficient permissions to access account team data.
  • Network or API errors: Check connectivity and API endpoint availability if the node fails to retrieve data.
  • Empty results: If no teams are returned, confirm that the account actually has teams assigned.

Links and References

  • Refer to the external API documentation for detailed information about the account and team endpoints.
  • Consult n8n documentation on how to configure API credentials and handle HTTP request nodes for similar integrations.

Discussion