Actions38
- Attribute Actions
- Customer Actions
- Entitlement Actions
- Feature Actions
- Product Actions
- Local License Server Actions
- Offering Actions
- Plan Actions
Overview
The node "Nalpeiron Zentitle2" provides integration with the Nalpeiron Zentitle2 API, enabling users to interact programmatically with Nalpeiron's entitlement management system. Specifically, the "Get Entitlement" operation retrieves detailed information about a particular entitlement by its unique identifier.
This node is beneficial in scenarios where software license or entitlement data needs to be fetched automatically within workflows, such as verifying license status before granting access, auditing entitlements, or synchronizing entitlement data with other systems.
For example, a workflow could use this node to fetch an entitlement's details when a user requests support, allowing the support team to quickly verify license validity and associated metadata.
Properties
| Name | Meaning |
|---|---|
| Entitlement ID | The unique identifier of the entitlement to retrieve. This is a required string input. |
Output
The node outputs JSON data representing the entitlement details retrieved from the Nalpeiron Zentitle2 API. The structure typically includes all relevant fields describing the entitlement, such as its ID, status, associated product/license information, activation counts, expiration dates, and any other metadata provided by the API.
If the API supports binary data related to entitlements (e.g., license files), the node would handle it accordingly, but based on the provided code and properties, the primary output is JSON-formatted entitlement information.
Dependencies
- Requires an active connection to the Nalpeiron Zentitle2 API.
- Needs an API authentication token or key configured via node credentials (referred generically as "an API key credential").
- The base URL for the API can be customized via credentials; otherwise, it defaults to
https://api.nalpeiron.com. - Requires tenant identification header (
N-TenantId) set from credentials to scope API requests properly.
Troubleshooting
Common Issues:
- Missing or invalid entitlement ID will cause the API call to fail or return no data.
- Incorrect or missing API credentials will result in authentication errors.
- Network connectivity issues may prevent reaching the Nalpeiron API endpoint.
- Tenant ID misconfiguration can lead to authorization failures or empty responses.
Error Messages:
- Authentication errors typically indicate invalid or missing API keys; ensure credentials are correctly set.
- "Entitlement not found" or similar messages suggest the provided entitlement ID does not exist or is incorrect.
- HTTP 4xx or 5xx errors indicate client or server issues; verify request parameters and API service status.
Links and References
- Nalpeiron Zentitle2 API Documentation (general reference for API endpoints and data structures)
- n8n documentation on creating custom nodes for further customization guidance