Actions38
- Attribute Actions
- Customer Actions
- Entitlement Actions
- Feature Actions
- Product Actions
- Local License Server Actions
- Offering Actions
- Plan Actions
Overview
This node integrates with the Nalpeiron Zentitle2 API, specifically designed to manage and retrieve information related to software products and their editions. The "List Product Editions Features" operation fetches the features associated with a specific edition of a product. This is useful in scenarios where you need to programmatically access detailed feature sets tied to different product editions, such as for license management, reporting, or dynamic UI generation based on available features.
Practical examples include:
- Automatically retrieving and displaying feature lists for a selected product edition in a customer portal.
- Synchronizing product edition features with an internal database or CRM system.
- Validating user entitlements by checking which features are enabled in a given product edition.
Properties
| Name | Meaning |
|---|---|
| Product ID | The unique identifier of the product for which you want to list edition features. |
| Edition ID | The unique identifier of the product edition whose features you want to retrieve. |
Output
The node outputs JSON data representing the features associated with the specified product edition. The structure typically includes details about each feature, such as its name, description, status, or any other metadata provided by the Nalpeiron Zentitle2 API.
If the node supports binary data output (not evident from the provided code), it would relate to any downloadable content or attachments linked to the features, but this is not indicated here.
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).
- 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.
Troubleshooting
- Missing or invalid Product ID / Edition ID: Ensure that both identifiers are correctly provided and correspond to existing entities in the Nalpeiron system.
- 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 overridden.
- API rate limits or quota exceeded: Check the API usage limits and adjust request frequency accordingly.
Common error messages will likely originate from the API responses, such as 401 Unauthorized (authentication failure), 404 Not Found (invalid product or edition IDs), or 429 Too Many Requests (rate limiting).
Links and References
- Nalpeiron Zentitle2 API Documentation (generic link, replace with actual if known)
- n8n Documentation on Creating Custom Nodes
- General API Authentication Best Practices