Kennis Flux icon

Kennis Flux

Interact with IT Service Management and Asset Tracking Systems

Overview

This node interacts with the Kennis Flux IT Service Management and Asset Tracking system via its API. Specifically, for the Computer resource with the Delete operation, it deletes a computer record identified by its ID within a specified GLPI category. This is useful for automating asset management tasks such as removing outdated or decommissioned computers from the system.

Use Case Examples

  1. Deleting a computer asset by its ID in the 'Assets' category to keep the inventory up to date.
  2. Removing a computer record from the 'Assistance' category when it is no longer supported or in use.

Properties

Name Meaning
Category The GLPI category to work with, such as Assets, Assistance, Administration, Management, or Dropdowns.
ID The ID of the computer record to delete. This is required for the delete operation.
Options.Accept-Language The language for localized content returned by the API.
Options.GLPI-Entity The entity ID to use for this request, allowing scoped operations within GLPI.
Options.GLPI-Entity-Recursive Whether to apply the entity scope recursively in the request.

Output

JSON

  • json - The JSON response from the GLPI API after attempting to delete the computer record. This may include success confirmation or error details.

Dependencies

  • Requires an OAuth2 API credential for GLPI with client ID, client secret, username, and password to authenticate and obtain an access token.

Troubleshooting

  • Common issues include invalid or missing ID parameter, resulting in failure to identify the record to delete.
  • Authentication errors if OAuth2 credentials are incorrect or expired, causing token request failure.
  • Invalid JSON in additional fields if used in other operations, though not applicable for delete.
  • API errors if the specified record does not exist or user lacks permission to delete it.

Discussion