Skip to main content

MeetingRecordingsService

A list of all methods in the MeetingRecordingsService service. Click on the method name to view detailed information about that method.

MethodsDescription
get_account_recordingsReturns all account recordings. This endpoint is used in Admin recording service, not regular web
get_extension_recordingsReturns all recordings available for specific extension. This endpoint is used in admin recording service, not regular web

get_account_recordings

Returns all account recordings. This endpoint is used in Admin recording service, not regular web

  • HTTP Method: GET
  • Endpoint: /rcvideo/v1/account/{accountId}/recordings

Parameters

NameTypeRequiredDescription
account_idstrInternal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used)
page_tokenstrToken to get the next page
per_pageintNumber of records returned

Return Type

CloudRecordings

Example Usage Code Snippet

from ring_central import RingCentral, Environment

sdk = RingCentral(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value
)

result = sdk.meeting_recordings.get_account_recordings(
account_id="~",
page_token="pageToken",
per_page=1
)

print(result)

get_extension_recordings

Returns all recordings available for specific extension. This endpoint is used in admin recording service, not regular web

  • HTTP Method: GET
  • Endpoint: /rcvideo/v1/account/{accountId}/extension/{extensionId}/recordings

Parameters

NameTypeRequiredDescription
account_idstrInternal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used)
extension_idstrInternal identifier of the RingCentral extension/user (can be set to "~" to indicate that the extension associated with current authorization session should be used)
page_tokenstrToken to get the next page
per_pageintNumber of records returned

Return Type

CloudRecordings

Example Usage Code Snippet

from ring_central import RingCentral, Environment

sdk = RingCentral(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value
)

result = sdk.meeting_recordings.get_extension_recordings(
account_id="~",
extension_id="~",
page_token="pageToken",
per_page=3
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →