EnterpriseCallRecordingGetRequest
Bases: OCIRequest
Get the Call Recording attributes for a enterprise. The response is either a EnterpriseCallRecordingGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the EnterpriseCallRecordingGetRequest. The response contains the enterprise's Call Recording attributes.
Attributes:
use_cloud_pbx (bool):
use_enterprise_setting (Optional[bool]):
fqdn (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 EnterpriseCallRecordingGetRequest
client = Client()
command = EnterpriseCallRecordingGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)