tencentcloud-sdk-nodejs-ess 4.0.913 → 4.0.918

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -660,38 +660,35 @@ export interface CreateMultiFlowSignQRCodeResponse {
660
660
  }
661
661
 
662
662
  /**
663
- * 签署链接信息。
663
+ * DescribeIntegrationDepartments请求参数结构体
664
664
  */
665
- export interface FlowApproverUrlInfo {
665
+ export interface DescribeIntegrationDepartmentsRequest {
666
666
  /**
667
- * 签署短链接。
668
- 注意:
669
- 1. 该链接有效期为<b>30分钟</b>,同时需要注意保密,不要外泄给无关用户。
670
- 2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。
671
- 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
667
+ * 执行本接口操作的员工信息。
668
+ 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
672
669
  */
673
- SignUrl?: string
670
+ Operator: UserInfo
674
671
  /**
675
- * 签署人类型。
676
- - **1**: 个人
672
+ * 查询类型,支持以下类型:
673
+ <ul><li>**0**:查询单个部门节点列表,不包含子节点部门信息</li>
674
+ <li>**1**:查询单个部门节点级一级子节点部门信息列表</li></ul>
677
675
  */
678
- ApproverType?: number
676
+ QueryType: number
679
677
  /**
680
- * 签署人姓名。
678
+ * 代理企业和员工的信息。
679
+ 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
681
680
  */
682
- ApproverName?: string
681
+ Agent?: Agent
683
682
  /**
684
- * 签署人手机号。
683
+ * 查询的部门ID。
684
+ 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
685
685
  */
686
- ApproverMobile?: string
686
+ DeptId?: string
687
687
  /**
688
- * 签署长链接。
689
- 注意:
690
- 1. 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
691
- 2. 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
692
- 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
688
+ * 查询的客户系统部门ID。
689
+ 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
693
690
  */
694
- LongUrl?: string
691
+ DeptOpenId?: string
695
692
  }
696
693
 
697
694
  /**
@@ -921,9 +918,25 @@ export interface ModifyExtendedServiceRequest {
921
918
  }
922
919
 
923
920
  /**
924
- * CancelUserAutoSignEnableUrl返回参数结构体
921
+ * CreateBatchInitOrganizationUrl返回参数结构体
925
922
  */
926
- export interface CancelUserAutoSignEnableUrlResponse {
923
+ export interface CreateBatchInitOrganizationUrlResponse {
924
+ /**
925
+ * 小程序路径
926
+ */
927
+ MiniAppPath?: string
928
+ /**
929
+ * 操作长链
930
+ */
931
+ OperateLongUrl?: string
932
+ /**
933
+ * 操作短链
934
+ */
935
+ OperateShortUrl?: string
936
+ /**
937
+ * 操作二维码
938
+ */
939
+ QRCodeUrl?: string
927
940
  /**
928
941
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
929
942
  */
@@ -2769,6 +2782,32 @@ export interface CreateReleaseFlowResponse {
2769
2782
  RequestId?: string
2770
2783
  }
2771
2784
 
2785
+ /**
2786
+ * CreateBatchInitOrganizationUrl请求参数结构体
2787
+ */
2788
+ export interface CreateBatchInitOrganizationUrlRequest {
2789
+ /**
2790
+ * 执行本接口操作的员工信息。
2791
+ 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
2792
+ */
2793
+ Operator: UserInfo
2794
+ /**
2795
+ * 初始化操作类型
2796
+ <ul><li>CREATE_SEAL : 创建印章</li>
2797
+ <li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
2798
+ <li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
2799
+ */
2800
+ OperateTypes: Array<string>
2801
+ /**
2802
+ * 批量操作的企业Id列表,最大支持50个
2803
+ */
2804
+ OrganizationIds: Array<string>
2805
+ /**
2806
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
2807
+ */
2808
+ Agent?: Agent
2809
+ }
2810
+
2772
2811
  /**
2773
2812
  * CreateWebThemeConfig返回参数结构体
2774
2813
  */
@@ -3610,6 +3649,41 @@ export interface CreateSealPolicyResponse {
3610
3649
  RequestId?: string
3611
3650
  }
3612
3651
 
3652
+ /**
3653
+ * 签署链接信息。
3654
+ */
3655
+ export interface FlowApproverUrlInfo {
3656
+ /**
3657
+ * 签署短链接。
3658
+ 注意:
3659
+ 1. 该链接有效期为<b>30分钟</b>,同时需要注意保密,不要外泄给无关用户。
3660
+ 2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。
3661
+ 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
3662
+ */
3663
+ SignUrl?: string
3664
+ /**
3665
+ * 签署人类型。
3666
+ - **1**: 个人
3667
+ */
3668
+ ApproverType?: number
3669
+ /**
3670
+ * 签署人姓名。
3671
+ */
3672
+ ApproverName?: string
3673
+ /**
3674
+ * 签署人手机号。
3675
+ */
3676
+ ApproverMobile?: string
3677
+ /**
3678
+ * 签署长链接。
3679
+ 注意:
3680
+ 1. 该链接有效期为**30分钟**,同时需要注意保密,不要外泄给无关用户。
3681
+ 2. 该链接不支持小程序嵌入,仅支持**移动端浏览器**打开。
3682
+ 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
3683
+ */
3684
+ LongUrl?: string
3685
+ }
3686
+
3613
3687
  /**
3614
3688
  * DisableUserAutoSign请求参数结构体
3615
3689
  */
@@ -4943,40 +5017,25 @@ export interface FlowCreateApprover {
4943
5017
  }
4944
5018
 
4945
5019
  /**
4946
- * CreateOrganizationGroupInvitationLink返回参数结构体
5020
+ * 签署方在使用个人印章签署控件(SIGN_SIGNATURE) 时可使用的签署方式
4947
5021
  */
4948
- export interface CreateOrganizationGroupInvitationLinkResponse {
4949
- /**
4950
- * 加入集团二维码链接,子企业的管理员可以直接扫码进入。
4951
- 注意:1. 该链接有效期时间为ExpireTime,同时需要注意保密,不要外泄给无关用户。2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
4952
- */
4953
- Link?: string
4954
- /**
4955
- * 到期时间(以秒为单位的时间戳)
4956
- */
4957
- ExpireTime?: number
5022
+ export interface ApproverComponentLimitType {
4958
5023
  /**
4959
- * 加入集团短链接。
4960
- 注意:
4961
- 1. 该链接有效期时间为ExpireTime,同时需要注意保密,不要外泄给无关用户。
4962
- 2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。
4963
- 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
5024
+ * 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。
4964
5025
  */
4965
- JumpUrl?: string
5026
+ RecipientId: string
4966
5027
  /**
4967
- * 腾讯电子签小程序加入集团链接。
4968
-
4969
- <li>小程序和APP集成使用</li>
4970
- <li>得到的链接类似于`pages/guide?shortKey=yDw***k1xFc5`, 用法可以参考:<a href="https://qian.tencent.com/developers/company/openwxminiprogram" target="_blank">跳转电子签小程序</a></li>
4971
-
5028
+ * 签署方经办人控件类型是个人印章签署控件(SIGN_SIGNATURE) 时,可选的签名方式,可多选
4972
5029
 
4973
- 注: <font color="red">生成的链路后面不能再增加参数</font>
4974
- */
4975
- MiniAppPath?: string
4976
- /**
4977
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5030
+ 签名方式:
5031
+ <ul>
5032
+ <li>HANDWRITE-手写签名</li>
5033
+ <li>ESIGN-个人印章类型</li>
5034
+ <li>OCR_ESIGN-AI智能识别手写签名</li>
5035
+ <li>SYSTEM_ESIGN-系统签名</li>
5036
+ </ul>
4978
5037
  */
4979
- RequestId?: string
5038
+ Values: Array<string>
4980
5039
  }
4981
5040
 
4982
5041
  /**
@@ -6197,6 +6256,13 @@ WECHAT-微信通知
6197
6256
  <li> 6 :设备面容识别</li></ul>
6198
6257
  */
6199
6258
  ApproverSignTypes?: Array<number | bigint>
6259
+ /**
6260
+ * 签署方是否可以转他人处理
6261
+
6262
+ <ul><li> **false** : ( 默认)可以转他人处理</li>
6263
+ <li> **true** :不可以转他人处理</li></ul>
6264
+ */
6265
+ NoTransfer?: boolean
6200
6266
  }
6201
6267
 
6202
6268
  /**
@@ -7155,24 +7221,13 @@ export interface DeleteIntegrationDepartmentRequest {
7155
7221
  }
7156
7222
 
7157
7223
  /**
7158
- * 用户自定义合同类型, 自定义合同类型的管理可以[点击查看在控制台位置的截图](https://qcloudimg.tencent-cloud.cn/raw/85a9b2ebce07b0cd6d75d5327d538235.png)
7224
+ * CancelUserAutoSignEnableUrl返回参数结构体
7159
7225
  */
7160
- export interface UserFlowType {
7161
- /**
7162
- * 合同类型ID
7163
- 注意:此字段可能返回 null,表示取不到有效值。
7164
- */
7165
- UserFlowTypeId?: string
7166
- /**
7167
- * 合同类型名称
7168
- 注意:此字段可能返回 null,表示取不到有效值。
7169
- */
7170
- Name?: string
7226
+ export interface CancelUserAutoSignEnableUrlResponse {
7171
7227
  /**
7172
- * 合同类型说明
7173
- 注意:此字段可能返回 null,表示取不到有效值。
7228
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7174
7229
  */
7175
- Description?: string
7230
+ RequestId?: string
7176
7231
  }
7177
7232
 
7178
7233
  /**
@@ -8776,6 +8831,27 @@ export interface RelieveInfo {
8776
8831
  OtherDeals?: string
8777
8832
  }
8778
8833
 
8834
+ /**
8835
+ * 用户自定义合同类型, 自定义合同类型的管理可以[点击查看在控制台位置的截图](https://qcloudimg.tencent-cloud.cn/raw/85a9b2ebce07b0cd6d75d5327d538235.png)
8836
+ */
8837
+ export interface UserFlowType {
8838
+ /**
8839
+ * 合同类型ID
8840
+ 注意:此字段可能返回 null,表示取不到有效值。
8841
+ */
8842
+ UserFlowTypeId?: string
8843
+ /**
8844
+ * 合同类型名称
8845
+ 注意:此字段可能返回 null,表示取不到有效值。
8846
+ */
8847
+ Name?: string
8848
+ /**
8849
+ * 合同类型说明
8850
+ 注意:此字段可能返回 null,表示取不到有效值。
8851
+ */
8852
+ Description?: string
8853
+ }
8854
+
8779
8855
  /**
8780
8856
  * 个性化参数
8781
8857
  */
@@ -8796,6 +8872,50 @@ export interface EmbedUrlOption {
8796
8872
  ShowTemplateComponent?: boolean
8797
8873
  }
8798
8874
 
8875
+ /**
8876
+ * CreateBatchOrganizationAuthorizationUrl请求参数结构体
8877
+ */
8878
+ export interface CreateBatchOrganizationAuthorizationUrlRequest {
8879
+ /**
8880
+ * 执行本接口操作的员工信息。
8881
+ 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
8882
+ */
8883
+ Operator: UserInfo
8884
+ /**
8885
+ * 组织机构超管姓名。 在注册流程中,必须是超管本人进行操作。
8886
+ 此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminName 保持一致。
8887
+ */
8888
+ AdminName: string
8889
+ /**
8890
+ * 组织机构超管手机号。 在注册流程中,必须是超管本人进行操作。此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 Admin Mobile保持一致。
8891
+ */
8892
+ AdminMobile: string
8893
+ /**
8894
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
8895
+ */
8896
+ Agent?: Agent
8897
+ /**
8898
+ * 企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口 查询企业批量认证链接 DescribeBatchOrganizationRegistrationUrls 获得。此参数需与超管个人三要素(AdminName,AdminMobile,AdminIdCardNumber)配合使用。若 SubTaskId 不属于传入的超级管理员,将进行筛选。
8899
+ */
8900
+ SubTaskIds?: Array<string>
8901
+ /**
8902
+ * 组织机构超管证件类型支持以下类型
8903
+ - ID_CARD : 居民身份证 (默认值)
8904
+ - HONGKONG_AND_MACAO : 港澳居民来往内地通行证
8905
+ - HONGKONG_MACAO_AND_TAIWAN : 港澳台居民居住证(格式同居民身份证)
8906
+ 此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminIdCardType保持一致。
8907
+ */
8908
+ AdminIdCardType?: string
8909
+ /**
8910
+ * 组织机构超管证件号。 在注册流程中,必须是超管本人进行操作。此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminIdCardNumber保持一致。
8911
+ */
8912
+ AdminIdCardNumber?: string
8913
+ /**
8914
+ * 要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**QR_CODE**: 跳转电子签小程序的http_url的二维码形式, 可以在页面展示适合此类型</li></ul>
8915
+ */
8916
+ Endpoint?: string
8917
+ }
8918
+
8799
8919
  /**
8800
8920
  * CreateBatchCancelFlowUrl请求参数结构体
8801
8921
  */
@@ -8996,35 +9116,33 @@ export interface DescribeExtendedServiceAuthInfosResponse {
8996
9116
  }
8997
9117
 
8998
9118
  /**
8999
- * DescribeIntegrationDepartments请求参数结构体
9119
+ * CreateBatchOrganizationAuthorizationUrl返回参数结构体
9000
9120
  */
9001
- export interface DescribeIntegrationDepartmentsRequest {
9121
+ export interface CreateBatchOrganizationAuthorizationUrlResponse {
9002
9122
  /**
9003
- * 执行本接口操作的员工信息。
9004
- 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
9005
- */
9006
- Operator: UserInfo
9007
- /**
9008
- * 查询类型,支持以下类型:
9009
- <ul><li>**0**:查询单个部门节点列表,不包含子节点部门信息</li>
9010
- <li>**1**:查询单个部门节点级一级子节点部门信息列表</li></ul>
9123
+ * 批量企业注册链接-单链接包含多条认证流,根据Endpoint的不同设置,返回不同的链接地址。失效时间:7天
9124
+ 跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
9125
+ <table> <thead> <tr> <th>Endpoint</th> <th>示例</th> <th>链接有效期限</th> </tr> </thead> <tbody>
9126
+ <tr> <td>HTTP</td> <td>https://res.ess.tencent.cn/cdn/h5-activity-dev/jump-mp.html?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHHURDfBxSB2rj2Bfa</td> <td>7天</td> </tr>
9127
+ <tr> <td>HTTP_SHORT_URL</td> <td>https://test.essurl.cn/8gDKUBAWK8</td> <td>7天</td> </tr>
9128
+ <tr> <td>APP</td> <td>pages/guide/index?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHpURDfR6iEkdpsDde</td> <td>7天</td> </tr><tr> <td>QR_CODE</td> <td>https://dyn.test.ess.tencent.cn/imgs/qrcode_urls/authorization_enterprise_for_batch_submit/yDCHHUUckpbdauq9UEjnoFDCCumAMmv1.png</td> <td>7天</td> </tr> </tbody> </table>
9129
+ 注:
9130
+ `1.创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义`
9131
+
9011
9132
  */
9012
- QueryType: number
9133
+ AuthUrl?: string
9013
9134
  /**
9014
- * 代理企业和员工的信息。
9015
- 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
9135
+ * 认证流认证失败信息
9016
9136
  */
9017
- Agent?: Agent
9137
+ ErrorMessages?: Array<string>
9018
9138
  /**
9019
- * 查询的部门ID。
9020
- 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
9139
+ * 链接过期时间,为 7 天后,创建时间,格式为Unix标准时间戳(秒)。
9021
9140
  */
9022
- DeptId?: string
9141
+ ExpireTime?: number
9023
9142
  /**
9024
- * 查询的客户系统部门ID。
9025
- 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
9143
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
9026
9144
  */
9027
- DeptOpenId?: string
9145
+ RequestId?: string
9028
9146
  }
9029
9147
 
9030
9148
  /**
@@ -9285,25 +9403,40 @@ export interface DescribeOrganizationGroupOrganizationsResponse {
9285
9403
  }
9286
9404
 
9287
9405
  /**
9288
- * 签署方在使用个人印章签署控件(SIGN_SIGNATURE) 时可使用的签署方式
9406
+ * CreateOrganizationGroupInvitationLink返回参数结构体
9289
9407
  */
9290
- export interface ApproverComponentLimitType {
9408
+ export interface CreateOrganizationGroupInvitationLinkResponse {
9291
9409
  /**
9292
- * 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。
9410
+ * 加入集团二维码链接,子企业的管理员可以直接扫码进入。
9411
+ 注意:1. 该链接有效期时间为ExpireTime,同时需要注意保密,不要外泄给无关用户。2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
9293
9412
  */
9294
- RecipientId: string
9413
+ Link?: string
9295
9414
  /**
9296
- * 签署方经办人控件类型是个人印章签署控件(SIGN_SIGNATURE) 时,可选的签名方式,可多选
9415
+ * 到期时间(以秒为单位的时间戳)
9416
+ */
9417
+ ExpireTime?: number
9418
+ /**
9419
+ * 加入集团短链接。
9420
+ 注意:
9421
+ 1. 该链接有效期时间为ExpireTime,同时需要注意保密,不要外泄给无关用户。
9422
+ 2. 该链接不支持小程序嵌入,仅支持<b>移动端浏览器</b>打开。
9423
+ 3. <font color="red">生成的链路后面不能再增加参数</font>(会出现覆盖链接中已有参数导致错误)
9424
+ */
9425
+ JumpUrl?: string
9426
+ /**
9427
+ * 腾讯电子签小程序加入集团链接。
9297
9428
 
9298
- 签名方式:
9299
- <ul>
9300
- <li>HANDWRITE-手写签名</li>
9301
- <li>ESIGN-个人印章类型</li>
9302
- <li>OCR_ESIGN-AI智能识别手写签名</li>
9303
- <li>SYSTEM_ESIGN-系统签名</li>
9304
- </ul>
9429
+ <li>小程序和APP集成使用</li>
9430
+ <li>得到的链接类似于`pages/guide?shortKey=yDw***k1xFc5`, 用法可以参考:<a href="https://qian.tencent.com/developers/company/openwxminiprogram" target="_blank">跳转电子签小程序</a></li>
9431
+
9432
+
9433
+ 注: <font color="red">生成的链路后面不能再增加参数</font>
9305
9434
  */
9306
- Values: Array<string>
9435
+ MiniAppPath?: string
9436
+ /**
9437
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9438
+ */
9439
+ RequestId?: string
9307
9440
  }
9308
9441
 
9309
9442
  /**
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateExtendedServiceAuthInfosRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DescribeExtendedServiceAuthDetailRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeUserAutoSignStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, DeleteSealPoliciesRequest, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, CreateOrganizationGroupInvitationLinkResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, DescribeBillUsageRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, ModifyApplicationCallbackInfoRequest, DescribeUserAutoSignStatusRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribePersonCertificateRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, DescribeIntegrationDepartmentsRequest, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse } from "./ess_models";
2
+ import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateExtendedServiceAuthInfosRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DescribeExtendedServiceAuthDetailRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeUserAutoSignStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, DeleteSealPoliciesRequest, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, DescribeBillUsageRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, CancelUserAutoSignEnableUrlResponse, ModifyApplicationCallbackInfoRequest, DescribeUserAutoSignStatusRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, CreateBatchOrganizationAuthorizationUrlResponse, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, CreateOrganizationGroupInvitationLinkResponse } from "./ess_models";
3
3
  /**
4
4
  * ess client
5
5
  * @class
@@ -560,6 +560,17 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
560
560
  3. 因h5涉及人脸身份认证能力基于慧眼人脸核身,对Android和iOS系统均有一定要求, 因此<font color='red'>App嵌入H5签署合同需要按照慧眼提供的<a href="https://cloud.tencent.com/document/product/1007/61076">慧眼人脸核身兼容性文档</a>做兼容性适配</font>。
561
561
  */
562
562
  CreateFlowSignUrl(req: CreateFlowSignUrlRequest, cb?: (error: string, rep: CreateFlowSignUrlResponse) => void): Promise<CreateFlowSignUrlResponse>;
563
+ /**
564
+ * 支持企业进行批量初始化操作:
565
+
566
+ 此接口存在以下限制:
567
+ 1. 若批量操作中包含<font color="red">加入集团企业</font>操作,则调用此接口的员工须有<font color="red">集团企业管理权限</font>。
568
+ 2. 批量操作的企业需要已经完成电子签的认证流程。
569
+ 3. 通过此接口生成的链接在小程序端进行操作时,操作人需要是<font color="red">所有企业的超管或法人</font>。
570
+ 4. 批量操作的企业,需要是<a href="https://qian.tencent.com/developers/companyApis/organizations/CreateOrganizationAuthUrl" target="_blank">通过平台方引导认证</a>的企业。
571
+ 5. <font color="red">操作链接过期时间默认为生成链接后7天。</font>
572
+ */
573
+ CreateBatchInitOrganizationUrl(req: CreateBatchInitOrganizationUrlRequest, cb?: (error: string, rep: CreateBatchInitOrganizationUrlResponse) => void): Promise<CreateBatchInitOrganizationUrlResponse>;
563
574
  /**
564
575
  * 用来撤销<a href="https://qian.tencent.com/developers/companyApis/users/CreateUserAutoSignEnableUrl" target="_blank">获取个人用户自动签的开通状态</a>生成的开通链接,撤销生成的链接失效。
565
576
 
@@ -667,25 +678,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
667
678
  <li>4. 通过扫码或者点击链接,用户无需登录或者鉴权即可查看对应合同的区块链存证证书,请妥善保管好二维码或链接。</li></ul>
668
679
  */
669
680
  CreateFlowBlockchainEvidenceUrl(req: CreateFlowBlockchainEvidenceUrlRequest, cb?: (error: string, rep: CreateFlowBlockchainEvidenceUrlResponse) => void): Promise<CreateFlowBlockchainEvidenceUrlResponse>;
670
- /**
671
- * 用于客户企业在调用生成[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口之前判断C端用户是否实名,如果已经实名,就不需要再次调用生成C端链接接口去实名
672
- 注意:此接口仅会返回当前员工是否通过[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)所实名的员工是否实名,并不会返回个人用户自己在电子签进行实名的状况
673
- */
674
- DescribeUserVerifyStatus(req: DescribeUserVerifyStatusRequest, cb?: (error: string, rep: DescribeUserVerifyStatusResponse) => void): Promise<DescribeUserVerifyStatusResponse>;
675
- /**
676
- * 此接口(ModifyIntegrationRole)用来更新企业自定义的SaaS角色或集团角色。
677
-
678
- 适用场景1:更新当前企业的自定义SaaS角色或集团角色,并且更新时不进行角色中权限的更新(PermissionGroups 参数不传)。
679
-
680
- 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
681
-
682
- 适用场景3:更新集团角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
683
-
684
- 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
685
-
686
- 注意事项:SaaS角色和集团角色对应的权限树是不一样的。
687
- */
688
- ModifyIntegrationRole(req: ModifyIntegrationRoleRequest, cb?: (error: string, rep: ModifyIntegrationRoleResponse) => void): Promise<ModifyIntegrationRoleResponse>;
689
681
  /**
690
682
  * 本接口(CreateBatchOrganizationRegistrationTasks)用于批量创建企业认证链接
691
683
  该接口为异步提交任务接口,需要跟查询企业批量认证链接(DescribeBatchOrganizationRegistrationUrls) 配合使用.
@@ -712,6 +704,34 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
712
704
  | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
713
705
  */
714
706
  CreateBatchOrganizationRegistrationTasks(req: CreateBatchOrganizationRegistrationTasksRequest, cb?: (error: string, rep: CreateBatchOrganizationRegistrationTasksResponse) => void): Promise<CreateBatchOrganizationRegistrationTasksResponse>;
707
+ /**
708
+ * 用于客户企业在调用生成[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口之前判断C端用户是否实名,如果已经实名,就不需要再次调用生成C端链接接口去实名
709
+ 注意:此接口仅会返回当前员工是否通过[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)所实名的员工是否实名,并不会返回个人用户自己在电子签进行实名的状况
710
+ */
711
+ DescribeUserVerifyStatus(req: DescribeUserVerifyStatusRequest, cb?: (error: string, rep: DescribeUserVerifyStatusResponse) => void): Promise<DescribeUserVerifyStatusResponse>;
712
+ /**
713
+ * 此接口(ModifyIntegrationRole)用来更新企业自定义的SaaS角色或集团角色。
714
+
715
+ 适用场景1:更新当前企业的自定义SaaS角色或集团角色,并且更新时不进行角色中权限的更新(PermissionGroups 参数不传)。
716
+
717
+ 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
718
+
719
+ 适用场景3:更新集团角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
720
+
721
+ 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
722
+
723
+ 注意事项:SaaS角色和集团角色对应的权限树是不一样的。
724
+ */
725
+ ModifyIntegrationRole(req: ModifyIntegrationRoleRequest, cb?: (error: string, rep: ModifyIntegrationRoleResponse) => void): Promise<ModifyIntegrationRoleResponse>;
726
+ /**
727
+ * 此接口用于获取企业批量认证链接-单链接包含多条认证流。
728
+
729
+ 前提条件:已调用 [CreateBatchOrganizationRegistrationTasks创建企业批量认证链接任务接口](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks) 和[查询企业批量认证链接DescribeBatchOrganizationRegistrationUrls](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls) 确保认证任务已经完成。
730
+
731
+ 异步任务的处理完成时间视当前已提交的任务量、任务的复杂程度等因素决定,正常情况下 3~5 秒即可完成,但也可能需要更长的时间。
732
+ 此链接包含多条认证流程,使用该链接可以批量的对企业进行认证。
733
+ */
734
+ CreateBatchOrganizationAuthorizationUrl(req: CreateBatchOrganizationAuthorizationUrlRequest, cb?: (error: string, rep: CreateBatchOrganizationAuthorizationUrlResponse) => void): Promise<CreateBatchOrganizationAuthorizationUrlResponse>;
715
735
  /**
716
736
  * 该接口用于获取个人授权执业章给企业的微信二维码,需要个人用户通过微信扫码。
717
737
 
@@ -665,6 +665,19 @@ class Client extends TencentCloudCommon.AbstractClient {
665
665
  async CreateFlowSignUrl(req, cb) {
666
666
  return this.request("CreateFlowSignUrl", req, cb);
667
667
  }
668
+ /**
669
+ * 支持企业进行批量初始化操作:
670
+
671
+ 此接口存在以下限制:
672
+ 1. 若批量操作中包含<font color="red">加入集团企业</font>操作,则调用此接口的员工须有<font color="red">集团企业管理权限</font>。
673
+ 2. 批量操作的企业需要已经完成电子签的认证流程。
674
+ 3. 通过此接口生成的链接在小程序端进行操作时,操作人需要是<font color="red">所有企业的超管或法人</font>。
675
+ 4. 批量操作的企业,需要是<a href="https://qian.tencent.com/developers/companyApis/organizations/CreateOrganizationAuthUrl" target="_blank">通过平台方引导认证</a>的企业。
676
+ 5. <font color="red">操作链接过期时间默认为生成链接后7天。</font>
677
+ */
678
+ async CreateBatchInitOrganizationUrl(req, cb) {
679
+ return this.request("CreateBatchInitOrganizationUrl", req, cb);
680
+ }
668
681
  /**
669
682
  * 用来撤销<a href="https://qian.tencent.com/developers/companyApis/users/CreateUserAutoSignEnableUrl" target="_blank">获取个人用户自动签的开通状态</a>生成的开通链接,撤销生成的链接失效。
670
683
 
@@ -796,29 +809,6 @@ class Client extends TencentCloudCommon.AbstractClient {
796
809
  async CreateFlowBlockchainEvidenceUrl(req, cb) {
797
810
  return this.request("CreateFlowBlockchainEvidenceUrl", req, cb);
798
811
  }
799
- /**
800
- * 用于客户企业在调用生成[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口之前判断C端用户是否实名,如果已经实名,就不需要再次调用生成C端链接接口去实名
801
- 注意:此接口仅会返回当前员工是否通过[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)所实名的员工是否实名,并不会返回个人用户自己在电子签进行实名的状况
802
- */
803
- async DescribeUserVerifyStatus(req, cb) {
804
- return this.request("DescribeUserVerifyStatus", req, cb);
805
- }
806
- /**
807
- * 此接口(ModifyIntegrationRole)用来更新企业自定义的SaaS角色或集团角色。
808
-
809
- 适用场景1:更新当前企业的自定义SaaS角色或集团角色,并且更新时不进行角色中权限的更新(PermissionGroups 参数不传)。
810
-
811
- 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
812
-
813
- 适用场景3:更新集团角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
814
-
815
- 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
816
-
817
- 注意事项:SaaS角色和集团角色对应的权限树是不一样的。
818
- */
819
- async ModifyIntegrationRole(req, cb) {
820
- return this.request("ModifyIntegrationRole", req, cb);
821
- }
822
812
  /**
823
813
  * 本接口(CreateBatchOrganizationRegistrationTasks)用于批量创建企业认证链接
824
814
  该接口为异步提交任务接口,需要跟查询企业批量认证链接(DescribeBatchOrganizationRegistrationUrls) 配合使用.
@@ -847,6 +837,40 @@ class Client extends TencentCloudCommon.AbstractClient {
847
837
  async CreateBatchOrganizationRegistrationTasks(req, cb) {
848
838
  return this.request("CreateBatchOrganizationRegistrationTasks", req, cb);
849
839
  }
840
+ /**
841
+ * 用于客户企业在调用生成[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口之前判断C端用户是否实名,如果已经实名,就不需要再次调用生成C端链接接口去实名
842
+ 注意:此接口仅会返回当前员工是否通过[C端用户实名链接(CreateUserVerifyUrl)](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)所实名的员工是否实名,并不会返回个人用户自己在电子签进行实名的状况
843
+ */
844
+ async DescribeUserVerifyStatus(req, cb) {
845
+ return this.request("DescribeUserVerifyStatus", req, cb);
846
+ }
847
+ /**
848
+ * 此接口(ModifyIntegrationRole)用来更新企业自定义的SaaS角色或集团角色。
849
+
850
+ 适用场景1:更新当前企业的自定义SaaS角色或集团角色,并且更新时不进行角色中权限的更新(PermissionGroups 参数不传)。
851
+
852
+ 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
853
+
854
+ 适用场景3:更新集团角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
855
+
856
+ 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
857
+
858
+ 注意事项:SaaS角色和集团角色对应的权限树是不一样的。
859
+ */
860
+ async ModifyIntegrationRole(req, cb) {
861
+ return this.request("ModifyIntegrationRole", req, cb);
862
+ }
863
+ /**
864
+ * 此接口用于获取企业批量认证链接-单链接包含多条认证流。
865
+
866
+ 前提条件:已调用 [CreateBatchOrganizationRegistrationTasks创建企业批量认证链接任务接口](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks) 和[查询企业批量认证链接DescribeBatchOrganizationRegistrationUrls](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls) 确保认证任务已经完成。
867
+
868
+ 异步任务的处理完成时间视当前已提交的任务量、任务的复杂程度等因素决定,正常情况下 3~5 秒即可完成,但也可能需要更长的时间。
869
+ 此链接包含多条认证流程,使用该链接可以批量的对企业进行认证。
870
+ */
871
+ async CreateBatchOrganizationAuthorizationUrl(req, cb) {
872
+ return this.request("CreateBatchOrganizationAuthorizationUrl", req, cb);
873
+ }
850
874
  /**
851
875
  * 该接口用于获取个人授权执业章给企业的微信二维码,需要个人用户通过微信扫码。
852
876