Actions38
- Attribute Actions
- Customer Actions
- Entitlement Actions
- Feature Actions
- Product Actions
- Local License Server Actions
- Offering Actions
- Plan Actions
Overview
This node, named "Nalpeiron Zentitle2," is designed to interact with the Nalpeiron Zentitle2 API. It provides functionality to manage and retrieve data related to customers, including listing customer-related information such as End User Products (EUP). A typical use case would be automating the retrieval of customer EUP details for software license management or customer account auditing.
For the specific operation List Customer Eup under the Customer resource, the node fetches a list of End User Products associated with a given customer ID. This can be useful in scenarios where you need to programmatically access all products linked to a customer for reporting, billing, or support purposes.
Properties
| Name | Meaning |
|---|---|
| Customer ID | The unique identifier of the customer whose End User Products are to be listed. This is a required string input. |
Output
The output JSON structure will contain the list of End User Products associated with the specified customer. Each item in the list typically includes details about an individual product linked to the customer, such as product identifiers, names, licenses, or usage data depending on the API response.
If the node supports binary data output, it would generally represent attachments or files related to the customer or their products, but this is not explicitly indicated in the provided code snippet.
Dependencies
- Requires an API key credential for authenticating with the Nalpeiron Zentitle2 API.
- The base URL for the API defaults to
https://api.nalpeiron.combut can be overridden via credentials configuration. - The node sends requests with headers including
Accept: application/json,Content-Type: application/json, and a tenant ID header derived from credentials.
Troubleshooting
- Missing or invalid Customer ID: Since the Customer ID is required, omitting it or providing an incorrect value will likely cause the API call to fail. Ensure the Customer ID is valid and correctly formatted.
- Authentication errors: If the API key or tenant ID is missing or invalid, the node will fail to authenticate. Verify that the API credentials are correctly configured.
- API endpoint issues: Network problems or changes in the API endpoint could cause request failures. Confirm the base URL and network connectivity.
- Unexpected API responses: If the API returns errors or unexpected data structures, check the API documentation and ensure the node's version is compatible with the current API.
Links and References
- Nalpeiron Zentitle API Documentation (general reference for API endpoints and authentication)
- n8n Documentation on Creating Custom Nodes