GroupServicePhoneNumberLookupRequest
Bases: OCIRequest
Lookup if the given number is defined in the specified service in the group. The response is GroupServicePhoneNumberLookupResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_type (str):
phone_number (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupServicePhoneNumberLookupRequest. The column headings for the userTable are: "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_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupServicePhoneNumberLookupRequest
client = Client()
command = GroupServicePhoneNumberLookupRequest(
service_provider_id=...,
group_id=...,
service_type=...,
phone_number=...,
)
response = client.command(command)
print(response)