Actions42
- Incident Actions
- Change Actions
- Custom Business Object Actions
- Employee Actions
- Event Actions
- Task Actions
Overview
This node allows you to delete a Task record in the Ivanti system by specifying its unique Record ID. It is useful for automating the removal of tasks that are no longer needed or were created in error. For example, you might use this node in workflows that clean up completed or obsolete tasks, or as part of an automated process triggered by certain business rules.
Properties
| Name | Meaning |
|---|---|
| Record ID | RecId value of the task in Ivanti. This is required and uniquely identifies the Task to delete. |
Output
The output will be a JSON object with the following structure:
{
"Result": "Success"
}
- Result: Indicates the outcome of the operation. If the deletion was successful, it will return
"Success".
Dependencies
- External Service: Requires access to the Ivanti API.
- Credentials: You must configure the
IvantiApicredential in n8n, which should include the base URL and any necessary authentication details. - n8n Configuration: No additional environment variables are specified, but SSL certificate validation is skipped by default.
Troubleshooting
- Missing or Invalid Record ID: If the provided Record ID does not exist or is invalid, the node may return an error from the Ivanti API indicating that the resource could not be found.
- Authentication Errors: If your credentials are incorrect or missing, you may receive authentication or authorization errors.
- Network Issues: Connectivity problems between n8n and the Ivanti API endpoint can cause failures.
- Common Error Messages:
- "Resource not found": Ensure the Record ID is correct and exists in Ivanti.
- "Unauthorized": Check your IvantiApi credentials configuration.
Links and References
- Ivanti API Documentation
- n8n Documentation: Credentials
- n8n Documentation: HTTP Request Node (for general API troubleshooting)