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 telecom data management. Specifically, for the "CRUD PLMN" resource and the "Find All PLMN By Operator Id" operation, it retrieves all Public Land Mobile Network (PLMN) entries associated with a given operator ID. This is useful in scenarios where you need to query and manage mobile network information linked to specific operators, such as in telecom analytics, network planning, or subscriber management.

Practical examples:

  • Fetching all PLMNs for an operator to analyze network coverage.
  • Integrating with backend systems to synchronize operator-related network data.
  • Automating reports on available PLMNs per operator for regulatory compliance.

Properties

Name Meaning
Operator Id The unique identifier of the operator whose PLMN records you want to retrieve.
Search Dto Optional search parameters to control pagination and sorting:
- Page: The page number of results to fetch (starting from 0).
- Page Size: Number of items per page.
- Order By: Field name to sort the results by.
- Order Type: Sorting direction, e.g., ascending or descending.

Output

The node outputs JSON data containing the list of PLMN records associated with the specified operator ID. The structure typically includes details about each PLMN entry such as identifiers, names, and other relevant attributes defined by the Summa API.

If binary data were involved, it would be summarized here, but this operation focuses on JSON data retrieval.

Dependencies

  • Requires an active connection to the Summa API via an API key credential.
  • The node depends on the summaApi credential configured in n8n for authentication.
  • Uses internal helper classes for HTTP requests, state management, and operation resolution.

Troubleshooting

  • Missing or invalid Operator Id: Ensure the "Operator Id" property is provided and correctly formatted; otherwise, the API call will fail.
  • Authentication errors: Verify that the API key credential is valid and has necessary permissions.
  • Pagination issues: If no results are returned, check the "Page" and "Page Size" values to ensure they are within valid ranges.
  • API connectivity problems: Network issues or incorrect endpoint configuration can cause request failures; verify connectivity and credentials.
  • Unexpected response format: If the output JSON does not match expectations, confirm that the Summa API version matches the node's supported version.

Links and References

Discussion