SystemFaxMessagingGetRequest
Bases: OCIRequest
Request the system level data associated with Fax Messaging. The response is either a SystemFaxMessagingGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemFAXMessagingGetRequest.
The following elements are only used in AS data mode:
statusDurationHours
statusAuditIntervalHours
Attributes:
status_duration_hours (int):
status_audit_interval_hours (int):
maximum_concurrent_faxes_per_user (int):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemFaxMessagingGetRequest
client = Client()
command = SystemFaxMessagingGetRequest()
response = client.command(command)
print(response)