tccli 3.0.1191.1__py2.py3-none-any.whl → 3.0.1192.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -490,6 +490,13 @@
490
490
  "output": "FetchMessageListByOffsetResponse",
491
491
  "status": "online"
492
492
  },
493
+ "FetchMessageListByTimestamp": {
494
+ "document": "根据时间戳查询消息列表",
495
+ "input": "FetchMessageListByTimestampRequest",
496
+ "name": "根据时间戳查询消息列表",
497
+ "output": "FetchMessageListByTimestampResponse",
498
+ "status": "online"
499
+ },
493
500
  "InquireCkafkaPrice": {
494
501
  "document": "Ckafka实例购买/续费询价",
495
502
  "input": "InquireCkafkaPriceRequest",
@@ -10124,6 +10131,79 @@
10124
10131
  ],
10125
10132
  "type": "object"
10126
10133
  },
10134
+ "FetchMessageListByTimestampRequest": {
10135
+ "document": "FetchMessageListByTimestamp请求参数结构体",
10136
+ "members": [
10137
+ {
10138
+ "disabled": false,
10139
+ "document": "实例Id",
10140
+ "example": "xxx",
10141
+ "member": "string",
10142
+ "name": "InstanceId",
10143
+ "required": true,
10144
+ "type": "string"
10145
+ },
10146
+ {
10147
+ "disabled": false,
10148
+ "document": "主题名",
10149
+ "example": "xxx",
10150
+ "member": "string",
10151
+ "name": "Topic",
10152
+ "required": true,
10153
+ "type": "string"
10154
+ },
10155
+ {
10156
+ "disabled": false,
10157
+ "document": "分区id",
10158
+ "example": "1",
10159
+ "member": "int64",
10160
+ "name": "Partition",
10161
+ "required": false,
10162
+ "type": "int"
10163
+ },
10164
+ {
10165
+ "disabled": false,
10166
+ "document": "查询开始时间,13位时间戳",
10167
+ "example": "1577808000000",
10168
+ "member": "int64",
10169
+ "name": "StartTime",
10170
+ "required": false,
10171
+ "type": "int"
10172
+ },
10173
+ {
10174
+ "disabled": false,
10175
+ "document": "最大查询条数,默认20,最大20",
10176
+ "example": "20",
10177
+ "member": "int64",
10178
+ "name": "SinglePartitionRecordNumber",
10179
+ "required": false,
10180
+ "type": "int"
10181
+ }
10182
+ ],
10183
+ "type": "object"
10184
+ },
10185
+ "FetchMessageListByTimestampResponse": {
10186
+ "document": "FetchMessageListByTimestamp返回参数结构体",
10187
+ "members": [
10188
+ {
10189
+ "disabled": false,
10190
+ "document": "返回结果。注意,列表中不返回具体的消息内容(key、value),如果需要查询具体消息内容,请使用FetchMessageByOffset接口",
10191
+ "example": "无",
10192
+ "member": "ConsumerRecord",
10193
+ "name": "Result",
10194
+ "output_required": true,
10195
+ "type": "list",
10196
+ "value_allowed_null": false
10197
+ },
10198
+ {
10199
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
10200
+ "member": "string",
10201
+ "name": "RequestId",
10202
+ "type": "string"
10203
+ }
10204
+ ],
10205
+ "type": "object"
10206
+ },
10127
10207
  "FieldParam": {
10128
10208
  "document": "数据处理——处理链",
10129
10209
  "members": [
@@ -602,6 +602,14 @@
602
602
  "title": "根据offset查询消息"
603
603
  }
604
604
  ],
605
+ "FetchMessageListByTimestamp": [
606
+ {
607
+ "document": "",
608
+ "input": "https://ckafka.tencentcloudapi.com/?Action=FetchMessageListByTimestamp\n&InstanceId=xxx\n&Topic=xxx\n&Partition=1\n&StartTime=1577808000000\n&SinglePartitionRecordNumber=20\n&<公共请求参数>",
609
+ "output": "{\n \"Response\": {\n \"Result\": [\n {\n \"Topic\": \"abc\",\n \"Partition\": 0,\n \"Offset\": 0,\n \"Key\": \"abc\",\n \"Value\": \"abc\",\n \"Timestamp\": 0,\n \"Headers\": \"abc\"\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
610
+ "title": "消息查询"
611
+ }
612
+ ],
605
613
  "InquireCkafkaPrice": [
606
614
  {
607
615
  "document": " ",
@@ -356,7 +356,7 @@
356
356
  ],
357
357
  "DeleteTopic": [
358
358
  {
359
- "document": "",
359
+ "document": "删除日志主题",
360
360
  "input": "POST / HTTP/1.1\nHost: cls.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteTopic\n<公共请求参数>\n\n{\n \"TopicId\": \"a5ce0c9c-0690-44a5-bc79-5f2190626bd0\"\n}",
361
361
  "output": "{\n \"Response\": {\n \"RequestId\": \"6ef60bec-0242-43af-bb20-270359fb54a7\"\n }\n}",
362
362
  "title": "删除日志主题"
@@ -3226,7 +3226,7 @@
3226
3226
  {
3227
3227
  "disabled": false,
3228
3228
  "document": "虚拟引擎id",
3229
- "example": "xx",
3229
+ "example": "DataEngine-xxx",
3230
3230
  "member": "string",
3231
3231
  "name": "DataEngineId",
3232
3232
  "output_required": true,
@@ -8935,27 +8935,30 @@
8935
8935
  {
8936
8936
  "disabled": false,
8937
8937
  "document": "集群总规格",
8938
- "example": "",
8938
+ "example": "128",
8939
8939
  "member": "int64",
8940
8940
  "name": "Total",
8941
+ "output_required": true,
8941
8942
  "type": "int",
8942
8943
  "value_allowed_null": false
8943
8944
  },
8944
8945
  {
8945
8946
  "disabled": false,
8946
8947
  "document": "已占用集群规格",
8947
- "example": "",
8948
+ "example": "100",
8948
8949
  "member": "int64",
8949
8950
  "name": "Used",
8951
+ "output_required": true,
8950
8952
  "type": "int",
8951
8953
  "value_allowed_null": false
8952
8954
  },
8953
8955
  {
8954
8956
  "disabled": false,
8955
8957
  "document": "剩余集群规格",
8956
- "example": "",
8958
+ "example": "28",
8957
8959
  "member": "int64",
8958
8960
  "name": "Available",
8961
+ "output_required": true,
8959
8962
  "type": "int",
8960
8963
  "value_allowed_null": false
8961
8964
  },
@@ -15234,7 +15237,7 @@
15234
15237
  "example": "20210521195919442157",
15235
15238
  "member": "string",
15236
15239
  "name": "TaskId",
15237
- "required": true,
15240
+ "output_required": true,
15238
15241
  "type": "string",
15239
15242
  "value_allowed_null": false
15240
15243
  },
@@ -15244,7 +15247,7 @@
15244
15247
  "example": "[ [ \"allen\", \"27\" ], ",
15245
15248
  "member": "string",
15246
15249
  "name": "ResultSet",
15247
- "required": true,
15250
+ "output_required": true,
15248
15251
  "type": "string",
15249
15252
  "value_allowed_null": false
15250
15253
  },
@@ -15254,7 +15257,7 @@
15254
15257
  "example": "{\"query_id\":\"q202108191952hzb9d11f040173825\",\"columns\":[{\"c_cust",
15255
15258
  "member": "Column",
15256
15259
  "name": "ResultSchema",
15257
- "required": true,
15260
+ "output_required": true,
15258
15261
  "type": "list",
15259
15262
  "value_allowed_null": false
15260
15263
  },
@@ -15264,7 +15267,7 @@
15264
15267
  "example": "objectListMarker={marker}&lastReadFile={filename}&lastReadOffset",
15265
15268
  "member": "string",
15266
15269
  "name": "NextToken",
15267
- "required": true,
15270
+ "output_required": true,
15268
15271
  "type": "string",
15269
15272
  "value_allowed_null": true
15270
15273
  },
@@ -171,7 +171,7 @@
171
171
  "CreateDataEngine": [
172
172
  {
173
173
  "document": "创建数据引擎",
174
- "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDataEngine\n<公共请求参数>\n\n{\n \"EngineType\": \"spark\",\n \"DataEngineName\": \"test\",\n \"ClusterType\": \"spark\",\n \"MinClusters\": 0,\n \"MaxClusters\": 0,\n \"DefaultDataEngine\": true,\n \"CidrBlock\": \"10.255.255.0/16\",\n \"Mode\": 0,\n \"Message\": \"test\",\n \"AutoResume\": true,\n \"Size\": 0,\n \"PayMode\": 0,\n \"TimeSpan\": 1,\n \"TimeUnit\": \"h\",\n \"AutoRenew\": 0,\n \"Tags\": [\n {\n \"TagKey\": \"key\",\n \"TagValue\": \"value\"\n }\n ],\n \"AutoSuspend\": true,\n \"CrontabResumeSuspend\": 0,\n \"CrontabResumeSuspendStrategy\": {\n \"ResumeTime\": \"10\",\n \"SuspendTime\": \"10\",\n \"SuspendStrategy\": 0\n },\n \"EngineExecType\": \"BATCH\",\n \"MaxConcurrency\": 0,\n \"TolerableQueueTime\": 0,\n \"AutoSuspendTime\": 0,\n \"ResourceType\": \"standard_cu\",\n \"ImageVersionName\": \"SuperSQL-P 1.1\"\n}",
174
+ "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDataEngine\n<公共请求参数>\n\n{\n \"EngineType\": \"spark\",\n \"DataEngineName\": \"test\",\n \"ClusterType\": \"spark\",\n \"MinClusters\": 0,\n \"MaxClusters\": 0,\n \"DefaultDataEngine\": true,\n \"CidrBlock\": \"10.255.255.0/16\",\n \"Mode\": 0,\n \"Message\": \"test\",\n \"AutoResume\": true,\n \"Size\": 0,\n \"PayMode\": 0,\n \"TimeSpan\": 1,\n \"TimeUnit\": \"h\",\n \"AutoRenew\": 0,\n \"Tags\": [\n {\n \"TagKey\": \"key\",\n \"TagValue\": \"value\"\n }\n ],\n \"AutoSuspend\": true,\n \"CrontabResumeSuspend\": 0,\n \"CrontabResumeSuspendStrategy\": {\n \"ResumeTime\": \"10\",\n \"SuspendTime\": \"10\",\n \"SuspendStrategy\": 0\n },\n \"EngineExecType\": \"BATCH\",\n \"MaxConcurrency\": 10,\n \"TolerableQueueTime\": 5,\n \"AutoSuspendTime\": 5,\n \"ResourceType\": \"spark_cu\",\n \"ImageVersionName\": \"SuperSQL-P 1.1\"\n}",
175
175
  "output": "{\n \"Response\": {\n \"DataEngineId\": \"DataEngine-abc123\",\n \"RequestId\": \"sd01m2-fasfki-231safas\"\n }\n}",
176
176
  "title": "创建数据引擎"
177
177
  }
@@ -1015,8 +1015,8 @@
1015
1015
  "QueryResult": [
1016
1016
  {
1017
1017
  "document": "",
1018
- "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryResult\n<公共请求参数>\n\n{\n \"NextToken\": \"xx\",\n \"TaskId\": \"xx\"\n}",
1019
- "output": "{\n \"Response\": {\n \"ResultSchema\": [\n {\n \"Comment\": \"xx\",\n \"Scale\": 0,\n \"Name\": \"xx\",\n \"Nullable\": \"xx\",\n \"Precision\": 0,\n \"Type\": \"xx\"\n }\n ],\n \"NextToken\": \"xx\",\n \"ResultSet\": \"xx\",\n \"RequestId\": \"xx\",\n \"TaskId\": \"xx\"\n }\n}",
1018
+ "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryResult\n<公共请求参数>\n\n{\n \"NextToken\": \"objectListMarker={marker}&lastReadFile={filename}&lastReadOffset\",\n \"TaskId\": \"20210521195919442157\"\n}",
1019
+ "output": "{\n \"Response\": {\n \"TaskId\": \"abc\",\n \"ResultSet\": \"abc\",\n \"ResultSchema\": [\n {\n \"Name\": \"abc\",\n \"Type\": \"abc\",\n \"Comment\": \"abc\",\n \"Precision\": 0,\n \"Scale\": 0,\n \"Nullable\": \"abc\",\n \"Position\": 0,\n \"CreateTime\": \"abc\",\n \"ModifiedTime\": \"abc\",\n \"IsPartition\": true\n }\n ],\n \"NextToken\": \"abc\",\n \"RequestId\": \"abc\"\n }\n}",
1020
1020
  "title": "获取任务结果"
1021
1021
  }
1022
1022
  ],
@@ -2221,7 +2221,7 @@
2221
2221
  },
2222
2222
  {
2223
2223
  "disabled": false,
2224
- "document": "唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-751a-41b6-aad6-fae360632808",
2224
+ "document": "唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808",
2225
2225
  "example": "sdcdwxxxws",
2226
2226
  "member": "string",
2227
2227
  "name": "ClientToken",
@@ -2492,8 +2492,8 @@
2492
2492
  },
2493
2493
  {
2494
2494
  "disabled": false,
2495
- "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-751a-41b6-aad6-fae36063280",
2496
- "example": "a9a90aa6-751a-41b6-aad6-fae36063280",
2495
+ "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280",
2496
+ "example": "a9a90aa6-****-****-****-fae36063280",
2497
2497
  "member": "string",
2498
2498
  "name": "ClientToken",
2499
2499
  "required": false,
@@ -12340,8 +12340,8 @@
12340
12340
  },
12341
12341
  {
12342
12342
  "disabled": false,
12343
- "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-751a-41b6-aad6-fae36063280",
12344
- "example": "\"a9a90aa6-751a-41b6-aad6-fae36063280\"",
12343
+ "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280",
12344
+ "example": "a9a90aa6-****-****-****-fae36063280",
12345
12345
  "member": "string",
12346
12346
  "name": "ClientToken",
12347
12347
  "required": false,
@@ -12587,8 +12587,8 @@
12587
12587
  },
12588
12588
  {
12589
12589
  "disabled": false,
12590
- "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-751a-41b6-aad6-fae36063280",
12591
- "example": "a9a90aa6-751a-41b6-aad6-fae36063280",
12590
+ "document": "唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280",
12591
+ "example": "a9a90aa6-****-****-****-fae36063280",
12592
12592
  "member": "string",
12593
12593
  "name": "ClientToken",
12594
12594
  "required": false,
@@ -7694,7 +7694,7 @@
7694
7694
  },
7695
7695
  {
7696
7696
  "disabled": false,
7697
- "document": "查询的套餐类型 (选填 )不传则查询所有套餐;\n目前支持:\n<ul>\n<li>**CloudEnterprise**: 企业版合同</li>\n<li>**SingleSignature**: 单方签章</li>\n<li>**CloudProve**: 签署报告</li>\n<li>**CloudOnlineSign**: 腾讯会议在线签约</li>\n<li>**ChannelWeCard**: 微工卡</li>\n<li>**SignFlow**: 合同套餐</li>\n<li>**SignFace**: 签署意愿(人脸识别)</li>\n<li>**SignPassword**: 签署意愿(密码)</li>\n<li>**SignSMS**: 签署意愿(短信)</li>\n<li>**PersonalEssAuth**: 签署人实名(腾讯电子签认证)</li>\n<li>**PersonalThirdAuth**: 签署人实名(信任第三方认证)</li>\n<li>**OrgEssAuth**: 签署企业实名</li>\n<li>**FlowNotify**: 短信通知</li>\n<li>**AuthService**: 企业工商信息查询</li>\n</ul>",
7697
+ "document": "查询的套餐类型 (选填 )不传则查询所有套餐;\n目前支持:\n<ul>\n<li>**CloudEnterprise**: 企业版合同</li>\n<li>**SingleSignature**: 单方签章</li>\n<li>**CloudProve**: 签署报告</li>\n<li>**CloudOnlineSign**: 腾讯会议在线签约</li>\n<li>**ChannelWeCard**: 微工卡</li>\n<li>**SignFlow**: 合同套餐</li>\n<li>**SignFace**: 签署意愿(人脸识别)</li>\n<li>**SignPassword**: 签署意愿(密码)</li>\n<li>**SignSMS**: 签署意愿(短信)</li>\n<li>**PersonalEssAuth**: 签署人实名(腾讯电子签认证)</li>\n<li>**PersonalThirdAuth**: 签署人实名(信任第三方认证)</li>\n<li>**OrgEssAuth**: 签署企业实名</li>\n<li>**FlowNotify**: 短信通知</li>\n<li>**AuthService**: 企业工商信息查询</li>\n<li>**NoAuthSign**: 形式签</li>\n</ul>",
7698
7698
  "example": "CloudEnterprise",
7699
7699
  "member": "string",
7700
7700
  "name": "QuotaType",
@@ -8238,7 +8238,7 @@
8238
8238
  },
8239
8239
  {
8240
8240
  "disabled": false,
8241
- "document": "合同流程ID,为32位字符串。\n\n[点击产看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)",
8241
+ "document": "合同流程ID,为32位字符串。\n\n[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)",
8242
8242
  "example": "无",
8243
8243
  "member": "string",
8244
8244
  "name": "FlowId",
@@ -480,6 +480,12 @@
480
480
  "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlowByFiles\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDxbTUyKQWPt5NUuO4zjEuyFAyOX3v9C\"\n },\n \"FlowName\": \"文件发起B2C-自定义水印内容\",\n \"Components\": [\n {\n \"ComponentType\": \"WATERMARK\",\n \"ComponentName\": \"合同水印\",\n \"ComponentExtra\": \"{\\\"Font\\\":\\\"黑体\\\",\\\"FontSize\\\":20,\\\"Opacity\\\":0.1,\\\"Density\\\":2,\\\"SubType\\\":\\\"CUSTOM_WATERMARK\\\"}\",\n \"ComponentValue\": \"自定义水印内容\",\n \"ComponentPage\": 0,\n \"ComponentWidth\": 0,\n \"ComponentHeight\": 0,\n \"ComponentPosX\": 0,\n \"ComponentPosY\": 0,\n \"FileIndex\": 0\n }\n ],\n \"Approvers\": [\n {\n \"ApproverType\": 0,\n \"OrganizationName\": \"典子谦示例企业\",\n \"ApproverName\": \"何规\",\n \"ApproverMobile\": \"18200000000\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"ComponentHeight\": 119,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 143.59375,\n \"ComponentPosY\": 169.0625,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n }\n ],\n \"Components\": [\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-CREDIT-CODE\\\",\\\"FontColor\\\":\\\"0,82,217\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 205,\n \"ComponentPosY\": 114,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 339,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-CREDIT-CODE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 234,\n \"ComponentPosY\": 142,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 302,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-LEGAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 191.09,\n \"ComponentPosY\": 172,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 335,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 21,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 155,\n \"ComponentPosY\": 205,\n \"ComponentRequired\": true,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 366,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 107,\n \"ComponentPosY\": 236,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 339,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-MOBILE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 121,\n \"ComponentPosY\": 265,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 327,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 35.09,\n \"ComponentPosY\": 293,\n \"ComponentRequired\": true,\n \"ComponentType\": \"DISTRICT\",\n \"ComponentWidth\": 306,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 44,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 44,\n \"ComponentPosY\": 652,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 505,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"ManualFill\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 145,\n \"ComponentPosY\": 68,\n \"ComponentRequired\": true,\n \"ComponentType\": \"DATE\",\n \"ComponentWidth\": 116,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"ManualFill\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 130.09375,\n \"ComponentPosY\": 555.09375,\n \"ComponentType\": \"DATE\",\n \"ComponentWidth\": 116,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 27,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 134.09,\n \"ComponentPosY\": 628.09,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 398,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{}\",\n \"ComponentHeight\": 16,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 83.09375,\n \"ComponentPosY\": 96.5625,\n \"ComponentType\": \"CHECK_BOX\",\n \"ComponentWidth\": 16,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FillMethod\\\":0,\\\"NotMakeImageCenter\\\":true}\",\n \"ComponentHeight\": 119,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 13,\n \"ComponentPosY\": 394,\n \"ComponentType\": \"FILL_IMAGE\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"LimitCount\\\":3,\\\"AttachmentType\\\":\\\"IMG\\\"}\",\n \"ComponentHeight\": 42,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 12,\n \"ComponentPosY\": 537,\n \"ComponentRequired\": true,\n \"ComponentType\": \"ATTACHMENT\",\n \"ComponentWidth\": 240,\n \"FileIndex\": 0\n }\n ]\n },\n {\n \"ApproverType\": 1,\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18700000000\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"ComponentHeight\": 43,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 433.59375,\n \"ComponentPosY\": 196.0625,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n }\n ],\n \"Components\": [\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 199,\n \"ComponentPosY\": 323,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 309,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 24,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 155,\n \"ComponentPosY\": 386,\n \"ComponentRequired\": true,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 390,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 114.09,\n \"ComponentPosY\": 416,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 299,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-MOBILE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 115.09,\n \"ComponentPosY\": 445,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 367,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"SubType\\\":\\\"EDUCATION\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_30\",\n \"ComponentName\": \"学历\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 8.09375,\n \"ComponentPosY\": 473,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SELECTOR\",\n \"ComponentWidth\": 84,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"EMAIL\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_28\",\n \"ComponentName\": \"邮箱\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 117.09375,\n \"ComponentPosY\": 474,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 292,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"SubType\\\":\\\"GENDER\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_29\",\n \"ComponentName\": \"性别\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 424.09375,\n \"ComponentPosY\": 472,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SELECTOR\",\n \"ComponentWidth\": 84,\n \"FileIndex\": 0\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDCWqUUckpve5id3U4f5EL77tlNh6zTZ\"\n ]\n}",
481
481
  "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCVsUUckpwri2v6U9JHnkxcJrDXddLQ\",\n \"SignId\": \"yDCVsUUckpwri3vwU9JHnky9uvwe3h25\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCVsUUckpwri2vbU9JHnkSdZKiAyEs3\",\n \"SignId\": \"yDCVsUUckpwri2vvU9JHnkvaHtOttw1h\"\n }\n ],\n \"FlowId\": \"yDCVsUUckpwri3vyU9JHnkBDqTFanBa3\",\n \"PreviewUrl\": \"\",\n \"RequestId\": \"s1709793654575755487\"\n }\n}",
482
482
  "title": "文件发起B2C合同,发起方设置合同水印(自定义水印内容)"
483
+ },
484
+ {
485
+ "document": "1.通过PDF文件发起合同 \n2.指定B端签署方为企业【典子谦示例企业】,经办人为【典子谦】 \n3.指定C端签署方为个人【张三】 \n4.B 端签署人 有两个签署控件, 分别是签名控件和签批控件(SIGN_VIRTUAL_COMBINATION),其中签批控件包含四个子控件, 在 Component 中的 \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_29\\\",\\\"ComponentId_27\\\",\\\"ComponentId_28\\\",\\\"ComponentId_30\\\"]}\" 体现 , 包括 审批意见(SIGN_SELECTOR),个人签名(SIGN_SIGNATURE),签署日期(SIGN_DATE),批注附言(SIGN_MULTI_LINE_TEXT) \n5.C 端签署人 有一个签批控件(SIGN_VIRTUAL_COMBINATION),其中签批控件包含三个子控件, 在 Component 中的 \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_19\\\",\\\"ComponentId_17\\\",\\\"ComponentId_18\\\"]}\" 体现 , 包括 审批意见(SIGN_SELECTOR),个人签名(SIGN_SIGNATURE),签署日期(SIGN_DATE)",
486
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlowByFiles\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDxbTUyKQWPt5NUuO4zjEuyFAyOX3v9C\"\n },\n \"FlowName\": \"文件发起-签批\",\n \"Approvers\": [\n {\n \"ApproverType\": 0,\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"SignComponents\": [\n {\n \"ComponentId\": \"ComponentId_1\",\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 100\n },\n {\n \"ComponentId\": \"ComponentId_2\",\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 50\n },\n {\n \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_29\\\",\\\"ComponentId_27\\\",\\\"ComponentId_28\\\",\\\"ComponentId_30\\\"]}\",\n \"ComponentHeight\": 211,\n \"ComponentId\": \"ComponentId_26\",\n \"FileIndex\": 0,\n \"ComponentName\": \"签批1\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 478,\n \"ComponentType\": \"SIGN_VIRTUAL_COMBINATION\",\n \"ComponentWidth\": 210,\n \"ComponentRequired\": false\n },\n {\n \"ComponentExtra\": \"{\\\"Values\\\":[\\\"审批通过\\\",\\\"审批不通过\\\"],\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"MultiSelect\\\":false}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_29\",\n \"FileIndex\": 0,\n \"ComponentName\": \"审批意见\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 567,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SELECTOR\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Date\\\":true,\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 43,\n \"ComponentId\": \"ComponentId_27\",\n \"ComponentName\": \"个人签名/印章\",\n \"FileIndex\": 0,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 185,\n \"ComponentPosY\": 478,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"Format\\\":\\\"yyyy年m月d日\\\",\\\"Gaps\\\":\\\"2,2\\\",\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Center\\\",\\\"Font\\\":\\\"黑体\\\",\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_28\",\n \"ComponentName\": \"签署日期\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 185,\n \"FileIndex\": 0,\n \"ComponentPosY\": 541,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"VerticalAlign\\\":\\\"Top\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 54,\n \"ComponentId\": \"ComponentId_30\",\n \"FileIndex\": 0,\n \"ComponentName\": \"批注附言\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 635,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_MULTI_LINE_TEXT\",\n \"ComponentWidth\": 210\n }\n ]\n },\n {\n \"ApproverType\": 1,\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18888888888\",\n \"SignComponents\": [\n {\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 100\n },\n {\n \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_19\\\",\\\"ComponentId_17\\\",\\\"ComponentId_18\\\"]}\",\n \"ComponentHeight\": 211,\n \"ComponentId\": \"ComponentId_16\",\n \"ComponentName\": \"签批1\",\n \"FileIndex\": 0,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 280,\n \"ComponentPosY\": 478,\n \"ComponentType\": \"SIGN_VIRTUAL_COMBINATION\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Values\\\":[\\\"审批通过\\\",\\\"审批不通过\\\"],\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"MultiSelect\\\":false}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_19\",\n \"ComponentName\": \"审批意见\",\n \"FileIndex\": 0,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 280,\n \"ComponentPosY\": 567,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SELECTOR\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Format\\\":\\\"yyyy年m月d日\\\",\\\"Gaps\\\":\\\"2,2\\\",\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Center\\\",\\\"Font\\\":\\\"黑体\\\",\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_18\",\n \"ComponentName\": \"签署日期\",\n \"FileIndex\": 0,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 285,\n \"ComponentPosY\": 541,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"Date\\\":true,\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 43,\n \"ComponentId\": \"ComponentId_17\",\n \"ComponentName\": \"个人签名/印章\",\n \"FileIndex\": 0,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 285,\n \"ComponentPosY\": 478,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDCWqUUckpve5id3U4f5EL77tlNh6zTZ\"\n ],\n \"Unordered\": true\n}",
487
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiigxUyngyQvyHhcuKe8j\",\n \"SignId\": \"yDCm3UUckpuhiig3UyngyQvuGnj2Dmlb\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiigbUyngyQv8CgR9QvQ5\",\n \"SignId\": \"yDCm3UUckpuhiig1UyngyQvBDiyvQ5Qw\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiigkUyngyQvus30o8lsI\",\n \"PreviewUrl\": \"\",\n \"RequestId\": \"s1726301013319902854\"\n }\n}",
488
+ "title": "文件发起B2C合同,签署方设置签批控件"
483
489
  }
484
490
  ],
485
491
  "CreateFlowEvidenceReport": [
@@ -213,7 +213,7 @@
213
213
  "document": "1. 包含<b>个人/自然人</b>签署 <b>张三</b>\n2. 包含第三方子企业<b>李四的示例企业</b>员工<b>李四</b>\n3. 包含平台企业<b>王五示例企业</b>的员工<b>王五</b> (NotChannelOrganization设置为true)\n4. 王五的签署区是通过关键字<b>甲方签章位置</b>生成印章区域",
214
214
  "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n },\n \"ProxyAppId\": \"\"\n },\n \"FlowName\": \"购买50吨西红柿的合同(15:53:35)\",\n \"FlowApprovers\": [\n {\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"ApproverType\": \"PERSON\",\n \"SignComponents\": [\n {\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"FileIndex\": 0,\n \"ComponentWidth\": 112,\n \"ComponentHeight\": 40,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 146.15625,\n \"ComponentPosY\": 472.78125,\n \"ComponentValue\": \"\"\n }\n ]\n },\n {\n \"Name\": \"李四\",\n \"Mobile\": \"17333333333\",\n \"OrganizationName\": \"李四的示例企业\",\n \"OpenId\": \"lisi\",\n \"OrganizationOpenId\": \"org_lisi\",\n \"ApproverType\": \"ORGANIZATION\",\n \"SignComponents\": [\n {\n \"ComponentType\": \"SIGN_SEAL\",\n \"FileIndex\": 0,\n \"ComponentWidth\": 112,\n \"ComponentHeight\": 40,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 146.15625,\n \"ComponentPosY\": 472.78125,\n \"ComponentValue\": \"\"\n }\n ]\n },\n {\n \"Name\": \"王五\",\n \"Mobile\": \"13333333333\",\n \"OrganizationName\": \"王五示例企业\",\n \"NotChannelOrganization\": true,\n \"ApproverType\": \"ORGANIZATION\",\n \"SignComponents\": [\n {\n \"ComponentType\": \"SIGN_SEAL\",\n \"FileIndex\": 0,\n \"ComponentWidth\": 112,\n \"ComponentHeight\": 40,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 146.15625,\n \"ComponentPosY\": 472.78125,\n \"ComponentValue\": \"\"\n },\n {\n \"ComponentId\": \"甲方签章位置\",\n \"ComponentType\": \"SIGN_SEAL\",\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentWidth\": 112,\n \"ComponentHeight\": 40\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDSLoUUckpob08ffUxVoXTnu6fPhgjmx\"\n ],\n \"Unordered\": true\n}",
215
215
  "output": "{\n \"Response\": {\n \"FlowId\": \"yDSLoUUckpob829aUxvfkKfCKWvrOGyb\",\n \"Approvers\": [\n {\n \"SignId\": \"yDSLoUUckpob829wUxvfkKfCOwpAOD9N\",\n \"RecipientId\": \"yDSLoUUckpob829yUxvfkKfssEItYFKp\",\n \"ApproverRoleName\": \"\"\n },\n {\n \"SignId\": \"yDSLoUUckpob829tUxvfkKfuX06FFWEw\",\n \"RecipientId\": \"yDSLoUUckpob829vUxvfkKf83OAYth3A\",\n \"ApproverRoleName\": \"\"\n },\n {\n \"SignId\": \"yDSLoUUckpob829kUxvfkKfuiREpXebq\",\n \"RecipientId\": \"yDSLoUUckpob829oUxvfkKfwRMwMrwrM\",\n \"ApproverRoleName\": \"\"\n }\n ],\n \"RequestId\": \"6545213e-4554-4839-a69d-6ef75344c749\"\n }\n}",
216
- "title": "使用文件创建B2B2C的合同"
216
+ "title": "使用文件创建B2B2C的合同 - 同时使用关键字和绝对定位"
217
217
  },
218
218
  {
219
219
  "document": "发起只有<b>个人/自然人</b>签署 <b>张三</b>来签署的合同",
@@ -232,6 +232,48 @@
232
232
  "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"ProxyOperator\": {\n \"OpenId\": \"zhangsan\"\n },\n \"ProxyOrganizationOpenId\": \"ess_open_organization_1\",\n \"AppId\": \"yDwFoUUckps**********yhWGhIR2RkhOjw2\"\n },\n \"Unordered\": true,\n \"FlowName\": \"发起动态签署人合同示例\",\n \"FlowApprovers\": [\n {\n \"Name\": \"\",\n \"Mobile\": \"\",\n \"ApproverType\": \"PERSON\",\n \"ApproverRoleName\": \"个人签署方\",\n \"ApproverOption\": {\n \"FillType\": 1\n },\n \"SignComponents\": [\n {\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 260,\n \"ComponentHeight\": 100\n }\n ]\n },\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"ApproverRoleName\": \"企业签署方\",\n \"ApproverOption\": {\n \"FillType\": 1\n },\n \"SignComponents\": [\n {\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 260,\n \"ComponentHeight\": 100\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDwFhUUckpsxas68UuZf2EREDkOykmDp\"\n ]\n}",
233
233
  "output": "{\n \"Response\": {\n \"FlowId\": \"2fb48c3945****65aaedf6\",\n \"Approvers\": [\n {\n \"SignId\": \"yDw7hUUckpkm57vuUxeFIKavjSsJtcaN\",\n \"RecipientId\": \"yDw7hUUckpkm57v4UxeFIKaS5kF2iWh8\",\n \"ApproverRoleName\": \"个人签署方\"\n },\n {\n \"SignId\": \"yDw7hUUckpkm57v7UxeFIKa8kitjb9XB\",\n \"RecipientId\": \"yDw7hUUckpkm57vxUxeFIKaCJX9krcZN\",\n \"ApproverRoleName\": \"企业签署方\"\n }\n ],\n \"RequestId\": \"s1234345677xxxx\"\n }\n}",
234
234
  "title": "创建含有动态签署人流程,签署方不指定具体的签署人"
235
+ },
236
+ {
237
+ "document": "1.处方单场景的\"典子谦\"医生需要自动签(典子谦参与人的ApproverType设置成PERSON_AUTO_SIGN, 并且AutoSignScene设置成E_PRESCRIPTION_AUTO_SIGN表明是处方单场景)\n2.处方单的患者张三需要手工签署(张三参与人的ApproverType设置成PERSON)\n3.双方签署方的签署控件都是通过关键字生成(典子谦签署区GenerateMode设置成KEYWORD并且ComponentId设置成关键字\"处方医生\", 张三签署区GenerateMode设置成KEYWORD并且ComponentId设置成关键字\"患者签名\" )\n4.不给合同签署方发送短信 (NotifyType设置成NONE)",
238
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"FlowName\": \"文件发起-处方单\",\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"PERSON_AUTO_SIGN\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentId\": \"处方医生\",\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"OffsetX\": 100.5,\n \"OffsetY\": 200.5\n },\n {\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentId\": \"DATE\",\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"OffsetX\": 100.5,\n \"OffsetY\": 200.5\n }\n ]\n },\n {\n \"ApproverType\": \"PERSON\",\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentId\": \"患者签名\",\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"OffsetX\": 100.5,\n \"OffsetY\": 200.5\n },\n {\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentId\": \"DATE1\",\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"OffsetX\": 100.5,\n \"OffsetY\": 200.5\n }\n ]\n }\n ],\n \"AutoSignScene\": \"E_PRESCRIPTION_AUTO_SIGN\",\n \"FileIds\": [\n \"yDRSRUUgygj6qnwfUuO4zjEwc193c2hH\"\n ],\n \"Unordered\": true\n}",
239
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiixbUyngyQvxNVFfGhPt\",\n \"SignId\": \"yDCm3UUckpuhiixaUyngyQvCEn8PpCcq\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiixyUyngyQvEiHySXVJ0\",\n \"SignId\": \"yDCm3UUckpuhiixwUyngyQvCtQdTNFcF\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiixuUyngyQvBQysQq7t7\",\n \"RequestId\": \"s1726221157105242252\"\n }\n}",
240
+ "title": "处方单场景"
241
+ },
242
+ {
243
+ "document": "1.签署方包括本方子客企业(需要传递 OrganzationOpenId,和 OpenId)、他方SaaS企业(需要传递 NotChannelOrganization = true)和个人(Approvers中有三个ApproverInfo元素)。\n2.所有签署方企业都不包允许有签署控件。\n3.设置当前流程为可拖拽(SignBeanTag)。\n4.本合同为无序签署(Unordered传递为true)。",
244
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"Unordered\": true,\n \"FlowName\": \"签署时拖拽签署控件合同\",\n \"SignBeanTag\": 1,\n \"FlowType\": \"示例合同\",\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"OrganizationOpenId\": \"org_dianziqian\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"OpenId\": \"n9527\",\n \"NotifyType\": \"NONE\",\n \"PreReadTime\": 10\n },\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"NotChannelOrganization\": true,\n \"OrganizationName\": \"张三示例企业\",\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"NotifyType\": \"NONE\",\n \"PreReadTime\": 10\n },\n {\n \"ApproverType\": \"PERSON\",\n \"NotifyType\": \"NONE\",\n \"Name\": \"李四\",\n \"Mobile\": \"15100000000\",\n \"PreReadTime\": 10\n }\n ],\n \"FileIds\": [\n \"yDR4yUUgyg1qqlj7UuO4zjES3G9Shoxk\"\n ]\n}",
245
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiivxUyngyQvCtRL9F1iX\",\n \"SignId\": \"yDCm3UUckpuhiiv7UyngyQvweoRnofAx\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiv4UyngyQvw4w7nChfk\",\n \"SignId\": \"yDCm3UUckpuhiivuUyngyQvCexPDjr49\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiivbUyngyQvxPc40bmBS\",\n \"SignId\": \"yDCm3UUckpuhiivaUyngyQvTjdVbIqsr\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiiv9UyngyQvE2eRmVW3M\",\n \"RequestId\": \"s1726285140721667651\"\n }\n}",
246
+ "title": "创建一份签署方拖拽签署区域的合同"
247
+ },
248
+ {
249
+ "document": "1.通过PDF文件发起合同 \n2.指定B端签署方为企业【典子谦示例企业】,经办人为【典子谦】 \n3.通过绝对对位方式指定【典子谦示例企业】的签署控件为印章控件,控件位置为该文件的第1页,横坐标160,纵坐标260的位置,控件高宽为119x119(公章大小) \n4.指定C端签署方为个人【李四】,联系电话为【15100000000】 \n5.通过绝对对位方式指定【李四】的签署控件为手写签名控件,控件位置为该文件的第1页,横坐标60,纵坐标260的位置,控件高宽为119x43(推荐的手写签名大小) \n6.通过绝对定位方式在合同文件的第1页,横坐标360,纵坐标360的位置放置一个单行文本控件,并写入内容【我是一个单行文本】\n 7.完成合同发起",
250
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"FlowName\": \"通过文件发起合同\",\n \"FlowDescription\": \"通过文件发起合同\",\n \"Unordered\": false,\n \"FlowType\": \"示例合同\",\n \"Deadline\": 1830268800,\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"OrganizationOpenId\": \"org_dianziqian\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"OpenId\": \"n9527\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"SignComponents\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentPosY\": 260,\n \"ComponentHeight\": 119,\n \"ComponentWidth\": 119,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentValue\": \"\"\n }\n ]\n },\n {\n \"ApproverType\": \"PERSON\",\n \"NotifyType\": \"NONE\",\n \"Name\": \"李四\",\n \"Mobile\": \"15100000000\",\n \"PreReadTime\": 10,\n \"SignComponents\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 60,\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 119,\n \"ComponentHeight\": 43,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\"\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDwqYUUckp39gkfxUu14JJPxaTyM1ltq\"\n ],\n \"Components\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 360,\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"ComponentType\": \"TEXT\",\n \"ComponentValue\": \"我是一个单行文本\",\n \"FileIndex\": 0\n }\n ]\n}",
251
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiwrUyngyQvEAAG8aSuj\",\n \"SignId\": \"yDCm3UUckpuhiiwlUyngyQvEVt11WQd6\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiw5UyngyQvvbypsA2N5\",\n \"SignId\": \"yDCm3UUckpuhiiw0UyngyQvxIu5Rvq2L\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiiw2UyngyQv8OPSX8qYD\",\n \"RequestId\": \"s1726284341125380532\"\n }\n}",
252
+ "title": "通过文件发起B2C合同-控件使用绝对定位方式"
253
+ },
254
+ {
255
+ "document": "1.通过PDF文件发起合同 \n2.指定B端签署方为企业【典子谦示例企业】,经办人为【典子谦】 \n3.通过绝对对位方式指定【典子谦示例企业】的签署控件为印章控件,控件类型为【KEYWORD】关键字类型,并设置关键字为【签名】,关键字查找顺序为【Positive-正序】关键字位置模式为【Middle-居中】,控件高宽为119x119(公章大小) \n4.指定C端签署方为个人【李四】,联系电话为【15100000000】 \n5.通过绝对对位方式指定【李四】的签署控件为手写签名控件,控件位置为该文件的第1页,横坐标60,纵坐标260的位置,控件高宽为119x43(推荐的手写签名大小) \n6.通过绝对定位方式在合同文件的第1页,横坐标360,纵坐标360的位置放置一个单行文本控件,并写入内容【我是一个单行文本】 \n7.完成合同发起",
256
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"FlowName\": \"通过文件发起合同-关键字定位\",\n \"FlowDescription\": \"通过文件发起合同\",\n \"Unordered\": false,\n \"FlowType\": \"示例合同\",\n \"Deadline\": 1830268800,\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"OrganizationOpenId\": \"org_dianziqian\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"OpenId\": \"n9527\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"SignComponents\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 0,\n \"ComponentPosY\": 0,\n \"ComponentWidth\": 119,\n \"ComponentHeight\": 119,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"GenerateMode\": \"KEYWORD\",\n \"ComponentId\": \"签名\",\n \"KeywordOrder\": \"Positive\",\n \"RelativeLocation\": \"Middle\"\n }\n ]\n },\n {\n \"ApproverType\": \"PERSON\",\n \"NotifyType\": \"NONE\",\n \"Name\": \"李四\",\n \"Mobile\": \"15100000000\",\n \"PreReadTime\": 10,\n \"SignComponents\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 60,\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 119,\n \"ComponentHeight\": 43,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\"\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDwqYUUckp39gkfxUu14JJPxaTyM1ltq\"\n ],\n \"Components\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 360,\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"ComponentType\": \"TEXT\",\n \"ComponentValue\": \"我是一个单行文本\",\n \"FileIndex\": 0\n }\n ]\n}",
257
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiivjUyngyQvwaZ4Hg4MJ\",\n \"SignId\": \"yDCm3UUckpuhiiv8UyngyQvy5NE74xeK\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiivhUyngyQvuSNWvTWW3\",\n \"SignId\": \"yDCm3UUckpuhiiv2UyngyQvwKnI8ePPG\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiivqUyngyQvB0ZL8Vhvu\",\n \"RequestId\": \"s1726285565082734481\"\n }\n}",
258
+ "title": "通过文件发起B2C合同-控件使用关键字定位方式"
259
+ },
260
+ {
261
+ "document": "1.只有一个个人C端参与人 (Approvers只有一个ApproverInfo元素)\n2.签署区的指定通过绝对定位表达 (SignComponents中Component元素指定具体ComponentHeight/ComponentWidth/ComponentPosX/ComponentPosY/ComponentPage的方式)\n3.C端参与人只有一个签名签署控件(SignComponents只有一个Component元素, 且这个元素的ComponentType是SIGN_SIGNATURE)\n4.C端签署人需要人脸校验来签署合同 (ApproverSignTypes属性设置成[1]表示只能通过人脸识别校验来签署合同)",
262
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"110101200610116558\"\n }\n },\n \"FlowName\": \"西瓜采购协议(16:18:47)\",\n \"FlowApprovers\": [\n {\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"ApproverType\": \"PERSON\",\n \"ApproverSignTypes\": [\n 1\n ],\n \"SignComponents\": [\n {\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"FileIndex\": 0,\n \"ComponentWidth\": 112,\n \"ComponentHeight\": 40,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 146.15625,\n \"ComponentPosY\": 472.78125,\n \"ComponentValue\": \"\"\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDSLoUUckpob089cUxVoXTn9T1cRb8W7\"\n ],\n \"Unordered\": true,\n \"Components\": [\n {\n \"ComponentPage\": 1,\n \"ComponentPosX\": 360,\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"ComponentType\": \"TEXT\",\n \"ComponentValue\": \"我是一个单行文本\",\n \"FileIndex\": 0\n }\n ]\n}",
263
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhii1vUyngyQvwQVL5QVup\",\n \"SignId\": \"yDCm3UUckpuhii1tUyngyQvupb93iMFu\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhii1aUyngyQvu5Rn80ewb\",\n \"RequestId\": \"s1726295273067158522\"\n }\n}",
264
+ "title": "创建只有个人C端签署, 签署人需要人脸校验认证的合同流程"
265
+ },
266
+ {
267
+ "document": "1.通过PDF文件发起合同 \n2.指定B端签署方为企业【典子谦示例企业】,经办人为【典子谦】 \n3.指定C端签署方为个人【张三】 \n4.水印控件通过外层 参数 Components 传递,ComponentType 设置为 WATERMARK,设置\"ComponentExtra\": \"{\\\"Font\\\":\\\"黑体\\\",\\\"FontSize\\\":20,\\\"Opacity\\\":0.1,\\\"Density\\\":2,\\\"SubType\\\":\\\"CUSTOM_WATERMARK\\\"}\",ComponentValue 为自定义水印的内容",
268
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"FlowName\": \"文件发起B2C-自定义水印内容\",\n \"Components\": [\n {\n \"ComponentType\": \"WATERMARK\",\n \"ComponentName\": \"合同水印\",\n \"ComponentExtra\": \"{\\\"Font\\\":\\\"黑体\\\",\\\"FontSize\\\":20,\\\"Opacity\\\":0.1,\\\"Density\\\":2,\\\"SubType\\\":\\\"CUSTOM_WATERMARK\\\"}\",\n \"ComponentValue\": \"自定义水印内容\",\n \"ComponentPage\": 0,\n \"ComponentWidth\": 0,\n \"ComponentHeight\": 0,\n \"ComponentPosX\": 0,\n \"ComponentPosY\": 0,\n \"FileIndex\": 0\n }\n ],\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"OrganizationOpenId\": \"org_dianziqian\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"OpenId\": \"n9527\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"ComponentHeight\": 119,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 143.59375,\n \"ComponentPosY\": 169.0625,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n }\n ],\n \"Components\": [\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-CREDIT-CODE\\\",\\\"FontColor\\\":\\\"0,82,217\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 205,\n \"ComponentPosY\": 114,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 339,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-CREDIT-CODE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 234,\n \"ComponentPosY\": 142,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 302,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"BUSI-LEGAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 191.09,\n \"ComponentPosY\": 172,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 335,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 21,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 155,\n \"ComponentPosY\": 205,\n \"ComponentRequired\": true,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 366,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 107,\n \"ComponentPosY\": 236,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 339,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-MOBILE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 121,\n \"ComponentPosY\": 265,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 327,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 35.09,\n \"ComponentPosY\": 293,\n \"ComponentRequired\": true,\n \"ComponentType\": \"DISTRICT\",\n \"ComponentWidth\": 306,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 44,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 44,\n \"ComponentPosY\": 652,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 505,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"ManualFill\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 145,\n \"ComponentPosY\": 68,\n \"ComponentRequired\": true,\n \"ComponentType\": \"DATE\",\n \"ComponentWidth\": 116,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"ManualFill\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 130.09375,\n \"ComponentPosY\": 555.09375,\n \"ComponentType\": \"DATE\",\n \"ComponentWidth\": 116,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 27,\n \"ComponentPage\": 2,\n \"ComponentPosX\": 134.09,\n \"ComponentPosY\": 628.09,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 398,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{}\",\n \"ComponentHeight\": 16,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 83.09375,\n \"ComponentPosY\": 96.5625,\n \"ComponentType\": \"CHECK_BOX\",\n \"ComponentWidth\": 16,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FillMethod\\\":0,\\\"NotMakeImageCenter\\\":true}\",\n \"ComponentHeight\": 119,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 13,\n \"ComponentPosY\": 394,\n \"ComponentType\": \"FILL_IMAGE\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"LimitCount\\\":3,\\\"AttachmentType\\\":\\\"IMG\\\"}\",\n \"ComponentHeight\": 42,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 12,\n \"ComponentPosY\": 537,\n \"ComponentRequired\": true,\n \"ComponentType\": \"ATTACHMENT\",\n \"ComponentWidth\": 240,\n \"FileIndex\": 0\n }\n ]\n },\n {\n \"ApproverType\": \"PERSON\",\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"NotifyType\": \"NONE\",\n \"SignComponents\": [\n {\n \"ComponentHeight\": 43,\n \"ComponentPage\": 7,\n \"ComponentPosX\": 433.59375,\n \"ComponentPosY\": 196.0625,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119,\n \"FileIndex\": 0\n }\n ],\n \"Components\": [\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-NAME\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 199,\n \"ComponentPosY\": 323,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 309,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"LOCATION\\\"}\",\n \"ComponentHeight\": 24,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 155,\n \"ComponentPosY\": 386,\n \"ComponentRequired\": true,\n \"ComponentType\": \"MULTI_LINE_TEXT\",\n \"ComponentWidth\": 390,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 114.09,\n \"ComponentPosY\": 416,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 299,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"RecipientInfoType\\\":\\\"PERSONAL-MOBILE\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentPage\": 1,\n \"ComponentPosX\": 115.09,\n \"ComponentPosY\": 445,\n \"ComponentRequired\": true,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 367,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"SubType\\\":\\\"EDUCATION\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_30\",\n \"ComponentName\": \"学历\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 8.09375,\n \"ComponentPosY\": 473,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SELECTOR\",\n \"ComponentWidth\": 84,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"SubType\\\":\\\"EMAIL\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_28\",\n \"ComponentName\": \"邮箱\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 117.09375,\n \"ComponentPosY\": 474,\n \"ComponentType\": \"TEXT\",\n \"ComponentWidth\": 292,\n \"FileIndex\": 0\n },\n {\n \"ComponentExtra\": \"{\\\"SubType\\\":\\\"GENDER\\\"}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_29\",\n \"ComponentName\": \"性别\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 424.09375,\n \"ComponentPosY\": 472,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SELECTOR\",\n \"ComponentWidth\": 84,\n \"FileIndex\": 0\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDCWqUUckpve5id3U4f5EL77tlNh6zTZ\"\n ]\n}",
269
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiir7UyngyQv8jrtNLw6f\",\n \"SignId\": \"yDCm3UUckpuhiir4UyngyQv1cGEVXL3w\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiruUyngyQvdLX3DRJK7\",\n \"SignId\": \"yDCm3UUckpuhiirbUyngyQvpaOBqrvlD\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiirxUyngyQv1srq0CaC8\",\n \"RequestId\": \"s1726295754261345096\"\n }\n}",
270
+ "title": "文件发起B2C合同,发起方设置合同水印(自定义水印内容)"
271
+ },
272
+ {
273
+ "document": "1.通过PDF文件发起合同 \n2.指定B端签署方为企业【典子谦示例企业】,经办人为【典子谦】 \n3.指定C端签署方为个人【张三】 \n4.B 端签署人 有两个签署控件, 分别是签名控件和签批控件(SIGN_VIRTUAL_COMBINATION),其中签批控件包含四个子控件, 在 Component 中的 \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_29\\\",\\\"ComponentId_27\\\",\\\"ComponentId_28\\\",\\\"ComponentId_30\\\"]}\" 体现 , 包括 审批意见(SIGN_SELECTOR),个人签名(SIGN_SIGNATURE),签署日期(SIGN_DATE),批注附言(SIGN_MULTI_LINE_TEXT)\n5.C 端签署人 有一个签批控件(SIGN_VIRTUAL_COMBINATION),其中签批控件包含三个子控件, 在 Component 中的 \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_19\\\",\\\"ComponentId_17\\\",\\\"ComponentId_18\\\"]}\" 体现 , 包括 审批意见(SIGN_SELECTOR),个人签名(SIGN_SIGNATURE),签署日期(SIGN_DATE)",
274
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowByFiles\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n }\n },\n \"FlowName\": \"文件发起-签批\",\n \"FlowApprovers\": [\n {\n \"ApproverType\": \"ORGANIZATION\",\n \"OrganizationOpenId\": \"org_dianziqian\",\n \"OpenId\": \"n9527\",\n \"Name\": \"典子谦\",\n \"Mobile\": \"13200000000\",\n \"OrganizationName\": \"典子谦示例企业\",\n \"SignComponents\": [\n {\n \"ComponentId\": \"ComponentId_1\",\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 100\n },\n {\n \"ComponentId\": \"ComponentId_2\",\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 50\n },\n {\n \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_29\\\",\\\"ComponentId_27\\\",\\\"ComponentId_28\\\",\\\"ComponentId_30\\\"]}\",\n \"ComponentHeight\": 211,\n \"ComponentId\": \"ComponentId_26\",\n \"ComponentName\": \"签批1\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 478,\n \"ComponentType\": \"SIGN_VIRTUAL_COMBINATION\",\n \"ComponentWidth\": 210,\n \"ComponentRequired\": false\n },\n {\n \"ComponentExtra\": \"{\\\"Values\\\":[\\\"审批通过\\\",\\\"审批不通过\\\"],\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"MultiSelect\\\":false}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_29\",\n \"ComponentName\": \"审批意见\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 567,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SELECTOR\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Date\\\":true,\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 43,\n \"ComponentId\": \"ComponentId_27\",\n \"ComponentName\": \"个人签名/印章\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 185,\n \"ComponentPosY\": 478,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"Format\\\":\\\"yyyy年m月d日\\\",\\\"Gaps\\\":\\\"2,2\\\",\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Center\\\",\\\"Font\\\":\\\"黑体\\\",\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_28\",\n \"ComponentName\": \"签署日期\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 185,\n \"ComponentPosY\": 541,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"VerticalAlign\\\":\\\"Top\\\",\\\"Font\\\":\\\"黑体\\\"}\",\n \"ComponentHeight\": 54,\n \"ComponentId\": \"ComponentId_30\",\n \"ComponentName\": \"批注附言\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 180,\n \"ComponentPosY\": 635,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_MULTI_LINE_TEXT\",\n \"ComponentWidth\": 210\n }\n ]\n },\n {\n \"ApproverType\": \"PERSON\",\n \"Name\": \"张三\",\n \"Mobile\": \"18888888888\",\n \"SignComponents\": [\n {\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 160,\n \"ComponentHeight\": 100\n },\n {\n \"ComponentExtra\": \"{\\\"Children\\\":[\\\"ComponentId_19\\\",\\\"ComponentId_17\\\",\\\"ComponentId_18\\\"]}\",\n \"ComponentHeight\": 211,\n \"ComponentId\": \"ComponentId_16\",\n \"ComponentName\": \"签批1\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 280,\n \"ComponentPosY\": 478,\n \"ComponentType\": \"SIGN_VIRTUAL_COMBINATION\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Values\\\":[\\\"审批通过\\\",\\\"审批不通过\\\"],\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Left\\\",\\\"Font\\\":\\\"黑体\\\",\\\"MultiSelect\\\":false}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_19\",\n \"ComponentName\": \"审批意见\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 280,\n \"ComponentPosY\": 567,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SELECTOR\",\n \"ComponentWidth\": 210\n },\n {\n \"ComponentExtra\": \"{\\\"Format\\\":\\\"yyyy年m月d日\\\",\\\"Gaps\\\":\\\"2,2\\\",\\\"FontSize\\\":12,\\\"FontAlign\\\":\\\"Center\\\",\\\"Font\\\":\\\"黑体\\\",\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 20,\n \"ComponentId\": \"ComponentId_18\",\n \"ComponentName\": \"签署日期\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 285,\n \"ComponentPosY\": 541,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_DATE\",\n \"ComponentWidth\": 119\n },\n {\n \"ComponentExtra\": \"{\\\"Date\\\":true,\\\"isAfterCut\\\":true}\",\n \"ComponentHeight\": 43,\n \"ComponentId\": \"ComponentId_17\",\n \"ComponentName\": \"个人签名/印章\",\n \"ComponentPage\": 1,\n \"ComponentPosX\": 285,\n \"ComponentPosY\": 478,\n \"ComponentRequired\": true,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentWidth\": 119\n }\n ]\n }\n ],\n \"FileIds\": [\n \"yDCWqUUckpve5id3U4f5EL77tlNh6zTZ\"\n ],\n \"Unordered\": true\n}",
275
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiwrUyngyQvEAAG8aSuj\",\n \"SignId\": \"yDCm3UUckpuhiiwlUyngyQvEVt11WQd6\"\n },\n {\n \"ApproverRoleName\": \"\",\n \"RecipientId\": \"yDCm3UUckpuhiiw5UyngyQvvbypsA2N5\",\n \"SignId\": \"yDCm3UUckpuhiiw0UyngyQvxIu5Rvq2L\"\n }\n ],\n \"FlowId\": \"yDCm3UUckpuhiiw2UyngyQv8OPSX8qYD\",\n \"RequestId\": \"s1726284341125380532\"\n }\n}",
276
+ "title": "文件发起 签署方含有签批控件"
235
277
  }
236
278
  ],
237
279
  "ChannelCreateFlowGroupByFiles": [
@@ -729,6 +729,15 @@
729
729
  "name": "CurrentItemId",
730
730
  "required": false,
731
731
  "type": "string"
732
+ },
733
+ {
734
+ "disabled": false,
735
+ "document": "扩展字段,json字符串,需要base64加密",
736
+ "example": "eyJDaXR5IjoiV3VoYW4iLCJDb3VudHJ5IjoiQ2hpbmEiLCJUZWwiOjI3fQ==",
737
+ "member": "string",
738
+ "name": "Extension",
739
+ "required": false,
740
+ "type": "string"
732
741
  }
733
742
  ],
734
743
  "type": "object"
@@ -738,11 +747,11 @@
738
747
  "members": [
739
748
  {
740
749
  "disabled": false,
741
- "document": "推荐返回的内容信息列表",
750
+ "document": "推荐返回的内容信息列表,返回结果已按策略规则做好了排序",
742
751
  "example": "无",
743
752
  "member": "RecItemData",
744
753
  "name": "DataList",
745
- "required": true,
754
+ "output_required": true,
746
755
  "type": "list",
747
756
  "value_allowed_null": false
748
757
  },