UserMeetMeConferencingGetConferenceRecordingListRequest
Bases: OCIRequest
Get the list of recordings of the conferences owned by the host. The response is either UserMeetMeConferencingGetConferenceRecordingListResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserMeetMeConferencingGetConferenceRecordingListRequest. Contains a table with column headings: "Bridge Id", "Conference Id", "Conference Title", "Bridge Name", "Start Time", "File Size", and "URL". Start Time is in the format "yyyy-MM-dd'T'HH:mm:ss:SSSZ". Example: 2010-10-01T09:30:00:000-0400.
Attributes:
conference_recording_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserMeetMeConferencingGetConferenceRecordingListRequest
client = Client()
command = UserMeetMeConferencingGetConferenceRecordingListRequest(
user_id=...,
)
response = client.command(command)
print(response)