UserBroadWorksReceptionistSmallBusinessGetRequest
Bases: OCIRequest
Request the Receptionist Small Business parameters. The response is either a UserBroadWorksReceptionistSmallBusinessGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserBroadWorksReceptionistSmallBusinessGetRequest. 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".
Attributes:
monitored_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 UserBroadWorksReceptionistSmallBusinessGetRequest
client = Client()
command = UserBroadWorksReceptionistSmallBusinessGetRequest(
user_id=...,
)
response = client.command(command)
print(response)