GroupCallPickupGetInstancePagedSortedListRequest
Bases: OCIRequest
Request to get a list of Call Pickup instances within a group.
If the responsePagingControl element is not provided, the paging startIndex will be set to 1
by default, and the responsePageSize will be set to the maximum ResponsePageSize by default.
It is possible to search by various criteria to restrict the number of rows returned.
Multiple search criteria are logically ANDed together unless the searchCriteriaModeOr option is included.
Then the search criteria are logically ORed together.
The response is either GroupCallPickupGetInstancePagedSortedListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
response_paging_control (Optional[ResponsePagingControl]):
sort_by_call_pickup_name (Optional[SortByCallPickupName]):
search_criteria_call_pickup_name (Optional[List[SearchCriteriaCallPickupName]]):
search_criteria_mode_or (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallPickupGetInstancePagedSortedListRequest.
Attributes:
name (Optional[List[str]]):
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 GroupCallPickupGetInstancePagedSortedListRequest
client = Client()
command = GroupCallPickupGetInstancePagedSortedListRequest(
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_by_call_pickup_name=...,
search_criteria_call_pickup_name=...,
search_criteria_mode_or=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupCallPickupGetInstancePagedSortedListRequest",
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_by_call_pickup_name=...,
search_criteria_call_pickup_name=...,
search_criteria_mode_or=...,
)
print(response)