Actions42
- Incident Actions
- Change Actions
- Custom Business Object Actions
- Employee Actions
- Event Actions
- Task Actions
Overview
This node allows you to interact with the Ivanti API, specifically targeting custom business objects. The "Delete" operation enables users to remove a specific record from a custom business object in Ivanti by specifying its name and the record's unique identifier. This is useful for automating data cleanup, managing records, or integrating Ivanti with other systems where automated deletion of custom object records is required.
Example scenarios:
- Automatically deleting obsolete or duplicate records from a custom business object.
- Integrating with external systems to synchronize deletions based on business rules.
- Cleaning up test data after workflow runs.
Properties
| Name | Meaning |
|---|---|
| Business Object Name | The name (ID) of the custom business object in Ivanti from which you want to delete a record. |
| Record ID | The unique identifier (RecId) of the record to be deleted within the specified business object. |
Output
The output will be a JSON object with a single key:
{
"Result": "Success"
}
This indicates that the deletion operation was successful.
Dependencies
- External Service: Requires access to the Ivanti API.
- API Credentials: You must configure the
IvantiApicredential in n8n, including thebaseUrl. - n8n Configuration: No additional environment variables are required, but SSL certificate validation is skipped by default.
Troubleshooting
Common Issues:
- Invalid Business Object Name: If the provided business object name does not exist, the API may return an error indicating the resource was not found.
- Incorrect Record ID: If the Record ID does not correspond to an existing record, the deletion will fail.
- Authentication Errors: Missing or incorrect API credentials will result in authentication failures.
Error Messages and Resolutions:
- Resource Not Found: Ensure the "Business Object Name" and "Record ID" are correct and exist in Ivanti.
- Unauthorized/Forbidden: Check your Ivanti API credentials in n8n.
- Connection Errors: Verify the base URL and network connectivity to the Ivanti instance.