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 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-nodepackage 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.