UserCallPickupGetRequest
Bases: OCIRequest
Gets the details of the Call Pickup group that a user belongs to (if any). Any user can only belong to one Call Pickup group. The response is either UserCallPickupGetResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallPickupGetRequest. Identifies which Call Pickup group the user belongs to and the list of users in the group. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Department", "Phone Number", "Extension", "Email Address".
Attributes:
name (Optional[str]):
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 UserCallPickupGetRequest
client = Client()
command = UserCallPickupGetRequest(
user_id=...,
)
response = client.command(command)
print(response)