DelegationManagementService
A list of all methods in the DelegationManagementService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
rcv_list_delegators | Returns 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
Name | Type | Required | Description |
---|---|---|---|
account_id | str | ✅ | |
extension_id | str | ✅ |
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