コード例 #1
0
ファイル: Index.cs プロジェクト: kafka-yu/RingCentral.Net
 // Operation: Check User Permissions
 // Http Get /restapi/v1.0/account/{accountId}/extension/{extensionId}/authz-profile/check
 public async Task <RingCentral.AuthProfileCheckResource> Get(CheckUserPermissionParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.AuthProfileCheckResource>(this.Path(), queryParams));
 }
コード例 #2
0
ファイル: Index.cs プロジェクト: ringcentral/RingCentral.Net
 /// <summary>
 ///     Checks if a certain user permission is activated for a particular extension.
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/extension/{extensionId}/authz-profile/check
 ///     Rate Limit Group: Light
 /// </summary>
 public async Task <AuthProfileCheckResource> Get(CheckUserPermissionParameters queryParams = null,
                                                  RestRequestConfig restRequestConfig       = null)
 {
     return(await rc.Get <AuthProfileCheckResource>(Path(), queryParams, restRequestConfig));
 }