Skip to main content

DelegationManagementService

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

MethodsDescription
rcv_list_delegatorsReturns the list of users who can delegate bridge/meeting creation to the given user.

rcv_list_delegators

Returns the list of users who can delegate bridge/meeting creation to the given user.

  • HTTP Method: GET
  • Endpoint: /rcvideo/v1/accounts/{accountId}/extensions/{extensionId}/delegators

Parameters

NameTypeRequiredDescription
account_idstr
extension_idstr

Return Type

DelegatorsListResult

Example Usage Code Snippet

from ring_central import RingCentral, Environment

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

result = sdk.delegation_management.rcv_list_delegators(
account_id="accountId",
extension_id="extensionId"
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →