GroupCallCapacityManagementGetInstanceRequest
Bases: OCIRequest
Gets a Call Capacity Management group. The response is either GroupCallCapacityManagementGetInstanceResponse 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 GroupCallCapacityManagementGetInstanceRequest. 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:
name (str):
max_active_calls_allowed (int):
max_incoming_active_calls_allowed (Optional[int]):
max_outgoing_active_calls_allowed (Optional[int]):
default_group_for_new_users (bool):
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 GroupCallCapacityManagementGetInstanceRequest
client = Client()
command = GroupCallCapacityManagementGetInstanceRequest(
service_provider_id=...,
group_id=...,
name=...,
)
response = client.command(command)
print(response)