HAP icon

HAP

Interact with HAP (Hyper Application Platform) API

Overview

This node interacts with the Hyper Application Platform (HAP) API to manage Option Sets. Specifically, the Delete operation for the Option Set resource allows users to remove an existing option set by its ID. This is useful in scenarios where outdated or unused option sets need to be cleaned up from the system to maintain data integrity and reduce clutter.

Practical examples include:

  • Automating cleanup of deprecated option sets during application maintenance.
  • Removing test or temporary option sets created during development.
  • Managing option sets dynamically based on business rules or workflows.

Properties

Name Meaning
OptionSet ID The ID of the option set to delete

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide details if it failed. The exact structure depends on the HAP API response but generally includes status information.

No binary data output is expected for this operation.

Dependencies

  • Requires an API key credential for authenticating with the HAP API.
  • The node expects the HAP API endpoint to be accessible and properly configured.
  • No additional external dependencies beyond the HAP API and its authentication are required.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent OptionSet ID will likely cause the API to return an error indicating the resource was not found.
    • Authentication failures due to missing or incorrect API credentials.
    • Network connectivity issues preventing access to the HAP API.
  • Error messages and resolutions:

    • "Option set not found": Verify that the OptionSet ID is correct and exists in the system.
    • "Unauthorized" or "Authentication failed": Check that the API key credential is correctly configured and valid.
    • Timeout or network errors: Ensure the HAP API service is reachable from your environment.

Links and References

Discussion