Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation retrieves a specific expense category by its unique identifier within a given account. It is useful in scenarios where you need to fetch detailed information about a particular expense category, for example, to display its details in a dashboard, validate category data before processing transactions, or synchronize category information with other systems.

Practical examples:

  • Fetching the details of an expense category to show its name and description in a financial report.
  • Validating that an expense category exists before assigning expenses to it.
  • Integrating with accounting software to update or verify expense categories.

Properties

Name Meaning
Account Id Identifier of the account to which the expense category belongs.
Category Id Identifier of the specific expense category to retrieve.

Output

The output contains a JSON object representing the expense category identified by the provided Category Id within the specified Account Id. This JSON typically includes fields such as the category's name, description, ID, and possibly metadata related to the category.

If the node supports binary data output (not indicated here), it would represent any associated files or attachments related to the expense category, but this operation primarily returns structured JSON data.

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to access the external service managing expense categories.
  • The node depends on a REST API endpoint that provides expense category data based on account and category identifiers.
  • Proper base URL configuration for the API is necessary, typically set via credentials or environment variables.

Troubleshooting

  • Common issues:

    • Invalid or missing Account Id or Category Id will result in errors or empty responses.
    • Authentication failures due to incorrect or expired API keys.
    • Network connectivity problems preventing access to the external API.
    • The specified category might not exist, leading to "not found" errors.
  • Error messages and resolutions:

    • "Unauthorized" or "Authentication failed": Verify that the API key or authentication token is correctly configured and valid.
    • "Category not found": Confirm that the Category Id is correct and exists under the specified Account Id.
    • "Network error": Check internet connection and API endpoint availability.
    • "Missing required parameters": Ensure both Account Id and Category Id are provided and non-empty.

Links and References

  • Refer to the external API documentation for expense categories to understand the full schema and available fields.
  • n8n documentation on how to configure API credentials and use HTTP request nodes for custom integrations.

Discussion