Actions38
- Attribute Actions
- Customer Actions
- Entitlement Actions
- Feature Actions
- Product Actions
- Local License Server Actions
- Offering Actions
- Plan Actions
Overview
The node "Nalpeiron Zentitle2" is designed to interact with the Nalpeiron Zentitle2 API, a service likely related to software licensing or feature management. Specifically, the "Get Feature" operation under the "Feature" resource retrieves details about a particular feature identified by its unique Feature ID. This node is useful in scenarios where you need to programmatically query feature information from Nalpeiron's system, such as verifying license features, checking feature availability, or integrating feature data into workflows.
Practical examples include:
- Fetching feature details to validate user entitlements before granting access.
- Automating reporting on licensed features usage.
- Integrating feature metadata into other business processes or dashboards.
Properties
| Name | Meaning |
|---|---|
| Feature ID | The unique identifier of the feature to retrieve. This is a required string input. |
Output
The node outputs JSON data representing the details of the requested feature. The exact structure depends on the API response but typically includes fields describing the feature's attributes, status, and any associated metadata.
If the node supports binary data output (not evident from the provided code), it would represent any binary content returned by the API, such as files or encoded data related to the feature.
Dependencies
- Requires an API key credential for authenticating with the Nalpeiron Zentitle2 API.
- Needs configuration of the base URL and tenant ID via credentials or environment variables.
- Depends on internal modules for property definitions and request coordination (
property-registryandnode-coordinator).
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Incorrect Feature ID input may result in "feature not found" errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Authentication errors indicate issues with the provided API key or tenant ID; verify credentials.
- Validation errors suggest missing or malformed input properties; ensure the Feature ID is correctly specified.
- Timeout or connection errors require checking network access and API endpoint availability.
Links and References
- Nalpeiron Zentitle API Documentation (general reference, replace with actual if available)
- n8n documentation on Creating Custom Nodes