Ivanti icon

Ivanti

Interact with Ivanti API

Overview

This node allows you to retrieve a specific record from a Custom Business Object in the Ivanti platform using its Record ID. It is useful when you need to fetch detailed information about a particular custom object instance, such as for data synchronization, reporting, or workflow automation within n8n.

Example scenarios:

  • Fetching customer-specific configuration stored in a custom object.
  • Retrieving audit logs or custom records for further processing.
  • Integrating Ivanti custom data with other systems via n8n workflows.

Properties

Name Meaning
Business Object Name The name of the custom business object in Ivanti from which you want to retrieve a record.
Record ID The unique RecId value of the custom object record you wish to fetch from Ivanti.
Query Parameters Additional OData query parameters to refine your request.
└ Select Fields (Within Query Parameters) Comma-separated list of fields to include in the response (e.g., RecId, CreatedDateTime, LastModDateTime).

Output

The output will be a JSON object representing the requested custom business object record. The structure of this object depends on the fields selected and the schema of the custom business object in Ivanti. Typical fields may include identifiers, timestamps, and any custom attributes defined in the business object.

Example output:

{
  "RecId": "12345",
  "CreatedDateTime": "2023-01-01T12:00:00Z",
  "LastModDateTime": "2023-02-01T15:30:00Z",
  "...": "..."
}

Note: The actual fields depend on your selection and the business object definition.

Dependencies

  • Ivanti API: Requires access to the Ivanti API endpoint.
  • Credentials: You must configure an n8n credential named IvantiApi with at least the baseUrl property set to your Ivanti instance.
  • n8n Configuration: No additional environment variables are required, but SSL certificate validation is skipped by default.

Troubleshooting

  • Invalid Credentials: If credentials are missing or incorrect, you may receive authentication errors. Ensure your IvantiApi credential is properly configured.
  • Record Not Found: If the provided Record ID does not exist, the node may return an empty result or a 404 error.
  • Field Selection Errors: If you specify invalid field names in "Select Fields," the API may return an error indicating unknown properties.
  • Connection Issues: Network problems or incorrect base URL can lead to connection failures.

Links and References

Discussion