SystemRouteListEnterpriseTrunkNumberPrefixGetSummaryListRequest
Bases: OCIRequest
Request a summary table of all enterprise trunk prefixes in the system. If resellerId is specified, only the prefixes assigned to the enterprise/service provider within the given reseller are returned. If reseller administrator sends the request and resellerId is not specified, the administrator's resellerId is used.
The response is either SystemRouteListEnterpriseTrunkNumberPrefixGetSummaryListResponse or ErrorResponse.
Attributes:
reseller_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRouteListEnterpriseTrunkNumberPrefixGetSummaryListRequest. The column headings are "Number Prefix", "Service Provider Id", "Is Enterprise", "User Id", "Enterprise Trunk", "Is Active", "Reseller Id" ", "Extension Range Start" and "Extension Range End".
Attributes:
prefix_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 SystemRouteListEnterpriseTrunkNumberPrefixGetSummaryListRequest
client = Client()
command = SystemRouteListEnterpriseTrunkNumberPrefixGetSummaryListRequest(
reseller_id=...,
)
response = client.command(command)
print(response)