Actions43
- Earning Types Actions
- Email Templates Actions
- Employee Types Actions
- Employees Actions
- Entities Actions
- Classes Actions
- Contacts Actions
- Department Groups Actions
- Exchange Rate Lines Actions
- Exchange Rate Types Actions
- Exchange Rates Actions
- Attachment Folders Actions
- Get Next Value Actions
- Location Groups Actions
- Locations Actions
- Roles Actions
- User Groups Actions
- Users Actions
- Affiliate Entity Groups Actions
- Attachments Actions
- Departments Actions
- Document Sequences Actions
Overview
This node is designed to update a company configuration document sequence key within the "Document Sequences" resource of the AvantGuard Sage Intacct system. It allows users to modify specific fields of a document sequence by sending updated data to the API endpoint. This operation is useful in scenarios where companies need to adjust their document numbering sequences or related configurations programmatically, such as updating invoice numbering schemes or other sequential document identifiers.
Practical examples include:
- Changing the ID of a document sequence to align with new company policies.
- Updating additional optional fields related to document sequences dynamically during workflow automation.
Properties
| Name | Meaning |
|---|---|
| Additional Body Fields | Optional fields to include in the request body when updating the document sequence. The only explicitly defined field is: Id (string), which represents the identifier of the document sequence to update. Users can add this and potentially other fields as needed. |
Output
The node outputs JSON data representing the response from the API after attempting to update the document sequence key. This typically includes confirmation of the update, the updated document sequence details, or error information if the update failed.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the AvantGuard Sage Intacct API.
- The base URL for the API is configured via credentials.
- Uses the
@avantguardllc/n8n-openapi-nodepackage and an OpenAPI specification (openapi.json) bundled with the node for request building and validation.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing an incorrect or non-existent document sequence ID may result in errors or no updates applied.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Authentication errors typically indicate invalid or missing API keys; verify credentials.
- Validation errors may occur if required fields are missing or incorrectly formatted; ensure the
Idand any additional fields conform to expected types. - API errors returned from the server should be reviewed for specific causes, such as permission issues or invalid parameters.
Links and References
- AvantGuard Sage Intacct API Documentation (example placeholder link)
- n8n Documentation on Creating Custom Nodes