Summa icon

Summa

Consume Summa API (v.0.1.7)

Actions182

Overview

This node integrates with the Summa API to manage WLAN subscriptions, specifically allowing the removal of an APN (Access Point Name) from a WLAN subscription. It is useful in scenarios where network administrators or automation workflows need to update subscriber profiles by detaching certain APNs from their WLAN service configurations. For example, if a subscriber should no longer have access to a particular APN due to policy changes or service updates, this node can automate that removal process.

Properties

Name Meaning
Imsi The International Mobile Subscriber Identity (IMSI) uniquely identifying the subscriber whose WLAN subscription will be modified. This is required to specify which subscriber's data to operate on.
Apn The Access Point Name (APN) to be removed from the specified WLAN subscription. This identifies the specific APN entry to delete.

Output

The node outputs JSON data representing the result of the remove APN operation on the WLAN subscription. This typically includes confirmation of success or failure and may contain details about the updated subscription state. The output does not include binary data.

Dependencies

  • Requires connection to the Summa API via an authenticated HTTP client.
  • Needs an API key credential configured in n8n for authenticating requests to the Summa API.
  • Relies on internal helper classes for request handling, state management, and operation execution as part of the bundled code.

Troubleshooting

  • Common issues:
    • Invalid or missing IMSI or APN values will cause the operation to fail.
    • Authentication errors if the API key credential is incorrect or expired.
    • Network connectivity problems preventing communication with the Summa API.
  • Error messages:
    • Authentication failures usually indicate invalid credentials; verify and update the API key.
    • Validation errors related to IMSI or APN suggest checking input correctness and formatting.
    • Timeout or connection errors require checking network access and API endpoint availability.

Links and References

  • Summa API documentation (refer to your organization's API docs for detailed endpoints and parameters)
  • n8n documentation on creating and using API credentials
  • General information on IMSI and APN concepts in mobile networking

Discussion