Skip to main content

VideoConfigurationService

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

MethodsDescription
read_user_video_configurationReturns information about video configuration settings of the current user.

read_user_video_configuration

Returns information about video configuration settings of the current user.

  • HTTP Method: GET
  • Endpoint: /restapi/v1.0/account/{accountId}/extension/{extensionId}/video-configuration

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)

Return Type

UserVideoConfiguration

Example Usage Code Snippet

from ring_central import RingCentral, Environment

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

result = sdk.video_configuration.read_user_video_configuration(
account_id="~",
extension_id="~"
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →