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 for auditing, reporting, or integration purposes. For example, you might use this node to get the team name, members, roles, or other attributes before performing further automation or synchronization tasks.

Properties

Name Meaning
Account Id Identifier of the account to which the team belongs. This is required to specify the context of the team.
Team Id Identifier of the specific team whose information you want to retrieve.

Output

The output JSON contains the detailed information of the requested team. This typically includes all available fields describing the team, such as its name, description, members, roles, creation date, and any other metadata provided by the API. The exact structure depends on the external service's response schema.

No binary data output is indicated in the source code.

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to access the external service.
  • The node uses a base URL from credentials to make HTTP requests.
  • Depends on an OpenAPI specification (payhawk.api.json) that defines the API endpoints and operations.
  • Uses the @devlikeapro/n8n-openapi-node package for handling OpenAPI-based operations.

Troubleshooting

  • Missing or invalid Account Id or Team Id: Ensure both identifiers are correctly provided; otherwise, the API call will fail.
  • Authentication errors: Verify that the API key or authentication token is correctly set up in n8n credentials.
  • Network or connectivity issues: Check network access to the API endpoint.
  • Unexpected API responses: Confirm that the API version and endpoint paths have not changed.
  • If the node returns an error related to parsing or missing properties, verify that the input parameters match the expected types and formats.

Links and References

  • Refer to the external API documentation for "Account Teams" and "Get Team Information" endpoints for detailed response schemas and additional query options.
  • n8n documentation on using API key credentials and configuring HTTP request nodes may be helpful.

Discussion