Summa icon

Summa

Consume Summa API (v.0.1.7)

Actions182

Overview

This node integrates with the Summa API to manage LTE subscription data. Specifically, the "Remove APN Address Assignation From LTE Subscription" operation removes a previously assigned Access Point Name (APN) address from an LTE subscription identified by its IMSI (International Mobile Subscriber Identity). This is useful in telecom environments where APN configurations need to be updated or cleared for subscribers.

Practical scenarios include:

  • Decommissioning or reconfiguring subscriber profiles.
  • Correcting misassigned APN addresses.
  • Managing subscriber network access dynamically.

Properties

Name Meaning
Imsi The unique identifier of the LTE subscription (subscriber) from which to remove the APN.
Apn Template The specific APN template/address assignation to be removed from the LTE subscription.

Output

The node outputs JSON data representing the result of the removal operation. This typically includes confirmation of success or failure and any relevant metadata returned by the Summa API about the LTE subscription after the APN removal.

No binary data output is indicated.

Dependencies

  • Requires connection to the Summa API via an API key credential configured in n8n.
  • Uses internal HTTP client and state management classes to handle requests and responses.
  • The node depends on the Summa API version specified in the bundled code (v.${F.version}).

Troubleshooting

  • Common issues:

    • Invalid or missing IMSI or APN template values will cause the operation to fail.
    • Authentication errors if the API key credential is not properly set or expired.
    • Network connectivity problems when reaching the Summa API endpoint.
  • Error messages:

    • Authentication failures: Verify that the API key credential is correctly configured and valid.
    • Validation errors: Ensure that the IMSI and APN template inputs are correct and correspond to existing subscriptions.
    • API response errors: Check the Summa API documentation for error codes related to APN removal.

Links and References

  • Summa API official documentation (refer to your organization's internal or public API docs).
  • n8n documentation on creating and using credentials.
  • Telecom standards for IMSI and APN management.

Discussion