SystemCallRecordingAddPlatformRequest22
Bases: OCIRequest
Add a Call Recording platform. The first system level call recording platform added is made the system default call recording platform. In AS data mode, The first reseller level call recording platform added for a reseller is made the reseller default call recording platform. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
name (str):
net_address (str):
port (Optional[int]):
media_stream (str):
transport_type (str):
description (Optional[str]):
schema_version (str):
support_video_recording (bool):
reseller_id (Optional[str]):
route (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
81113 81114 81115 81116 81117 81118 81119 81120 81121 81122 81123 81124 81125 81126 81127 81128 81129 81130 81131 81132 81133 81134 81135 81136 81137 81138 81139 81140 81141 81142 81143 81144 81145 81146 81147 81148 81149 81150 81151 81152 81153 81154 81155 81156 81157 81158 81159 81160 81161 81162 81163 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallRecordingAddPlatformRequest22
client = Client()
command = SystemCallRecordingAddPlatformRequest22(
name=...,
net_address=...,
port=...,
media_stream=...,
transport_type=...,
description=...,
schema_version=...,
support_video_recording=...,
reseller_id=...,
route=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCallRecordingAddPlatformRequest22",
name=...,
net_address=...,
port=...,
media_stream=...,
transport_type=...,
description=...,
schema_version=...,
support_video_recording=...,
reseller_id=...,
route=...,
)
print(response)