Actions43
- Location Groups Actions
- Locations Actions
- Roles Actions
- User Groups Actions
- Users Actions
- Affiliate Entity Groups Actions
- Attachments Actions
- Classes Actions
- Contacts Actions
- Department Groups Actions
- Departments Actions
- Document Sequences Actions
- Earning Types Actions
- Email Templates Actions
- Employee Types Actions
- Employees Actions
- Entities Actions
- Exchange Rate Lines Actions
- Exchange Rate Types Actions
- Exchange Rates Actions
- Attachment Folders Actions
- Get Next Value Actions
Overview
This node interacts with the AvantGuard Sage Intacct Company Configuration API, specifically allowing users to update a company configuration entity key. It is useful in scenarios where you need to programmatically modify configuration settings related to entities within a Sage Intacct environment. For example, updating specific company configuration parameters or keys without manually accessing the Sage Intacct interface.
Properties
| Name | Meaning |
|---|---|
| Additional Body Fields | Optional additional fields to include in the request body when updating the entity key. Currently supports: Id (string) which identifies the specific entity key to update. |
Output
The node outputs JSON data representing the response from the API after attempting to update the company configuration entity key. This typically includes confirmation of the update or details about the updated entity key. The output does not explicitly handle binary data.
Dependencies
- Requires an API key credential for authenticating with the AvantGuard Sage Intacct API.
- Needs the base URL for the API, provided via credentials.
- Depends on the
@avantguardllc/n8n-openapi-nodepackage and an OpenAPI specification (openapi.json) bundled with the node for request building and execution.
Troubleshooting
- Authentication errors: Ensure that the API key credential is correctly configured and has sufficient permissions to update company configurations.
- Invalid or missing Id: If the
Idfield in Additional Body Fields is incorrect or omitted, the API may reject the request or fail to identify the entity key to update. - Network issues: Verify connectivity to the specified base URL and that the endpoint
/ia/api/v1is accessible. - Unexpected API responses: Check that the API version and endpoint paths have not changed; update the node or OpenAPI spec accordingly if needed.
Links and References
- AvantGuard Sage Intacct API Documentation (example placeholder link)
- n8n Documentation - Creating Custom Nodes