Summa icon

Summa

Consume Summa API (v.0.1.7)

Actions182

Overview

This node integrates with the Summa API to perform various operations related to telecommunications data. Specifically, the "Find Subscriber By ICCID" operation under the "Subscriber" resource allows users to retrieve subscriber information by providing an ICCID (Integrated Circuit Card Identifier). This is useful in scenarios where you need to look up detailed subscriber data based on the SIM card identifier, such as verifying subscriber status, managing subscriptions, or troubleshooting SIM-related issues.

Practical examples include:

  • Telecom operators querying subscriber details for a given SIM card.
  • Customer support teams validating subscriber identity during service calls.
  • Automated workflows that update subscriber records based on ICCID input.

Properties

Name Meaning
Icc Id The ICCID (Integrated Circuit Card Identifier) of the subscriber's SIM card to find. This is a required string input.

Output

The node outputs JSON data containing the subscriber details associated with the provided ICCID. The structure typically includes subscriber attributes such as personal information, subscription status, and related telecom data as returned by the Summa API.

If the node supports binary data output, it would represent any associated files or attachments related to the subscriber, but this is not indicated in the provided code snippet.

Dependencies

  • Requires an active connection to the Summa API via an API key credential configured in n8n.
  • Uses internal helper classes for HTTP requests and state management.
  • Depends on the @digital-boss/n8n-designpatterns package for operation resolution and execution patterns.
  • The node expects the Summa API version specified in the bundled code (v.${F.version}).

Troubleshooting

  • Common Issues:

    • Invalid or missing ICCID input will cause the operation to fail; ensure the ICCID is correctly formatted and provided.
    • Authentication errors if the API key credential is incorrect or expired.
    • Network connectivity problems when reaching the Summa API endpoint.
  • Error Messages:

    • Authentication failures typically indicate issues with the API key; verify and update credentials.
    • "Subscriber not found" errors suggest the ICCID does not exist in the system; double-check the ICCID value.
    • Timeout or network errors require checking internet connectivity and API availability.

Links and References

Discussion