UserBroadWorksReceptionistEnterpriseGetRequest
Bases: OCIRequest
Request the monitored users list for the BroadWorks Receptionist - Enterprise service. The response is either a UserBroadWorksReceptionistEnterpriseGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserBroadWorksReceptionistEnterpriseGetRequest. Returns a 12 column table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Group Id", "Phone Number", "Extension", "Mobile", "Email Address", "Department", "IMP Id", "Title", "Receptionist Note". The Receptionist Note column is only populated, if the user sending the request is the owner of the Receptionist Note and a Note exists.
Attributes:
monitored_user_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserBroadWorksReceptionistEnterpriseGetRequest
client = Client()
command = UserBroadWorksReceptionistEnterpriseGetRequest(
user_id=...,
)
response = client.command(command)
print(response)