GroupAutoAttendantGetInstanceListRequest
Bases: OCIRequest
Get a list of Auto Attendant instances within a group. The response is either GroupAutoAttendantGetInstanceListResponse or ErrorResponse. It is possible to get the instances within a specified department.
Attributes:
service_provider_id (str):
group_id (str):
group_department_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupAutoAttendantGetInstanceListRequest. Contains a table with column headings: "Service User Id", "Name", "Video", "Phone Number", "Extension", "Department", "Is Active", "Type". The column values for "Video" and "Is Active" can either be true, or false. The column values for "Type" can either be Basic or Standard.
In XS Mode the value for the "Type" column will always be populated with Basic.
Attributes:
auto_attendant_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 GroupAutoAttendantGetInstanceListRequest
client = Client()
command = GroupAutoAttendantGetInstanceListRequest(
service_provider_id=...,
group_id=...,
group_department_name=...,
)
response = client.command(command)
print(response)