SystemMaliciousCallTraceGetRequest
Bases: OCIRequest
Get Malicious Call Trace system parameters and the list of users that use the Malicious Call Trace feature. The response is either a SystemMaliciousCallTraceGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemMaliciousCallTraceGetRequest. The response contains the Malicious Call Trace system parameters and the list of users that use the Malicious Call Trace feature.
The column headings are "Service Provider Id",
"Group Id", "User Id", "Last Name", "First Name", "Phone Number", "Trace Type", "Status",
"Hiragana Last Name" and "Hiragana First Name", "Extension", "Department", "Email Address".
Attributes:
play_mct_warning_announcement (bool):
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 SystemMaliciousCallTraceGetRequest
client = Client()
command = SystemMaliciousCallTraceGetRequest()
response = client.command(command)
print(response)