tccli 3.0.1337.1__py2.py3-none-any.whl → 3.0.1338.1__py2.py3-none-any.whl

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.
@@ -1735,7 +1735,7 @@ def doCreateSealByImage(args, parsed_globals):
1735
1735
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1736
1736
 
1737
1737
 
1738
- def doCreateSignUrl(args, parsed_globals):
1738
+ def doDescribeBatchOrganizationRegistrationTasks(args, parsed_globals):
1739
1739
  g_param = parse_global_arg(parsed_globals)
1740
1740
 
1741
1741
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -1764,11 +1764,11 @@ def doCreateSignUrl(args, parsed_globals):
1764
1764
  client = mod.EssbasicClient(cred, g_param[OptionsDefine.Region], profile)
1765
1765
  client._sdkVersion += ("_CLI_" + __version__)
1766
1766
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
1767
- model = models.CreateSignUrlRequest()
1767
+ model = models.DescribeBatchOrganizationRegistrationTasksRequest()
1768
1768
  model.from_json_string(json.dumps(args))
1769
1769
  start_time = time.time()
1770
1770
  while True:
1771
- rsp = client.CreateSignUrl(model)
1771
+ rsp = client.DescribeBatchOrganizationRegistrationTasks(model)
1772
1772
  result = rsp.to_json_string()
1773
1773
  try:
1774
1774
  json_obj = json.loads(result)
@@ -2307,6 +2307,58 @@ def doChannelCreateDynamicFlowApprover(args, parsed_globals):
2307
2307
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2308
2308
 
2309
2309
 
2310
+ def doModifyOrganizationDefaultSeal(args, parsed_globals):
2311
+ g_param = parse_global_arg(parsed_globals)
2312
+
2313
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2314
+ cred = credential.CVMRoleCredential()
2315
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2316
+ cred = credential.STSAssumeRoleCredential(
2317
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2318
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
2319
+ )
2320
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
2321
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2322
+ else:
2323
+ cred = credential.Credential(
2324
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2325
+ )
2326
+ http_profile = HttpProfile(
2327
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2328
+ reqMethod="POST",
2329
+ endpoint=g_param[OptionsDefine.Endpoint],
2330
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2331
+ )
2332
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2333
+ if g_param[OptionsDefine.Language]:
2334
+ profile.language = g_param[OptionsDefine.Language]
2335
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2336
+ client = mod.EssbasicClient(cred, g_param[OptionsDefine.Region], profile)
2337
+ client._sdkVersion += ("_CLI_" + __version__)
2338
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2339
+ model = models.ModifyOrganizationDefaultSealRequest()
2340
+ model.from_json_string(json.dumps(args))
2341
+ start_time = time.time()
2342
+ while True:
2343
+ rsp = client.ModifyOrganizationDefaultSeal(model)
2344
+ result = rsp.to_json_string()
2345
+ try:
2346
+ json_obj = json.loads(result)
2347
+ except TypeError as e:
2348
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2349
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2350
+ break
2351
+ cur_time = time.time()
2352
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2353
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2354
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2355
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2356
+ else:
2357
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2358
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2359
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2360
+
2361
+
2310
2362
  def doCreateLegalSealQrCode(args, parsed_globals):
2311
2363
  g_param = parse_global_arg(parsed_globals)
2312
2364
 
@@ -5219,7 +5271,7 @@ def doChannelCreateFlowGroupByFiles(args, parsed_globals):
5219
5271
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5220
5272
 
5221
5273
 
5222
- def doModifyOrganizationDefaultSeal(args, parsed_globals):
5274
+ def doCreateModifyAdminAuthorizationUrl(args, parsed_globals):
5223
5275
  g_param = parse_global_arg(parsed_globals)
5224
5276
 
5225
5277
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -5248,11 +5300,11 @@ def doModifyOrganizationDefaultSeal(args, parsed_globals):
5248
5300
  client = mod.EssbasicClient(cred, g_param[OptionsDefine.Region], profile)
5249
5301
  client._sdkVersion += ("_CLI_" + __version__)
5250
5302
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
5251
- model = models.ModifyOrganizationDefaultSealRequest()
5303
+ model = models.CreateModifyAdminAuthorizationUrlRequest()
5252
5304
  model.from_json_string(json.dumps(args))
5253
5305
  start_time = time.time()
5254
5306
  while True:
5255
- rsp = client.ModifyOrganizationDefaultSeal(model)
5307
+ rsp = client.CreateModifyAdminAuthorizationUrl(model)
5256
5308
  result = rsp.to_json_string()
5257
5309
  try:
5258
5310
  json_obj = json.loads(result)
@@ -5479,6 +5531,58 @@ def doCancelFlow(args, parsed_globals):
5479
5531
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5480
5532
 
5481
5533
 
5534
+ def doCreateSignUrl(args, parsed_globals):
5535
+ g_param = parse_global_arg(parsed_globals)
5536
+
5537
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
5538
+ cred = credential.CVMRoleCredential()
5539
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
5540
+ cred = credential.STSAssumeRoleCredential(
5541
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
5542
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
5543
+ )
5544
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
5545
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
5546
+ else:
5547
+ cred = credential.Credential(
5548
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
5549
+ )
5550
+ http_profile = HttpProfile(
5551
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
5552
+ reqMethod="POST",
5553
+ endpoint=g_param[OptionsDefine.Endpoint],
5554
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
5555
+ )
5556
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
5557
+ if g_param[OptionsDefine.Language]:
5558
+ profile.language = g_param[OptionsDefine.Language]
5559
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
5560
+ client = mod.EssbasicClient(cred, g_param[OptionsDefine.Region], profile)
5561
+ client._sdkVersion += ("_CLI_" + __version__)
5562
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
5563
+ model = models.CreateSignUrlRequest()
5564
+ model.from_json_string(json.dumps(args))
5565
+ start_time = time.time()
5566
+ while True:
5567
+ rsp = client.CreateSignUrl(model)
5568
+ result = rsp.to_json_string()
5569
+ try:
5570
+ json_obj = json.loads(result)
5571
+ except TypeError as e:
5572
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
5573
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
5574
+ break
5575
+ cur_time = time.time()
5576
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
5577
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
5578
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
5579
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
5580
+ else:
5581
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
5582
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
5583
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5584
+
5585
+
5482
5586
  def doCreateH5FaceIdUrl(args, parsed_globals):
5483
5587
  g_param = parse_global_arg(parsed_globals)
5484
5588
 
@@ -7501,7 +7605,7 @@ ACTION_MAP = {
7501
7605
  "CreateSubOrganization": doCreateSubOrganization,
7502
7606
  "ChannelCreateFlowByFiles": doChannelCreateFlowByFiles,
7503
7607
  "CreateSealByImage": doCreateSealByImage,
7504
- "CreateSignUrl": doCreateSignUrl,
7608
+ "DescribeBatchOrganizationRegistrationTasks": doDescribeBatchOrganizationRegistrationTasks,
7505
7609
  "ChannelCreateConvertTaskApi": doChannelCreateConvertTaskApi,
7506
7610
  "ChannelCancelFlow": doChannelCancelFlow,
7507
7611
  "CreateSeal": doCreateSeal,
@@ -7512,6 +7616,7 @@ ACTION_MAP = {
7512
7616
  "CheckVerifyCodeMatchFlowId": doCheckVerifyCodeMatchFlowId,
7513
7617
  "ChannelCreateOrganizationModifyQrCode": doChannelCreateOrganizationModifyQrCode,
7514
7618
  "ChannelCreateDynamicFlowApprover": doChannelCreateDynamicFlowApprover,
7619
+ "ModifyOrganizationDefaultSeal": doModifyOrganizationDefaultSeal,
7515
7620
  "CreateLegalSealQrCode": doCreateLegalSealQrCode,
7516
7621
  "ChannelVerifyPdf": doChannelVerifyPdf,
7517
7622
  "GetDownloadFlowUrl": doGetDownloadFlowUrl,
@@ -7568,11 +7673,12 @@ ACTION_MAP = {
7568
7673
  "CreateFaceIdSign": doCreateFaceIdSign,
7569
7674
  "DescribeUserFlowType": doDescribeUserFlowType,
7570
7675
  "ChannelCreateFlowGroupByFiles": doChannelCreateFlowGroupByFiles,
7571
- "ModifyOrganizationDefaultSeal": doModifyOrganizationDefaultSeal,
7676
+ "CreateModifyAdminAuthorizationUrl": doCreateModifyAdminAuthorizationUrl,
7572
7677
  "DescribeFlowDetailInfo": doDescribeFlowDetailInfo,
7573
7678
  "ChannelDescribeBillUsageDetail": doChannelDescribeBillUsageDetail,
7574
7679
  "DeleteOrganizationAuthorizations": doDeleteOrganizationAuthorizations,
7575
7680
  "CancelFlow": doCancelFlow,
7681
+ "CreateSignUrl": doCreateSignUrl,
7576
7682
  "CreateH5FaceIdUrl": doCreateH5FaceIdUrl,
7577
7683
  "DescribeFlowApprovers": doDescribeFlowApprovers,
7578
7684
  "DeleteSeal": doDeleteSeal,
@@ -448,6 +448,13 @@
448
448
  "output": "CreateLegalSealQrCodeResponse",
449
449
  "status": "online"
450
450
  },
451
+ "CreateModifyAdminAuthorizationUrl": {
452
+ "document": "本接口(CreateModifyAdminAuthorizationUrl)用于重新上传超管授权书。\n\n注意:\n1. 重新上传超管授权书,必须是审核失败的情况下才能重新上传,可以通过回调[!授权书审核结果回调](https://qian.tencent.com/developers/partner/callback_types_staffs#%E5%9B%9B-%E6%8E%88%E6%9D%83%E4%B9%A6%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到",
453
+ "input": "CreateModifyAdminAuthorizationUrlRequest",
454
+ "name": "生成变更超管授权书链接",
455
+ "output": "CreateModifyAdminAuthorizationUrlResponse",
456
+ "status": "online"
457
+ },
451
458
  "CreateOrganizationAuthFile": {
452
459
  "document": "生成合成后的各类企业授权书,包括:\n- 企业认证超管授权书\n- 超管变更授权书\n- 企业注销授权书\n\n注: 需自行保证传入真实的企业/法人/超管信息,否则后续的审核将会拒绝。",
453
460
  "input": "CreateOrganizationAuthFileRequest",
@@ -490,6 +497,13 @@
490
497
  "output": "DeleteOrganizationAuthorizationsResponse",
491
498
  "status": "online"
492
499
  },
500
+ "DescribeBatchOrganizationRegistrationTasks": {
501
+ "document": "本接口(DescribeBatchOrganizationRegistrationTasks)用于查询企业批量认证任务状态。",
502
+ "input": "DescribeBatchOrganizationRegistrationTasksRequest",
503
+ "name": "查询企业批量认证状态",
504
+ "output": "DescribeBatchOrganizationRegistrationTasksResponse",
505
+ "status": "online"
506
+ },
493
507
  "DescribeBatchOrganizationRegistrationUrls": {
494
508
  "document": "此接口用于获取企业批量认证异步任务的状态及结果。需要先调用接口<a href=\"https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks\" target=\"_blank\">提交子企业批量认证链接创建任务</a>获取到任务ID,然后再调用此接口获取到各个子企业的注册认证链接。整体流程如下图。\n![image](https://qcloudimg.tencent-cloud.cn/raw/654aa2a72ab7d42f06464ea33c50c3bb.png)\n\n\n注:\n`异步任务的处理完成时间视当前已提交的任务量、任务的复杂程度等因素决定,正常情况下 3~5 秒即可完成,但也可能需要更长的时间`",
495
509
  "input": "DescribeBatchOrganizationRegistrationUrlsRequest",
@@ -610,11 +624,11 @@
610
624
  "status": "online"
611
625
  },
612
626
  "PrepareFlows": {
613
- "document": "该接口 (PrepareFlows) 用于创建待发起文件\n用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。\n目前该接口只支持B2C,<font color='red'> **不建议使用**</font>。",
627
+ "document": "已经不再使用\n\n该接口 (PrepareFlows) 用于创建待发起文件\n用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。\n目前该接口只支持B2C,<font color='red'> **不建议使用**</font>。",
614
628
  "input": "PrepareFlowsRequest",
615
629
  "name": "准备待发起文件",
616
630
  "output": "PrepareFlowsResponse",
617
- "status": "online"
631
+ "status": "deprecated"
618
632
  },
619
633
  "SyncProxyOrganization": {
620
634
  "document": "此接口(SyncProxyOrganization)用于同步第三方平台子客企业信息,包括企业名称、企业营业执照、企业统一社会信用代码和法人姓名等,便于子客企业在企业激活过程中无需手动上传营业执照或补充企业信息。\n\n注意:\n\n- **需要在<a href=\"https://qian.tencent.com/developers/partnerApis/accounts/CreateConsoleLoginUrl\" target=\"_blank\">生成子客登录链接</a>前同步的企业信息**, 否则会出现信息同步没有用的情形\n- **企业信息需要和营业执照信息对应**, 否则会出现激活过程验证不通过的问题\n\n![image](https://qcloudimg.tencent-cloud.cn/raw/7ec91b79a0a4860e77c9ff9f4a5f13ad/channel_SyncProxyOrganization2.png)\n\n\n- **企业统一社会信用代码**: 对应上图中的**1**\n- **第三方平台子客企业名称**: 对应上图中的**2**\n- **企业法定代表人的名字**:对应上图中的**3**\n- **企业详细住所**:对应上图中的**4**",
@@ -1251,6 +1265,42 @@
1251
1265
  ],
1252
1266
  "usage": "in"
1253
1267
  },
1268
+ "BatchOrganizationRegistrationTasksDetails": {
1269
+ "document": "批量认证企业任务详情信息,其中包括 TaskId,状态信息等等",
1270
+ "members": [
1271
+ {
1272
+ "disabled": false,
1273
+ "document": "生成注册链接的任务Id",
1274
+ "example": "yDxbNUyKQDx3oAUuO4zjEBQGidlGe4hP",
1275
+ "member": "string",
1276
+ "name": "TaskId",
1277
+ "output_required": false,
1278
+ "type": "string",
1279
+ "value_allowed_null": false
1280
+ },
1281
+ {
1282
+ "disabled": false,
1283
+ "document": "批量创建企业任务的状态\n<ul>\n<li>Processing</li>\n<li>Create</li>\n<li>Submit</li>\n<li>Authorization</li>\n<li>Failed</li>\n</ul>\n\n各个状态所代表的含义如下表格所示:\n<table>\n<thead align=\"center\" valign=\"center\">\n<tr><th>任务状态名称</th><th>任务状态详情</th></tr>\n</thead>\n<tbody>\n<tr><th align=\"center\" valign=\"center\">Processing</th><th>企业认证任务处理中,用户调用了<a href=\"https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks\">CreateBatchOrganizationRegistrationTasks</a>接口,但是任务还在处理中的状态</th></tr>\n<tr><th align=\"center\" valign=\"center\">Create</th><th>创建企业认证链接任务完成,可以调用生成任务链接接口</th></tr>\n<tr><th align=\"center\" valign=\"center\">Submit</th><th>企业认证任务已提交,到如下界面之后,会变为这个状态\n\n![image](https://qcloudimg.tencent-cloud.cn/raw/acbcec8c7a71de14d9c041e3b8ca8b3f.png)</th></tr>\n<tr><th align=\"center\" valign=\"center\">Authorization</th><th>企业认证任务认证成功,点击下图下一步,进入到授权书上传或者法人认证,则会变为这个状态\n\n![image](https://qcloudimg.tencent-cloud.cn/raw/c52448354871cffa729da8db4e3a6f18.png)</th></tr>\n<tr><th align=\"center\" valign=\"center\">Failed</th><th>企业认证任务失败</th></tr>\n</tbody>\n</table>",
1284
+ "example": "Submit",
1285
+ "member": "string",
1286
+ "name": "Status",
1287
+ "output_required": false,
1288
+ "type": "string",
1289
+ "value_allowed_null": false
1290
+ },
1291
+ {
1292
+ "disabled": false,
1293
+ "document": "如果任务失败,会返回错误信息",
1294
+ "example": "三要素校验失败: 工商库未能查询到企业信息,请核实信息或切换为上传营业执照认证。",
1295
+ "member": "string",
1296
+ "name": "ErrorMessage",
1297
+ "output_required": false,
1298
+ "type": "string",
1299
+ "value_allowed_null": false
1300
+ }
1301
+ ],
1302
+ "usage": "out"
1303
+ },
1254
1304
  "CancelFailureFlow": {
1255
1305
  "document": "撤销失败的流程信息",
1256
1306
  "members": [
@@ -7874,6 +7924,61 @@
7874
7924
  ],
7875
7925
  "type": "object"
7876
7926
  },
7927
+ "CreateModifyAdminAuthorizationUrlRequest": {
7928
+ "document": "CreateModifyAdminAuthorizationUrl请求参数结构体",
7929
+ "members": [
7930
+ {
7931
+ "disabled": false,
7932
+ "document": "关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。\n\n此接口下面信息必填。\n<ul>\n<li>渠道应用标识: Agent.AppId</li>\n</ul>\n",
7933
+ "example": "无",
7934
+ "member": "Agent",
7935
+ "name": "Agent",
7936
+ "required": true,
7937
+ "type": "object"
7938
+ },
7939
+ {
7940
+ "disabled": false,
7941
+ "document": "企业认证流Id,可以通过回调[授权书认证审核结果回调](https://qian.tencent.com/developers/company/callback_types_staffs#%E5%8D%81%E5%85%AD-%E6%8E%88%E6%9D%83%E4%B9%A6%E8%AE%A4%E8%AF%81%E5%AE%A1%E6%A0%B8%E7%BB%93%E6%9E%9C%E5%9B%9E%E8%B0%83)得到",
7942
+ "example": "\"yDRS4UUgygqdcj5pUuO4zjEu602GFIe6\"",
7943
+ "member": "string",
7944
+ "name": "AuthorizationId",
7945
+ "required": false,
7946
+ "type": "string"
7947
+ },
7948
+ {
7949
+ "disabled": false,
7950
+ "document": "要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**PC**: 跳转电子签web 端控制台的链接。</li></ul>",
7951
+ "example": "HTTP",
7952
+ "member": "string",
7953
+ "name": "Endpoint",
7954
+ "required": false,
7955
+ "type": "string"
7956
+ }
7957
+ ],
7958
+ "type": "object"
7959
+ },
7960
+ "CreateModifyAdminAuthorizationUrlResponse": {
7961
+ "document": "CreateModifyAdminAuthorizationUrl返回参数结构体",
7962
+ "members": [
7963
+ {
7964
+ "disabled": false,
7965
+ "document": "变更企业超管授权书链接。没有有效期限制。注意:此链接仅能由当时认证企业的认证人使用。",
7966
+ "example": "https://res.ess.tencent.cn/cdn/h5-activity/jump-mp.html?to=REGISTER_ENTERPRISE_FOR_UPDATE_AUTH_FILE&AuthorizationId=yDt3sUUckpxzou8bUuFrZIdxeP9YoXeP",
7967
+ "member": "string",
7968
+ "name": "Url",
7969
+ "output_required": false,
7970
+ "type": "string",
7971
+ "value_allowed_null": false
7972
+ },
7973
+ {
7974
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
7975
+ "member": "string",
7976
+ "name": "RequestId",
7977
+ "type": "string"
7978
+ }
7979
+ ],
7980
+ "type": "object"
7981
+ },
7877
7982
  "CreateOrganizationAuthFileRequest": {
7878
7983
  "document": "CreateOrganizationAuthFile请求参数结构体",
7879
7984
  "members": [
@@ -8618,6 +8723,52 @@
8618
8723
  ],
8619
8724
  "usage": "out"
8620
8725
  },
8726
+ "DescribeBatchOrganizationRegistrationTasksRequest": {
8727
+ "document": "DescribeBatchOrganizationRegistrationTasks请求参数结构体",
8728
+ "members": [
8729
+ {
8730
+ "disabled": false,
8731
+ "document": "关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。\n\n此接口下面信息必填。\n<ul>\n<li>渠道应用标识: Agent.AppId</li>\n</ul>\n",
8732
+ "example": "无",
8733
+ "member": "Agent",
8734
+ "name": "Agent",
8735
+ "required": true,
8736
+ "type": "object"
8737
+ },
8738
+ {
8739
+ "disabled": false,
8740
+ "document": "企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口[查询企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/DescribeBatchOrganizationRegistrationUrls)可以得到。",
8741
+ "example": "[\"yDRS4UUgygqdcj56UuO4zjExBQcOiB68\",\"yDRS4UUgygqdcj5pUuO4zjEu602GFIe6\"]",
8742
+ "member": "string",
8743
+ "name": "TaskIds",
8744
+ "required": false,
8745
+ "type": "list"
8746
+ }
8747
+ ],
8748
+ "type": "object"
8749
+ },
8750
+ "DescribeBatchOrganizationRegistrationTasksResponse": {
8751
+ "document": "DescribeBatchOrganizationRegistrationTasks返回参数结构体",
8752
+ "members": [
8753
+ {
8754
+ "disabled": false,
8755
+ "document": "企业批量任务状态明细",
8756
+ "example": "无",
8757
+ "member": "BatchOrganizationRegistrationTasksDetails",
8758
+ "name": "Details",
8759
+ "output_required": false,
8760
+ "type": "list",
8761
+ "value_allowed_null": false
8762
+ },
8763
+ {
8764
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
8765
+ "member": "string",
8766
+ "name": "RequestId",
8767
+ "type": "string"
8768
+ }
8769
+ ],
8770
+ "type": "object"
8771
+ },
8621
8772
  "DescribeBatchOrganizationRegistrationUrlsRequest": {
8622
8773
  "document": "DescribeBatchOrganizationRegistrationUrls请求参数结构体",
8623
8774
  "members": [
@@ -1010,6 +1010,14 @@
1010
1010
  "title": "获取创建法人章二维码成功"
1011
1011
  }
1012
1012
  ],
1013
+ "CreateModifyAdminAuthorizationUrl": [
1014
+ {
1015
+ "document": "平台审核因为照片不清晰原因,拒绝了超管授权书,\n此时用户重新上传超管授权书。\n生成的链接是小程序链接",
1016
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateModifyAdminAuthorizationUrl\n<公共请求参数>\n\n{\n \"Agent\": {\n \"ProxyOperator\": {\n \"OpenId\": \"dianziqian\"\n },\n \"ProxyOrganizationOpenId\": \"dianziqian_org\",\n \"AppId\": \"yDwFoUUckpsomwx1UyhWGhIR2RkhOjw2\"\n },\n \"AuthorizationId\": \"yDt3sUUckpxzou8bUuFrZIdxeP9YoXeP\",\n \"Endpoint\": \"HTTP\"\n}",
1017
+ "output": "{\n \"Response\": {\n \"RequestId\": \"1245a2a3537e\",\n \"Url\": \"https://res.ess.tencent.cn/cdn/h5-activity-dev/jump-mp.html?to=REGISTER_ENTERPRISE_FOR_UPDATE_AUTH_FILE&AuthorizationId=yDt3sUUckpxzou8bUuFrZIdxeP9YoXeP\"\n }\n}",
1018
+ "title": "重新上传超管授权书"
1019
+ }
1020
+ ],
1013
1021
  "CreateOrganizationAuthFile": [
1014
1022
  {
1015
1023
  "document": "",
@@ -1136,6 +1144,14 @@
1136
1144
  "title": "批量清理张三的所有认证中的认证流"
1137
1145
  }
1138
1146
  ],
1147
+ "DescribeBatchOrganizationRegistrationTasks": [
1148
+ {
1149
+ "document": "1.通过创建企业批量认证任务 创建了三个认证任务\n2.其中一条认证流认证成功,一条认证流提交成功,一条认证流失败\n3.返回具体的详细信息",
1150
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeBatchOrganizationRegistrationTasks\n<公共请求参数>\n\n{\n \"Agent\": {\n \"ProxyOperator\": {\n \"OpenId\": \"dianziqian\"\n },\n \"ProxyOrganizationOpenId\": \"dianziqian_org\",\n \"AppId\": \"yDwFoUUckpsomwx1UyhWGhIR2RkhOjw2\"\n },\n \"TaskIds\": [\n \"yDt3sUUckpxe0hpyUuO0RjiSvVkhutfO\",\n \"yDt3sUUckpxe0hpwUuO0RjiuHRkYOTjC\",\n \"yDt3sUUckpxe0hpvUuO0Rji8Cg6fp80L\"\n ]\n}",
1151
+ "output": "{\n \"Response\": {\n \"Details\": [\n {\n \"ErrorMessage\": \"\",\n \"Status\": \"Authorization\",\n \"TaskId\": \"yDt3sUUckpxzouw8UuFrZIdSRJJWKucN\"\n },\n {\n \"ErrorMessage\": \"\",\n \"Status\": \"Submit\",\n \"TaskId\": \"yDt3sUUckpxzouw8UuFrZIdSRJJWKucN\"\n },\n {\n \"ErrorMessage\": \"认证失败,错误信息:此企业已经完成认证,请联系此企业的超级管理员(典*谦)加入该企业\",\n \"Status\": \"Failed\",\n \"TaskId\": \"yDt3sUUckpxzouw8UuFrZIdSRJJWKucN\"\n }\n ],\n \"RequestId\": \"s1750068263505524541\"\n }\n}",
1152
+ "title": "查询批量企业认证任务状态"
1153
+ }
1154
+ ],
1139
1155
  "DescribeBatchOrganizationRegistrationUrls": [
1140
1156
  {
1141
1157
  "document": "1. 通过【提交子企业批量认证链接创建任务】接口提交了【典子谦示例企业】和【张三示例企业】两个企业的认证链接创建任务返回任务ID:yDxbNUyKQDx3oAUuO4zjEBQGidlGe4hP\n2. 调用此接口用任务ID生成这两个企业的注册认证链接 ",
@@ -280,7 +280,7 @@
280
280
  "members": [
281
281
  {
282
282
  "disabled": false,
283
- "document": "模型名称,可选值包括 hunyuan-lite、hunyuan-standard、hunyuan-standard-256K、hunyuan-code、hunyuan-role、hunyuan-functioncall、hunyuan-vision、hunyuan-turbo、hunyuan-turbo-latest、hunyuan-turbo-20241223、hunyuan-turbo-20241120、hunyuan-large、hunyuan-large-longcontext、hunyuan-turbo-vision、hunyuan-standard-vision、hunyuan-lite-vision、hunyuan-turbos-20250226、hunyuan-turbos-latest、hunyuan-t1-20250321、hunyuan-t1-latest、hunyuan-turbos-role-plus。各模型介绍请阅读 [产品概述](https://cloud.tencent.com/document/product/1729/104753) 中的说明。注意:不同的模型计费不同,请根据 [购买指南](https://cloud.tencent.com/document/product/1729/97731) 按需调用。",
283
+ "document": "模型名称,可选值参考 [产品概述](https://cloud.tencent.com/document/product/1729/104753) 中混元生文模型列表。\n示例值:hunyuan-turbos-latest\n各模型介绍请阅读 [产品概述](https://cloud.tencent.com/document/product/1729/104753) 中的说明。注意:不同的模型计费不同,请根据 [购买指南](https://cloud.tencent.com/document/product/1729/97731) 按需调用。",
284
284
  "example": "hunyuan-turbos-latest",
285
285
  "member": "string",
286
286
  "name": "Model",
@@ -799,11 +799,11 @@
799
799
  "usage": "out"
800
800
  },
801
801
  "Content": {
802
- "document": "可以传入多种类型的内容,如图片或文本。",
802
+ "document": "可以传入多种类型的内容,如图片、文本。",
803
803
  "members": [
804
804
  {
805
805
  "disabled": false,
806
- "document": "内容类型\n注意:\n需包含至少一个 Type 为\"text\"的参数及至少一个 Type 为\"image_url\"的参数。\n参数值可选范围:[text\", \"image_url\"]\n注意:此字段可能返回 null,表示取不到有效值。",
806
+ "document": "内容类型\n注意:\n需包含至少一个 Type 为\"text\"的参数。\n参数值可选范围:[text\", \"image_url\"]\n注意:此字段可能返回 null,表示取不到有效值。",
807
807
  "example": "text",
808
808
  "member": "string",
809
809
  "name": "Type",