UserGroupPagingGetListRequest
Bases: OCIRequest
Get the list of all the Paging Groups a user was assigned as an originator. The response is either a UserGroupPagingGetListResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserGroupPagingGetListRequest. The groupPagingTable contains columns: "Name", "Phone Number", "Extension" and "Is Active" The column value for "Is Active" can either be true, or false.
Attributes:
paging_group_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserGroupPagingGetListRequest
client = Client()
command = UserGroupPagingGetListRequest(
user_id=...,
)
response = client.command(command)
print(response)