UserMWIDeliveryToMobileEndpointGetRequest23
Bases: OCIRequest
Request the user level data associated with MWI Delivery to Mobile Endpoint service. The response is either a UserMWIDeliveryToMobileEndpointGetResponse23 or an ErrorResponse.
The following elements are only used in AS data mode:
sendMissedCallAlert
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserMWIDeliveryToMobileEndpointGetRequest23.
Attributes:
is_active (bool):
mobile_phone_number (Optional[str]):
send_missed_call_alert (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserMWIDeliveryToMobileEndpointGetRequest23
client = Client()
command = UserMWIDeliveryToMobileEndpointGetRequest23(
user_id=...,
)
response = client.command(command)
print(response)