UserSharedCallAppearanceGetEndpointRequest22
Bases: OCIRequest
Get the user's Shared Call Appearance endpoint setting. The response is either a UserSharedCallAppearanceGetEndpointResponse22 or an ErrorResponse.
Attributes:
user_id (str):
access_device_endpoint (AccessDeviceEndpointKey):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSharedCallAppearanceGetEndpointRequest.
The following elements are only used in AS data mode and not returned in XS data mode:
hotlineContact
The following elements are only used in AS data mode and a value false is returned in the XS mode:
useHotline
Attributes:
is_active (bool):
allow_origination (bool):
allow_termination (bool):
use_hotline (bool):
hotline_contact (Optional[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 UserSharedCallAppearanceGetEndpointRequest22
client = Client()
command = UserSharedCallAppearanceGetEndpointRequest22(
user_id=...,
access_device_endpoint=...,
)
response = client.command(command)
print(response)