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 updates account codes in an external system via an API. It is useful when you need to modify existing account code details programmatically within an n8n workflow, such as updating financial or organizational data linked to accounts.
Practical examples include:
- Automatically correcting or enriching account code information based on external triggers.
- Synchronizing updated account codes from another system into the target platform.
- Bulk updating account codes by looping over multiple inputs.
Properties
| Name | Meaning |
|---|---|
| Account Id | Identifier of the account whose account code you want to update. |
| Body | JSON object representing the account code data to update, excluding autogenerated fields. |
Output
The node outputs a JSON object representing the updated account code as returned by the API. This typically includes all fields of the account code after the update operation has been applied.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating requests to the external service.
- The base URL for the API must be configured in the node credentials.
- The node uses HTTP requests with JSON payloads to communicate with the API.
Troubleshooting
- Invalid Account Id: If the provided Account Id does not exist or is malformed, the API may return an error. Verify the Account Id before running the node.
- Malformed JSON Body: The "Body" property must be valid JSON without autogenerated fields. Invalid JSON will cause parsing errors.
- Authentication Errors: Ensure that the API key credential is correctly set up and has sufficient permissions.
- API Endpoint Issues: Network problems or incorrect base URL configuration can cause request failures.
Links and References
- Refer to the external API documentation for detailed schema of account codes and update operations.
- Consult n8n documentation on how to configure API key credentials and use JSON input properties.