ServiceProviderServicePhoneNumberLookupRequest
Bases: OCIRequest
Lookup if the given number is defined in the specified service in the service provider. The response is ServiceProviderServicePhoneNumberLookupResponse.
Attributes:
service_provider_id (str):
service_type (str):
phone_number (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderServicePhoneNumberLookupRequest. The column headings for the userTable are: "Group Id", "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension" and "Department".
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 ServiceProviderServicePhoneNumberLookupRequest
client = Client()
command = ServiceProviderServicePhoneNumberLookupRequest(
service_provider_id=...,
service_type=...,
phone_number=...,
)
response = client.command(command)
print(response)