GroupCallPickupGetInstanceRequest
Bases: OCIRequest
Gets a Call Pickup group. The response is either GroupCallPickupGetInstanceResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallPickupGetInstanceRequest. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address".
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 GroupCallPickupGetInstanceRequest
client = Client()
command = GroupCallPickupGetInstanceRequest(
service_provider_id=...,
group_id=...,
name=...,
)
response = client.command(command)
print(response)