Actions42
- Incident Actions
- Change Actions
- Custom Business Object Actions
- Employee Actions
- Event Actions
- Task Actions
Overview
This node allows you to delete an Employee record in the Ivanti system by specifying the unique Record ID of the employee. It is useful for automating user management tasks, such as removing users who have left the organization or cleaning up test data. For example, you could use this node in a workflow that automatically deletes employees based on HR triggers or after offboarding processes.
Properties
| Name | Meaning |
|---|---|
| Record ID | RecId value of the employee (user) in Ivanti. This is required to identify which employee record to delete. |
Output
The node outputs a JSON object with the following structure:
{
"Result": "Success"
}
- Result: Indicates the outcome of the operation. If the deletion is successful, it will return
"Success".
Dependencies
- External Service: Requires access to the Ivanti API.
- Credentials: You must configure n8n with valid Ivanti API credentials (
IvantiApi), including thebaseUrl. - n8n Configuration: No additional configuration is needed beyond setting up the credentials.
Troubleshooting
- Missing or Invalid Record ID: If the "Record ID" is missing or incorrect, the node may fail to find and delete the specified employee, resulting in an error from the Ivanti API.
- Authentication Errors: If the provided Ivanti API credentials are invalid or expired, authentication errors will occur.
- Network Issues: Connectivity problems between n8n and the Ivanti API endpoint can cause failures.
- Common Error Messages:
- "404 Not Found": The specified Record ID does not exist.
- "401 Unauthorized": Invalid or missing API credentials.
- "400 Bad Request": Malformed request, possibly due to an invalid Record ID format.