SystemRouteListEnterpriseTrunkNumberRangeGetSummaryListRequest
Bases: OCIRequest
Request a summary table of all enterprise trunk number ranges in the system. If resellerId is specified, the number ranges assigned to the enterprises/service providers within the reseller are returned. If reseller administrator sends the request and resellerId is not specified, the administrator's resellerId is used.
The response is either SystemRouteListEnterpriseTrunkNumberRangeGetSummaryListResponse or ErrorResponse.
Attributes:
reseller_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRouteListEnterpriseTrunkNumberRangeGetSummaryListRequest. The column headings are "Number Range Start", "Number Range End", "Service Provider Id", "Is Enterprise", "User Id", "Enterprise Trunk", "Is Active", "Reseller Id" and "Extension Length".
Attributes:
number_range_summary_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemRouteListEnterpriseTrunkNumberRangeGetSummaryListRequest
client = Client()
command = SystemRouteListEnterpriseTrunkNumberRangeGetSummaryListRequest(
reseller_id=...,
)
response = client.command(command)
print(response)