Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation retrieves detailed information about a specific team within an account. It is useful when you need to fetch metadata or configuration details of a team associated with an account, such as team members, roles, or permissions. Practical examples include automating reporting on team structures, synchronizing team data with other systems, or validating team existence before performing further actions.

Properties

Name Meaning
Account Id Identifier of the account
Team Id Identifier of the team

Both properties are required string inputs that specify which account and which team within that account the node should query.

Output

The output will contain a JSON object representing the team information retrieved from the external service. This typically includes fields such as team name, description, members, roles, and other relevant metadata depending on the API's response schema.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to access the external service.
  • The node uses a base URL provided by credentials to make HTTP requests.
  • The underlying implementation depends on an OpenAPI specification bundled with the node for request construction.

Troubleshooting

  • Missing or invalid Account Id or Team Id: Ensure both identifiers are correctly provided and correspond to existing entities in the external system.
  • Authentication errors: Verify that the API key or authentication token is valid and has sufficient permissions to read team information.
  • Network or connectivity issues: Check network access to the external API endpoint.
  • Unexpected response structure: If the output JSON does not match expectations, confirm that the API version and node version are compatible.

Links and References

  • Refer to the external service’s official API documentation for detailed schema and additional parameters related to team information retrieval.
  • Consult n8n documentation on how to configure API credentials and use custom nodes.

Discussion