MeetingRecordingsService
A list of all methods in the MeetingRecordingsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
get_account_recordings | Returns all account recordings. This endpoint is used in Admin recording service, not regular web |
get_extension_recordings | Returns 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
Name | Type | Required | Description |
---|---|---|---|
account_id | str | ✅ | Internal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used) |
page_token | str | ❌ | Token to get the next page |
per_page | int | ❌ | Number 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
Name | Type | Required | Description |
---|---|---|---|
account_id | str | ✅ | Internal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used) |
extension_id | str | ✅ | Internal identifier of the RingCentral extension/user (can be set to "~" to indicate that the extension associated with current authorization session should be used) |
page_token | str | ❌ | Token to get the next page |
per_page | int | ❌ | Number 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