AvantGuard - NinjaOne icon

AvantGuard - NinjaOne

AvantGuard - NinjaOne

Actions159

Overview

This node integrates with the AvantGuard NinjaOne API to manage checklist templates. Specifically, the "Delete Checklist Template" operation allows users to remove a checklist template by its unique identifier. This is useful in scenarios where outdated or irrelevant checklist templates need to be cleaned up from the system to maintain organization and relevance.

Practical examples include:

  • Automating the removal of deprecated checklist templates as part of a maintenance workflow.
  • Cleaning up templates that are no longer applicable after process changes.

Properties

Name Meaning
Checklist Template Id The unique numeric identifier of the checklist template to delete. This property is required.

Output

The node outputs JSON data representing the response from the API after attempting to delete the checklist template. Typically, this will include confirmation of deletion or error details if the operation failed.

If the API supports it, the output may also contain metadata about the deleted template or status messages. There is no indication that binary data is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating with the AvantGuard NinjaOne service.
  • The node uses the base URL provided in the credentials to send HTTP requests.
  • The node depends on the @avantguardllc/n8n-openapi-node package and the OpenAPI specification defined in openapi.json for request construction.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent checklist template ID will likely result in an error response from the API.
    • Missing or incorrect API authentication credentials will cause authorization failures.
    • Network connectivity problems can prevent the node from reaching the API endpoint.
  • Error messages:

    • Errors related to "not found" typically indicate the checklist template ID does not exist.
    • Authentication errors suggest issues with the API key or credential configuration.
    • Timeout or connection errors imply network or endpoint availability problems.

To resolve these:

  • Verify the checklist template ID is correct and exists.
  • Ensure the API key credential is properly configured and has necessary permissions.
  • Check network connectivity and API endpoint accessibility.

Links and References

Discussion