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, allowing users to interact programmatically with entitlement data managed by Nalpeiron. Specifically, for the Entitlement resource and the Get Entitlement Notes operation, this node fetches notes associated with a particular entitlement. This is useful in scenarios where you need to retrieve detailed annotations or comments linked to software licenses or entitlements for auditing, support, or management purposes.
Practical examples include:
- Retrieving all notes attached to a specific software license entitlement to review its history.
- Accessing a particular note by its ID to display or process detailed information about that note.
Properties
| Name | Meaning |
|---|---|
| Entitlement ID | The unique identifier of the entitlement whose notes you want to retrieve. |
| Note ID | The unique identifier of a specific note related to the entitlement (used when fetching a single note). |
Output
The node outputs JSON data representing the entitlement notes retrieved from the Nalpeiron Zentitle2 API. The structure typically includes details such as note content, creation date, author, and any metadata associated with each note. If multiple notes are fetched, the output will be an array of such note objects.
If binary data were involved (e.g., attachments), it would be included in a separate binary property, but based on the provided code and properties, this node focuses on JSON note data only.
Dependencies
- Requires an active connection to the Nalpeiron Zentitle2 API.
- Needs an API authentication token credential configured in n8n (referred generically as an API key credential).
- Requires tenant identification via a tenant ID header, which must be set in the credentials.
- The base URL defaults to
https://api.nalpeiron.comunless overridden in credentials.
Troubleshooting
- Missing or invalid Entitlement ID or Note ID: Ensure these IDs are correctly provided; otherwise, the API will return errors indicating missing or invalid identifiers.
- Authentication errors: Verify that the API key credential and tenant ID are correctly configured and have sufficient permissions.
- Network issues or incorrect base URL: Confirm network connectivity and that the base URL is correct if customized.
- API rate limits or quota exceeded: If requests fail due to rate limiting, consider implementing retry logic or contacting Nalpeiron support.
Common error messages might include:
- Unauthorized access due to invalid credentials.
- Not found errors if the entitlement or note ID does not exist.
- Bad request errors if required parameters are missing or malformed.
Resolving these usually involves verifying input parameters, credentials, and API endpoint configurations.
Links and References
- Nalpeiron Zentitle2 API Documentation (generic link, replace with actual if available)
- n8n documentation on creating custom nodes