SystemServicePhoneNumberLookupRequest
Bases: OCIRequest
Lookup if the given number is defined in the specified service in the system. The response is SystemServicePhoneNumberLookupResponse.
Attributes:
service_type (str):
phone_number (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemServicePhoneNumberLookupRequest. The column headings for the userTable are: "Service Provider Id", "Is Enterprise", "Group Id", "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number" and "Extension".
Attributes:
user_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemServicePhoneNumberLookupRequest
client = Client()
command = SystemServicePhoneNumberLookupRequest(
service_type=...,
phone_number=...,
)
response = client.command(command)
print(response)