コード例 #1
0
 /// <summary>
 /// Operation: Get Account Meeting Recordings List
 /// Http Get /restapi/v1.0/account/{accountId}/meeting-recordings
 /// </summary>
 public async Task <RingCentral.ListMeetingRecordingsResponse> Get(
     ListAccountMeetingRecordingsParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.ListMeetingRecordingsResponse>(this.Path(), queryParams));
 }
コード例 #2
0
ファイル: Index.cs プロジェクト: ringcentral/RingCentral.Net
 /// <summary>
 ///     Returns the list of meeting recordings for the current account.
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/meeting-recordings
 ///     Rate Limit Group: Medium
 ///     App Permission: Meetings
 ///     User Permission: MeetingsRecordings
 /// </summary>
 public async Task <ListMeetingRecordingsResponse> Get(ListAccountMeetingRecordingsParameters queryParams = null,
                                                       RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Get <ListMeetingRecordingsResponse>(Path(), queryParams, restRequestConfig));
 }