Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node updates an existing expense record in an external system. It is useful when you need to modify details of a previously created expense, such as correcting information or adding additional references. For example, you might update the expense to link it with new external documents or adjust its associated account.

Properties

Name Meaning
Account Id Identifier of the account to which the expense belongs.
Expense Id Identifier of the specific expense record that you want to update.
External Links An array of links to external system records related to the expense (in JSON format).

Output

The node outputs JSON data representing the updated expense record after the operation completes. This typically includes the updated fields and any metadata returned by the external system confirming the update. The output does not include binary data.

Dependencies

  • Requires an API key credential for authenticating requests to the external service.
  • The node uses a base URL configured in the credentials to send HTTP requests.
  • The node depends on an OpenAPI specification internally to define operations and properties.

Troubleshooting

  • Missing required fields: Ensure both "Account Id" and "Expense Id" are provided; otherwise, the update will fail.
  • Invalid JSON in External Links: The "External Links" property expects valid JSON. Malformed JSON will cause errors.
  • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
  • Network issues: Check connectivity to the external API endpoint configured in the credentials.

Links and References

  • Refer to the external system's API documentation for details on expense resource structure and update semantics.
  • n8n documentation on using JSON input fields and configuring API credentials.

Discussion