openlark 0.15.0-rc.1

飞书开放平台 Rust SDK - 企业级高覆盖率 API 客户端,极简依赖一条命令
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
id,name,bizTag,meta.Project,meta.Version,meta.Resource,meta.Name,detail,chargingMethod,fullDose,fullPath,url,orderMark,supportAppTypes,tags,updateTime,isCharge,meta.Type,docPath
6979790924691996674,获取门禁记录列表,acs,acs,v1,access_record,list,用户在门禁考勤机上成功开门或打卡后,智能门禁应用都会生成一条门禁记录。,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/access_record/list,GET:/open-apis/acs/v1/access_records,3,"[""isv"", ""custom""]",[],1671441948,false,1,https://open.feishu.cn/document/server-docs/acs-v1/access_record/list
6979790924692029442,下载开门时的人脸识别图片,acs,acs,v1,access_record.access_photo,get,用户在门禁考勤机上成功开门或打卡后,智能门禁应用都会生成一条门禁记录,对于使用人脸识别方式进行开门的识别记录,还会有抓拍图。,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/access_record-access_photo/get,GET:/open-apis/acs/v1/access_records/:access_record_id/access_photo,2,"[""isv"", ""custom""]",[],1671441948,false,1,https://open.feishu.cn/document/server-docs/acs-v1/access_record/get
6979790924691980290,获取门禁设备列表,acs,acs,v1,device,list,使用该接口获取租户内所有门禁设备。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=device&method=list),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/device/list,GET:/open-apis/acs/v1/devices,1625025074461,"[""isv"", ""custom""]",[],1671441948,false,1,https://open.feishu.cn/document/server-docs/acs-v1/device/list
7321978105899122716,创建或更新权限组,acs,acs,v1,rule_external,create,创建或更新权限组,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/rule_external/create,POST:/open-apis/acs/v1/rule_external,1704706443154,"[""isv"", ""custom""]",[],1704791458,false,1,https://open.feishu.cn/document/acs-v1/rule_external/create
7321978105899106332,删除权限组,acs,acs,v1,rule_external,delete,删除权限组,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/rule_external/delete,DELETE:/open-apis/acs/v1/rule_external,1704706788617,"[""isv"", ""custom""]",[],1704791446,false,1,https://open.feishu.cn/document/acs-v1/rule_external/delete
7321978105899073564,设备绑定权限组,acs,acs,v1,rule_external,device_bind,设备绑定权限组,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/rule_external/device_bind,POST:/open-apis/acs/v1/rule_external/device_bind,1704706869003,"[""isv"", ""custom""]",[],1704791422,false,1,https://open.feishu.cn/document/acs-v1/rule_external/device_bind
7321978105899089948,获取权限组信息,acs,acs,v1,rule_external,get,获取权限组信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/rule_external/get,GET:/open-apis/acs/v1/rule_external,1704706834688,"[""isv"", ""custom""]",[],1704791434,false,1,https://open.feishu.cn/document/acs-v1/rule_external/get
6987691292973875201,获取单个用户信息,acs,acs,v1,user,get,该接口用于获取智能门禁中单个用户的信息。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=user&method=get),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/user/get,GET:/open-apis/acs/v1/users/:user_id,5,"[""isv"", ""custom""]",[],1628238375,false,1,https://open.feishu.cn/document/server-docs/acs-v1/user/get
6987691292973891585,获取用户列表,acs,acs,v1,user,list,使用该接口获取智能门禁中所有用户信息。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=user&method=list),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/user/list,GET:/open-apis/acs/v1/users,4,"[""isv"", ""custom""]",[],1671441936,false,1,https://open.feishu.cn/document/server-docs/acs-v1/user/list
6979790924691963906,修改用户部分信息,acs,acs,v1,user,patch,飞书智能门禁在人脸识别成功后会有韦根信号输出,输出用户的卡号。 对于使用韦根协议的门禁系统,企业可使用该接口录入用户卡号。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=user&method=patch),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/user/patch,PATCH:/open-apis/acs/v1/users/:user_id,6,"[""isv"", ""custom""]",[],1671441936,false,1,https://open.feishu.cn/document/server-docs/acs-v1/user/patch
6987691292973940737,下载人脸图片,acs,acs,v1,user.face,get,对于已经录入人脸图片的用户,可以使用该接口下载用户人脸图片。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=user.face&method=get),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/user-face/get,GET:/open-apis/acs/v1/users/:user_id/face,2,"[""isv"", ""custom""]",[],1671441936,false,1,https://open.feishu.cn/document/server-docs/acs-v1/user/get-2
6987691292973924353,上传人脸图片,acs,acs,v1,user.face,update,用户需要录入人脸图片才可以使用门禁考勤机。使用该 API 上传门禁用户的人脸图片。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=acs&version=v1&resource=user.face&method=update),none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/user-face/update,PUT:/open-apis/acs/v1/users/:user_id/face,3,"[""isv"", ""custom""]",[],1671441936,false,1,https://open.feishu.cn/document/server-docs/acs-v1/user/update
7321978105899057180,添加访客,acs,acs,v1,visitor,create,添加访客,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/visitor/create,POST:/open-apis/acs/v1/visitors,1704707085870,"[""isv"", ""custom""]",[],1704791410,false,1,https://open.feishu.cn/document/acs-v1/visitor/create
7321978105899139100,删除访客,acs,acs,v1,visitor,delete,删除访客,none,true,/document/uAjLw4CM/ukTMukTMukTM/acs-v1/visitor/delete,DELETE:/open-apis/acs/v1/visitors/:visitor_id,1704707117145,"[""isv"", ""custom""]",[],1704791398,false,1,https://open.feishu.cn/document/acs-v1/visitor/delete
6954303251601309723,获取部门维度的用户活跃和功能使用数据,admin,admin,v1,admin_dept_stat,list,该接口用于获取部门维度的用户活跃和功能使用数据,即IM(即时通讯)、日历、云文档、音视频会议、邮箱功能的使用数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/admin_dept_stat/list,GET:/open-apis/admin/v1/admin_dept_stats,1672135636388,"[""custom""]",[],1756779600,true,1,https://open.feishu.cn/document/server-docs/admin-v1/data-report-management/list
6954303251601276955,获取用户维度的用户活跃和功能使用数据,admin,admin,v1,admin_user_stat,list,用于获取用户维度的用户活跃和功能使用数据,即IM(即时通讯)、日历、云文档、音视频会议、邮箱功能的使用数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/admin_user_stat/list,GET:/open-apis/admin/v1/admin_user_stats,1672135626877,"[""custom""]",[],1732772232,true,1,https://open.feishu.cn/document/server-docs/admin-v1/data-report-management/list-2
6921713375245352988,获取行为审计日志数据,admin,admin,v1,audit_info,list,{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=admin&version=v1&resource=audit_info&method=list),none,true,/document/ukTMukTMukTM/uQjM5YjL0ITO24CNykjN/audit_log/audit_data_get,GET:/open-apis/admin/v1/audit_infos,2,"[""custom""]",[],1760680617,false,1,https://open.feishu.cn/document/server-docs/security_and_compliance-v1/audit_log/audit_data_get
7104154222309146627,创建勋章,admin,admin,v1,badge,create,使用该接口可以创建一枚完整的勋章信息,一个租户下最多可创建1000枚勋章。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge/create,POST:/open-apis/admin/v1/badges,5,"[""isv"", ""custom""]",[],1684228043,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge/create-2
7104154222309163011,获取勋章详情,admin,admin,v1,badge,get,可以通过该接口查询勋章的详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge/get,GET:/open-apis/admin/v1/badges/:badge_id,1,"[""isv"", ""custom""]",[],1684228044,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge/get
7104154222309048323,获取勋章列表,admin,admin,v1,badge,list,可以通过该接口列出租户下所有的勋章,勋章的排列顺序是按照创建时间倒序排列。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge/list,GET:/open-apis/admin/v1/badges,2,"[""isv"", ""custom""]",[],1684228044,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge/list
7104154222309031939,修改勋章信息,admin,admin,v1,badge,update,通过该接口可以修改勋章的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge/update,PUT:/open-apis/admin/v1/badges/:badge_id,4,"[""isv"", ""custom""]",[],1684228043,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge/update
7104154222309179395,创建授予名单,admin,admin,v1,badge.grant,create,通过该接口可以为特定勋章创建一份授予名单,一枚勋章下最多可创建1000份授予名单。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge-grant/create,POST:/open-apis/admin/v1/badges/:badge_id/grants,5,"[""isv"", ""custom""]",[],1684228044,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge-grant/create
7104154222309097475,删除授予名单,admin,admin,v1,badge.grant,delete,通过该接口可以删除特定授予名单的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge-grant/delete,DELETE:/open-apis/admin/v1/badges/:badge_id/grants/:grant_id,4,"[""isv"", ""custom""]",[],1684228044,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge-grant/delete
7104154222309081091,获取授予名单详情,admin,admin,v1,badge.grant,get,通过该接口可以获取特定授予名单的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge-grant/get,GET:/open-apis/admin/v1/badges/:badge_id/grants/:grant_id,1,"[""isv"", ""custom""]",[],1684228045,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge-grant/get
7104154222309064707,获取授予名单列表,admin,admin,v1,badge.grant,list,通过该接口可以获取特定勋章下的授予名单列表,授予名单的排列顺序按照创建时间倒序排列。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge-grant/list,GET:/open-apis/admin/v1/badges/:badge_id/grants,2,"[""isv"", ""custom""]",[],1684228045,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge-grant/list
7104154222309195779,修改授予名单,admin,admin,v1,badge.grant,update,通过该接口可以修改特定授予名单的相关信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge-grant/update,PUT:/open-apis/admin/v1/badges/:badge_id/grants/:grant_id,3,"[""isv"", ""custom""]",[],1684228044,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge-grant/update
7104154222309130243,上传勋章图片,admin,admin,v1,badge_image,create,通过该接口可以上传勋章详情图、挂饰图的文件,获取对应的文件key。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/badge_image/create,POST:/open-apis/admin/v1/badge_images,3,"[""isv"", ""custom""]",[],1684228043,true,1,https://open.feishu.cn/document/server-docs/admin-v1/badge/badge/create
7081092146976161796,重置用户的企业邮箱密码,admin,admin,v1,password,reset,重置用户的企业邮箱密码,仅当用户的邮箱和企业邮箱(别名)一致时生效,可用于处理飞书企业邮箱登录死锁的问题。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/admin-v1/password/reset,POST:/open-apis/admin/v1/password/reset,1646917803790,"[""custom""]",[],1680161862,false,1,https://open.feishu.cn/document/server-docs/admin-v1/password/reset
7273083612789604355,识别文件中的银行卡,ai,document_ai,v1,bank_card,recognize,银行卡识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/bank_card/recognize,POST:/open-apis/document_ai/v1/bank_card/recognize,1693364827515,"[""isv"", ""custom""]",[],1731477990,false,1,https://open.feishu.cn/document/ai/document_ai-v1/bank_card/recognize
7205462689421066244,识别文件中的名片,ai,document_ai,v1,business_card,recognize,名片识别接口,通过上传 JPG / PNG / PDF 等文件类型进行一次性的名片识别。接口适用于20MB以下的文件,适用于英文、日语的名片。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/business_card/recognize,POST:/open-apis/document_ai/v1/business_card/recognize,1677583518318,"[""isv"", ""custom""]",[],1698768487,false,1,https://open.feishu.cn/document/server-docs/ai/document_ai-v1/business_card/recognize
7249730096956735491,识别文件中的营业执照,ai,document_ai,v1,business_license,recognize,营业执照识别接口,支持JPG/JPEG/PNG/BMP/PDF五种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/business_license/recognize,POST:/open-apis/document_ai/v1/business_license/recognize,1687265924337,"[""isv"", ""custom""]",[],1731478108,false,1,https://open.feishu.cn/document/ai/document_ai-v1/business_license/recognize
7273083612789587971,识别文件中的中国护照,ai,document_ai,v1,chinese_passport,recognize,中国护照识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/chinese_passport/recognize,POST:/open-apis/document_ai/v1/chinese_passport/recognize,1693365336654,"[""isv"", ""custom""]",[],1731477977,false,1,https://open.feishu.cn/document/ai/document_ai-v1/chinese_passport/recognize
7220312184105664515,提取文件中的合同字段,ai,document_ai,v1,contract,field_extraction,支持从doc、docx和pdf文件类型中提取合同字段。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/contract/field_extraction,POST:/open-apis/document_ai/v1/contract/field_extraction,1681105040043,"[""isv"", ""custom""]",[],1731478121,false,1,https://open.feishu.cn/document/server-docs/ai/document_ai-v1/contract/field_extraction
7249730096956653571,识别文件中的驾驶证,ai,document_ai,v1,driving_license,recognize,驾驶证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/driving_license/recognize,POST:/open-apis/document_ai/v1/driving_license/recognize,1687959791416,"[""isv"", ""custom""]",[],1731478082,false,1,https://open.feishu.cn/document/ai/document_ai-v1/driving_license/recognize
7249730096956719107,识别文件中的食品经营许可证,ai,document_ai,v1,food_manage_license,recognize,食品经营许可证识别接口,支持JPG/JPEG/PNG/BMP/PDF五种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/food_manage_license/recognize,POST:/open-apis/document_ai/v1/food_manage_license/recognize,1687961930964,"[""isv"", ""custom""]",[],1731478069,false,1,https://open.feishu.cn/document/ai/document_ai-v1/food_manage_license/recognize
7249730096956702723,识别文件中的食品生产许可证,ai,document_ai,v1,food_produce_license,recognize,食品生产许可证识别接口,支持JPG/JPEG/PNG/BMP/PDF五种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/food_produce_license/recognize,POST:/open-apis/document_ai/v1/food_produce_license/recognize,1687961762497,"[""isv"", ""custom""]",[],1731478056,false,1,https://open.feishu.cn/document/ai/document_ai-v1/food_produce_license/recognize
7319756481343766532,识别文件中的健康证,ai,document_ai,v1,health_certificate,recognize,健康证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/health_certificate/recognize,POST:/open-apis/document_ai/v1/health_certificate/recognize,1703646819307,"[""isv"", ""custom""]",[],1731477938,false,1,https://open.feishu.cn/document/ai/document_ai-v1/health_certificate/recognize
7273083612789620739,识别文件中的港澳居民来往内地通行证,ai,document_ai,v1,hkm_mainland_travel_permit,recognize,港澳居民来往内地通行证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/hkm_mainland_travel_permit/recognize,POST:/open-apis/document_ai/v1/hkm_mainland_travel_permit/recognize,1693366719089,"[""isv"", ""custom""]",[],1731477950,false,1,https://open.feishu.cn/document/ai/document_ai-v1/hkm_mainland_travel_permit/recognize
7249730096956637187,识别文件中的身份证,ai,document_ai,v1,id_card,recognize,身份证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/id_card/recognize,POST:/open-apis/document_ai/v1/id_card/recognize,1687961562633,"[""isv"", ""custom""]",[],1731478042,false,1,https://open.feishu.cn/document/ai/document_ai-v1/id_card/recognize
7340987945434742812,识别文件中的简历信息,ai,document_ai,v1,resume,parse,简历信息解析接口,支持PDF/DOCX/PNG/JPG四种文件类型的一次性的识别。文件大小需要小于30M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/resume/parse,POST:/open-apis/document_ai/v1/resume/parse,1708950154155,"[""isv"", ""custom""]",[],1731477912,false,1,https://open.feishu.cn/document/ai/document_ai-v1/resume/parse
7249730096956620803,识别文件中的出租车发票,ai,document_ai,v1,taxi_invoice,recognize,出租车发票识别接口,支持JPG/JPEG/PNG/PDF/OFD五种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/taxi_invoice/recognize,POST:/open-apis/document_ai/v1/taxi_invoice/recognize,1687961399060,"[""isv"", ""custom""]",[],1733909833,false,1,https://open.feishu.cn/document/ai/document_ai-v1/taxi_invoice/recognize
7249730096956686339,识别文件中的火车票,ai,document_ai,v1,train_invoice,recognize,火车票识别接口,支持JPG/JPEG/PNG/PDF/OFD五种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/train_invoice/recognize,POST:/open-apis/document_ai/v1/train_invoice/recognize,1687961134139,"[""isv"", ""custom""]",[],1733909821,false,1,https://open.feishu.cn/document/ai/document_ai-v1/train_invoice/recognize
7273083612789571587,识别文件中的台湾居民来往大陆通行证,ai,document_ai,v1,tw_mainland_travel_permit,recognize,台湾居民来往大陆通行证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/tw_mainland_travel_permit/recognize,POST:/open-apis/document_ai/v1/tw_mainland_travel_permit/recognize,1693365800361,"[""isv"", ""custom""]",[],1731477963,false,1,https://open.feishu.cn/document/ai/document_ai-v1/tw_mainland_travel_permit/recognize
7247054875321434114,识别文件中的增值税发票,ai,document_ai,v1,vat_invoice,recognize,增值税发票识别接口,支持JPG/JPEG/PNG/PDF/BMP/OFD六种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/vat_invoice/recognize,POST:/open-apis/document_ai/v1/vat_invoice/recognize,1687316282977,"[""isv"", ""custom""]",[],1733909845,false,1,https://open.feishu.cn/document/ai/document_ai-v1/vat_invoice/recognize
7319756481343750148,识别文件中的机动车发票,ai,document_ai,v1,vehicle_invoice,recognize,机动车发票识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/vehicle_invoice/recognize,POST:/open-apis/document_ai/v1/vehicle_invoice/recognize,1703648542938,"[""isv"", ""custom""]",[],1731477925,false,1,https://open.feishu.cn/document/ai/document_ai-v1/vehicle_invoice/recognize
7249730096956669955,识别文件中的行驶证,ai,document_ai,v1,vehicle_license,recognize,行驶证识别接口,支持JPG/JPEG/PNG/BMP四种文件类型的一次性的识别。 文件大小需要小于10M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/document_ai-v1/vehicle_license/recognize,POST:/open-apis/document_ai/v1/vehicle_license/recognize,1687960821614,"[""isv"", ""custom""]",[],1731478003,false,1,https://open.feishu.cn/document/ai/document_ai-v1/vehicle_license/recognize
6949829039872000001,识别图片中的文字,ai,optical_char_recognition,v1,image,basic_recognize,可识别图片中的文字,按图片中的区域划分,分段返回文本列表。文件大小需小于5M。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/optical_char_recognition-v1/image/basic_recognize,POST:/open-apis/optical_char_recognition/v1/image/basic_recognize,1671696184375,"[""isv"", ""custom""]",[],1731477891,false,1,https://open.feishu.cn/document/server-docs/ai/optical_char_recognition-v1/basic_recognize
6949829039872032769,识别语音文件,ai,speech_to_text,v1,speech,file_recognize,语音文件识别接口,上传整段语音文件进行一次性识别。接口适合 60 秒以内音频识别。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/speech_to_text-v1/speech/file_recognize,POST:/open-apis/speech_to_text/v1/speech/file_recognize,1671699397992,"[""isv"", ""custom""]",[],1704252041,false,1,https://open.feishu.cn/document/server-docs/ai/speech_to_text-v1/file_recognize
6949829039872016385,识别流式语音,ai,speech_to_text,v1,speech,stream_recognize,语音流式接口,将整个音频文件分片进行传入模型。能够实时返回数据。建议每个音频分片的大小为 100-200ms。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/speech_to_text-v1/speech/stream_recognize,POST:/open-apis/speech_to_text/v1/speech/stream_recognize,1671699389692,"[""isv"", ""custom""]",[],1731993724,false,1,https://open.feishu.cn/document/server-docs/ai/speech_to_text-v1/stream_recognize
6949829039872049153,识别文本语种,ai,translation,v1,text,detect,机器翻译 (MT),支持 100 多种语言识别,返回符合 ISO 639-1 标准。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/translation-v1/text/detect,POST:/open-apis/translation/v1/text/detect,1671696274207,"[""isv"", ""custom""]",[],1704252041,false,1,https://open.feishu.cn/document/server-docs/ai/translation-v1/detect
6949829039871983617,翻译文本,ai,translation,v1,text,translate,"机器翻译 (MT),支持以下语种互译: ""zh"": 汉语; ""zh-Hant"": 繁体汉语; ""en"": 英语; ""ja"": 日语; ""ru"": 俄语; ""de"": 德语; ""fr"": 法语; ""it"": 意大利语; ""pl"": 波兰语; ""th"": 泰语; ""hi"": 印地语; ""id"": 印尼语; ""es"": 西班牙语; ""pt"": 葡萄牙语; ""ko"": 朝鲜语; ""vi"": 越南语;",none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/ai/translation-v1/text/translate,POST:/open-apis/translation/v1/text/translate,1671696264647,"[""isv"", ""custom""]",[],1736758093,false,1,https://open.feishu.cn/document/server-docs/ai/translation-v1/translate
7358047310868316164,创建会话,aily,aily,v1,aily_session,create,该 API 用于创建与某个飞书 Aily 应用的一次会话(Session);当创建会话成功后,可以发送消息、创建运行。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session/create,POST:/open-apis/aily/v1/sessions,4,"[""custom""]",[],1752154881,false,1,https://open.feishu.cn/document/aily-v1/aily_session/create
7358047310868267012,删除会话,aily,aily,v1,aily_session,delete,该 API 用于删除与某个飞书 Aily 应用的一次会话(Session)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session/delete,DELETE:/open-apis/aily/v1/sessions/:aily_session_id,1,"[""custom""]",[],1752154916,false,1,https://open.feishu.cn/document/aily-v1/aily_session/delete
7358047310868250628,获取会话,aily,aily,v1,aily_session,get,该 API 用于获取与某个飞书 Aily 应用的一次会话(Session)的详细信息,包括会话的状态、渠道上下文、创建时间等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session/get,GET:/open-apis/aily/v1/sessions/:aily_session_id,2,"[""custom""]",[],1752154904,false,1,https://open.feishu.cn/document/aily-v1/aily_session/get
7358047310868234244,更新会话,aily,aily,v1,aily_session,update,该 API 用于更新与某个飞书 Aily 应用的一次会话(Session)的信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session/update,PUT:/open-apis/aily/v1/sessions/:aily_session_id,3,"[""custom""]",[],1752154893,false,1,https://open.feishu.cn/document/aily-v1/aily_session/update
7358047310868283396,发送 Aily 消息,aily,aily,v1,aily_session.aily_message,create,该 API 用于向某个飞书 Aily 应用发送一条消息(Message);每个消息从属于一个活跃的会话(Session)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/create,POST:/open-apis/aily/v1/sessions/:aily_session_id/messages,3,"[""custom""]",[],1752154928,false,1,https://open.feishu.cn/document/aily-v1/aily_session-aily_message/create
7358047310868152324,获取 Aily 消息,aily,aily,v1,aily_session.aily_message,get,该 API 用于获取某个飞书 Aily 应用的消息(Message)的详细信息;包括消息的内容、发送人等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/get,GET:/open-apis/aily/v1/sessions/:aily_session_id/messages/:aily_message_id,2,"[""custom""]",[],1752154940,false,1,https://open.feishu.cn/document/aily-v1/aily_session-aily_message/get
7358047310868168708,列出 Aily 消息,aily,aily,v1,aily_session.aily_message,list,该 API 用于列出某个飞书 Aily 应用的某个会话(Session)下消息(Message)的详细信息;包括消息的内容、发送人等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/list,GET:/open-apis/aily/v1/sessions/:aily_session_id/messages,1,"[""custom""]",[],1752154952,false,1,https://open.feishu.cn/document/aily-v1/aily_session-aily_message/list
7358047310868217860,取消运行,aily,aily,v1,aily_session.run,cancel,该 API 用于中止某个飞书 Aily 的一次运行。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-run/cancel,POST:/open-apis/aily/v1/sessions/:aily_session_id/runs/:run_id/cancel,1,"[""custom""]",[],1752203091,false,1,https://open.feishu.cn/document/aily-v1/aily_session-run/cancel
7358047310868185092,创建运行,aily,aily,v1,aily_session.run,create,该 API 用于在某个飞书 Aily 应用会话(Session)上创建一次运行(Run)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-run/create,POST:/open-apis/aily/v1/sessions/:aily_session_id/runs,4,"[""custom""]",[],1752203065,false,1,https://open.feishu.cn/document/aily-v1/aily_session-run/create
7358047310868299780,获取运行,aily,aily,v1,aily_session.run,get,该 API 用于获取某个飞书 Aily 应用的运行(Run)的详细信息;包括运行的状态、结束时间等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-run/get,GET:/open-apis/aily/v1/sessions/:aily_session_id/runs/:run_id,3,"[""custom""]",[],1752203074,false,1,https://open.feishu.cn/document/aily-v1/aily_session-run/get
7358047310868201476,列出运行,aily,aily,v1,aily_session.run,list,该 API 用于列出某个飞书 Aily 应用的运行(Run)的详细信息;包括状态、结束时间等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-run/list,GET:/open-apis/aily/v1/sessions/:aily_session_id/runs,2,"[""custom""]",[],1752203083,false,1,https://open.feishu.cn/document/aily-v1/aily_session-run/list
7441589456115892227,创建数据知识,aily,aily,v1,app.data_asset,create,在 Aily 中添加单个数据知识,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset/create,POST:/open-apis/aily/v1/apps/:app_id/data_assets,5,"[""custom""]",[],1752154988,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/create
7441589456115908611,删除数据知识,aily,aily,v1,app.data_asset,delete,删除 Aily 的数据知识,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset/delete,DELETE:/open-apis/aily/v1/apps/:app_id/data_assets/:data_asset_id,3,"[""custom""]",[],1752155012,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/delete
7441589456115924995,获取数据知识,aily,aily,v1,app.data_asset,get,获取单个数据知识,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset/get,GET:/open-apis/aily/v1/apps/:app_id/data_assets/:data_asset_id,4,"[""custom""]",[],1752155000,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/get
7424752773160796164,查询数据知识列表,aily,aily,v1,app.data_asset,list,获取 Aily 助手的数据知识列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset/list,GET:/open-apis/aily/v1/apps/:app_id/data_assets,2,"[""custom""]",[],1752155024,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/list
7441589456115941379,上传文件用于数据知识管理,aily,aily,v1,app.data_asset,upload_file,上传文件用于 Aily 的数据知识管理 。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset/upload_file,POST:/open-apis/aily/v1/apps/:app_id/data_assets/upload_file,6,"[""custom""]",[],1752154975,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/upload_file
7424752773160812548,获取数据知识分类列表,aily,aily,v1,app.data_asset_tag,list,获取 Aily 助手的数据知识分类列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset_tag/list,GET:/open-apis/aily/v1/apps/:app_id/data_asset_tags,1,"[""custom""]",[],1752155035,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/data-knowledge-management/list-2
7424752773160779780,执行数据知识问答,aily,aily,v1,app.knowledge,ask,执行飞书 Aily 的数据知识问答,返回基于指定数据知识的问答结果,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-knowledge/ask,POST:/open-apis/aily/v1/apps/:app_id/knowledges/ask,3,"[""custom""]",[],1752154964,false,1,https://open.feishu.cn/document/aily-v1/data-knowledge/ask
7429225800963047426,获取技能信息,aily,aily,v1,app.skill,get,该 API 用于查询某个 Aily 应用的特定技能详情,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-skill/get,GET:/open-apis/aily/v1/apps/:app_id/skills/:skill_id,1729754006890,"[""custom""]",[],1752155059,false,1,https://open.feishu.cn/document/aily-v1/app-skill/get
7429225800963063810,查询技能列表,aily,aily,v1,app.skill,list,该 API 用于查询某个 Aily 应用的技能列表 > 包括内置的数据分析与问答技能、以及未在对话开启的技能。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-skill/list,GET:/open-apis/aily/v1/apps/:app_id/skills,1729753972057,"[""custom""]",[],1752155071,false,1,https://open.feishu.cn/document/aily-v1/app-skill/list
7429225800963031042,调用技能,aily,aily,v1,app.skill,start,该 API 用于调用某个 Aily 应用的特定技能,支持指定技能入参;并同步返回技能执行的结果。,none,true,/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-skill/start,POST:/open-apis/aily/v1/apps/:app_id/skills/:skill_id/start,1729754032040,"[""custom""]",[],1752155047,false,1,https://open.feishu.cn/document/aily-v1/app-skill/start
7483060846336999428,查看应用基本信息,app_engine,apaas,v1,app,list,获取企业下应用基本信息,如应用名称 、应用命名空间等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/app/list,GET:/open-apis/apaas/v1/apps,1742353805490,"[""isv"", ""custom""]",[],1753360175,false,1,https://open.feishu.cn/document/apaas-v1/app/list
7418119603744391171,查询审计日志列表,app_engine,apaas,v1,application.audit_log,audit_log_list,根据搜索/筛选条件,查询审计日志列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-audit_log/audit_log_list,GET:/open-apis/apaas/v1/applications/:namespace/audit_log/audit_log_list,6,"[""isv"", ""custom""]",[],1727166303,false,1,https://open.feishu.cn/document/apaas-v1/application-audit_log/audit_log_list
7462214121168666627,查询数据变更日志详情,app_engine,apaas,v1,application.audit_log,data_change_log_detail,根据日志 ID 查询数据变更日志详情,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-audit_log/data_change_log_detail,GET:/open-apis/apaas/v1/applications/:namespace/audit_log/data_change_log_detail,3,"[""isv"", ""custom""]",[],1737441315,false,1,https://open.feishu.cn/document/apaas-v1/application-audit_log/data_change_log_detail
7462214121168650243,查询数据变更日志列表,app_engine,apaas,v1,application.audit_log,data_change_logs_list,根据搜索/筛选条件,查询数据变更日志列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-audit_log/data_change_logs_list,GET:/open-apis/apaas/v1/applications/:namespace/audit_log/data_change_logs_list,4,"[""isv"", ""custom""]",[],1737441335,false,1,https://open.feishu.cn/document/apaas-v1/application-audit_log/data_change_logs_list
7418119603744407555,查询审计日志详情,app_engine,apaas,v1,application.audit_log,get,根据日志 ID 查询审计日志详情,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-audit_log/get,GET:/open-apis/apaas/v1/applications/:namespace/audit_log,5,"[""isv"", ""custom""]",[],1727166325,false,1,https://open.feishu.cn/document/apaas-v1/application-audit_log/get
7385474062586314754,查询环境变量详情,app_engine,apaas,v1,application.environment_variable,get,查询基于飞书 aPaaS 开发的应用的环境变量详情,包括名称、描述、变量值等,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-environment_variable/get,GET:/open-apis/apaas/v1/applications/:namespace/environment_variables/:environment_variable_api_name,1719231859358,"[""isv"", ""custom""]",[],1752136769,false,1,https://open.feishu.cn/document/apaas-v1/application-environment_variable/get
7385474062586298370,查询环境变量列表,app_engine,apaas,v1,application.environment_variable,query,查询基于飞书 aPaaS 开发的应用的环境变量列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-environment_variable/query,POST:/open-apis/apaas/v1/applications/:namespace/environment_variables/query,1719232384055,"[""isv"", ""custom""]",[],1752136750,false,1,https://open.feishu.cn/document/apaas-v1/application-environment_variable/query
7442599557486624772,发起流程,app_engine,apaas,v1,application.flow,execute,执行相应流程,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-flow/execute,POST:/open-apis/apaas/v1/applications/:namespace/flows/:flow_id/execute,1732798010379,"[""custom""]",[],1732872409,false,1,https://open.feishu.cn/document/apaas-v1/flow/application-flow/execute
7385474062586281986,执行函数,app_engine,apaas,v1,application.function,invoke,执行基于飞书应用引擎开发的应用的自定义函数,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-function/invoke,POST:/open-apis/apaas/v1/applications/:namespace/functions/:function_api_name/invoke,1719233029488,"[""isv"", ""custom""]",[],1719567658,false,1,https://open.feishu.cn/document/apaas-v1/application-function/invoke
7384730094873002012,执行 OQL,app_engine,apaas,v1,application.object,oql_query,在应用内执行 OQL 语句,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object/oql_query,POST:/open-apis/apaas/v1/applications/:namespace/objects/oql_query,1719389157789,"[""isv"", ""custom""]",[],1727087294,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/oql_query
7384730094873051164,搜索记录,app_engine,apaas,v1,application.object,search,在应用内搜索记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object/search,POST:/open-apis/apaas/v1/applications/:namespace/objects/search,1719389152159,"[""isv"", ""custom""]",[],1727087317,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/search
7384730094872985628,批量新建记录,app_engine,apaas,v1,application.object.record,batch_create,一次新建多条对象中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/batch_create,POST:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/batch_create,1719386629010,"[""isv"", ""custom""]",[],1727087497,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/batch_create
7384730094873083932,批量删除记录,app_engine,apaas,v1,application.object.record,batch_delete,一次删除多条对象中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/batch_delete,DELETE:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/batch_delete,1719388537654,"[""isv"", ""custom""]",[],1727087474,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/batch_delete
7384730094873067548,查询记录列表,app_engine,apaas,v1,application.object.record,batch_query,获取对象中符合指定条件的记录列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/batch_query,POST:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/batch_query,1719388811086,"[""isv"", ""custom""]",[],1767871208,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/batch_query
7384730094872969244,批量编辑记录,app_engine,apaas,v1,application.object.record,batch_update,一次编辑多条对象中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/batch_update,PATCH:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/batch_update,1719388885643,"[""isv"", ""custom""]",[],1727087429,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/batch_update
7384730094872952860,新建记录,app_engine,apaas,v1,application.object.record,create,在对象中新建记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/create,POST:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records,1719388928134,"[""isv"", ""custom""]",[],1727087407,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/create
7384730094872936476,删除记录,app_engine,apaas,v1,application.object.record,delete,删除对象中的指定记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/delete,DELETE:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/:id,1719388951934,"[""isv"", ""custom""]",[],1727087384,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/delete
7384730094873034780,编辑记录,app_engine,apaas,v1,application.object.record,patch,编辑对象中的指定记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/patch,PATCH:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/:id,1719388980655,"[""isv"", ""custom""]",[],1727087362,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/patch
7384730094873018396,获取记录详情,app_engine,apaas,v1,application.object.record,query,获取对象中指定的记录详情,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-object-record/query,POST:/open-apis/apaas/v1/applications/:namespace/objects/:object_api_name/records/:id/query,1719389022086,"[""isv"", ""custom""]",[],1727087340,false,1,https://open.feishu.cn/document/apaas-v1/application-object-record/query
7417675812785504259,批量创建记录权限用户授权,app_engine,apaas,v1,application.record_permission.member,batch_create_authorization,批量创建记录权限授权,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-record_permission-member/batch_create_authorization,POST:/open-apis/apaas/v1/applications/:namespace/record_permissions/:record_permission_api_name/member/batch_create_authorization,1726654040348,"[""isv"", ""custom""]",[],1752136731,false,1,https://open.feishu.cn/document/apaas-v1/permission/application-record_permission-member/batch_create_authorization
7417675812785471491,批量删除记录权限用户授权,app_engine,apaas,v1,application.record_permission.member,batch_remove_authorization,批量删除记录权限授权,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-record_permission-member/batch_remove_authorization,POST:/open-apis/apaas/v1/applications/:namespace/record_permissions/:record_permission_api_name/member/batch_remove_authorization,1726654086504,"[""isv"", ""custom""]",[],1752136711,false,1,https://open.feishu.cn/document/apaas-v1/permission/application-record_permission-member/batch_remove_authorization
7417675812785520643,批量创建角色成员授权,app_engine,apaas,v1,application.role.member,batch_create_authorization,批量创建角色成员授权,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-role-member/batch_create_authorization,POST:/open-apis/apaas/v1/applications/:namespace/roles/:role_api_name/member/batch_create_authorization,1726653864742,"[""isv"", ""custom""]",[],1752136692,false,1,https://open.feishu.cn/document/apaas-v1/permission/application-role-member/batch_create_authorization
7417675812785487875,批量删除角色成员授权,app_engine,apaas,v1,application.role.member,batch_remove_authorization,批量删除角色成员授权,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-role-member/batch_remove_authorization,POST:/open-apis/apaas/v1/applications/:namespace/roles/:role_api_name/member/batch_remove_authorization,1726653916424,"[""isv"", ""custom""]",[],1752136673,false,1,https://open.feishu.cn/document/apaas-v1/permission/application-role-member/batch_remove_authorization
7417675812785455107,查询角色成员信息,app_engine,apaas,v1,application.role.member,get,获取角色成员详情,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/application-role-member/get,GET:/open-apis/apaas/v1/applications/:namespace/roles/:role_api_name/member,1726653768179,"[""isv"", ""custom""]",[],1727087227,false,1,https://open.feishu.cn/document/apaas-v1/permission/application-role-member/get
7446337145820364804,撤销人工任务,app_engine,apaas,v1,approval_instance,cancel,撤销一个人工任务(包括审批任务,填写任务),none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/approval_instance/cancel,POST:/open-apis/apaas/v1/approval_instances/:approval_instance_id/cancel,4,"[""isv"", ""custom""]",[],1734512557,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/cancel
7347562540447121409,人工任务加签,app_engine,apaas,v1,approval_task,add_assignee,对于人工任务进行加签操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/approval_task/add_assignee,POST:/open-apis/apaas/v1/approval_tasks/:approval_task_id/add_assignee,7,"[""isv"", ""custom""]",[],1710831011,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/add_assignee
7347562540447137793,同意人工任务,app_engine,apaas,v1,approval_task,agree,对于人工任务进行同意操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/approval_task/agree,POST:/open-apis/apaas/v1/approval_tasks/:approval_task_id/agree,10,"[""isv"", ""custom""]",[],1710830973,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/agree
7347562540447088641,拒绝人工任务,app_engine,apaas,v1,approval_task,reject,对于人工任务进行拒绝操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/approval_task/reject,POST:/open-apis/apaas/v1/approval_tasks/:approval_task_id/reject,9,"[""isv"", ""custom""]",[],1710830986,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/reject
7347562540447105025,转交人工任务,app_engine,apaas,v1,approval_task,transfer,对于人工任务进行转交操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/approval_task/transfer,POST:/open-apis/apaas/v1/approval_tasks/:approval_task_id/transfer,8,"[""isv"", ""custom""]",[],1710830998,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/transfer
7447484643136946177,查询席位活跃详情,app_engine,apaas,v1,seat_activity,list,获取租户下用户使用飞书 aPaaS 席位最近访问应用时间。需要飞书 aPaaS 系统管理员作为授权人调用当前API。,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/seat_activity/list,GET:/open-apis/apaas/v1/seat_activities,1734075571685,"[""isv"", ""custom""]",[],1752136634,false,1,https://open.feishu.cn/document/apaas-v1/seat_activity/list
7452929418211344412,查询席位分配详情,app_engine,apaas,v1,seat_assignment,list,获取租户下平台席位和应用访问席位分配详情,如用户 ID 、应用命名空间等,需要飞书 aPaaS 系统管理员作为授权人调用当前 API 。,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/seat_assignment/list,GET:/open-apis/apaas/v1/seat_assignments,1735218904835,"[""isv"", ""custom""]",[],1752136615,false,1,https://open.feishu.cn/document/apaas-v1/seat_assignment/list
7446337145820332036,抄送人工任务,app_engine,apaas,v1,user_task,cc,对当前的任务进行一次抄送,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/cc,POST:/open-apis/apaas/v1/user_tasks/:task_id/cc,6,"[""isv"", ""custom""]",[],1734512511,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/cc
7446337145820413956,基于人工任务发起群聊,app_engine,apaas,v1,user_task,chat_group,基于任务,发起一个飞书群聊,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/chat_group,POST:/open-apis/apaas/v1/user_tasks/:task_id/chat_group,1,"[""isv"", ""custom""]",[],1734512625,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/chat_group
7446337145820348420,催办人工任务,app_engine,apaas,v1,user_task,expediting,对任务当前的处理人发起一次催办,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/expediting,POST:/open-apis/apaas/v1/user_tasks/:task_id/expediting,5,"[""isv"", ""custom""]",[],1734512534,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/expediting
7446337145820315652,查询人工任务,app_engine,apaas,v1,user_task,query,查询人工任务列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/query,POST:/open-apis/apaas/v1/user_task/query,11,"[""isv"", ""custom""]",[],1741588202,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/query
7446337145820397572,退回人工任务,app_engine,apaas,v1,user_task,rollback,对当前任务进行一次退回,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/rollback,POST:/open-apis/apaas/v1/user_tasks/:task_id/rollback,2,"[""isv"", ""custom""]",[],1734512603,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/rollback
7446337145820381188,查询人工任务可退回的位置,app_engine,apaas,v1,user_task,rollback_points,查询当前任务可以退回的位置,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/user_task/rollback_points,POST:/open-apis/apaas/v1/user_tasks/:task_id/rollback_points,3,"[""isv"", ""custom""]",[],1734512580,false,1,https://open.feishu.cn/document/apaas-v1/flow/user-task/rollback_points
7574027220335840199,执行SQL,app_engine,apaas,v1,workspace,sql_commands,在工作空间下执行 SQL 语句,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace/sql_commands,POST:/open-apis/apaas/v1/workspaces/:workspace_id/sql_commands,2,"[""custom""]",[],1764571100,false,1,
7587254819413986517,获取自定义枚举详细信息,app_engine,apaas,v1,workspace.enum,enum_get,获取自定义枚举详细信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-enum/enum_get,GET:/open-apis/apaas/v1/workspaces/:workspace_id/enums/:enum_name,1,"[""custom""]",[],1766996778,false,1,
7587254819414035669,获取工作空间下的自定义枚举列表,app_engine,apaas,v1,workspace.enum,list,获取工作空间下的自定义枚举列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-enum/list,GET:/open-apis/apaas/v1/workspaces/:workspace_id/enums,2,"[""custom""]",[],1766996758,false,1,
7587254819414002901,获取工作空间下的数据表列表,app_engine,apaas,v1,workspace.table,list,获取工作空间下的数据表列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/list,GET:/open-apis/apaas/v1/workspaces/:workspace_id/tables,7,"[""custom""]",[],1766996699,false,1,
7574027220335905735,批量更新数据表中的记录,app_engine,apaas,v1,workspace.table,records_batch_update,批量更新数据表中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/records_batch_update,PATCH:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name/records_batch_update,2,"[""custom""]",[],1764571041,false,1,
7574027220335922119,删除数据表中的记录,app_engine,apaas,v1,workspace.table,records_delete,删除数据表中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/records_delete,DELETE:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name/records,1,"[""custom""]",[],1764571061,false,1,
7574027220335856583,查询数据表数据记录,app_engine,apaas,v1,workspace.table,records_get,查询数据表数据记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/records_get,GET:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name/records,5,"[""custom""]",[],1764570983,false,1,
7574027220335889351,按条件更新数据表中的记录,app_engine,apaas,v1,workspace.table,records_patch,按条件更新数据表中的记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/records_patch,PATCH:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name/records,3,"[""custom""]",[],1764571022,false,1,
7574027220335872967,向数据表中添加或更新记录,app_engine,apaas,v1,workspace.table,records_post,向数据表中添加或更新记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/records_post,POST:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name/records,4,"[""custom""]",[],1766996739,false,1,
7587254819414019285,获取数据表详细信息,app_engine,apaas,v1,workspace.table,table_get,获取数据表详细信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-table/table_get,GET:/open-apis/apaas/v1/workspaces/:workspace_id/tables/:table_name,6,"[""custom""]",[],1766996719,false,1,
7574027220335938503,查询视图数据记录,app_engine,apaas,v1,workspace.view,views_get,查询视图数据记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/apaas-v1/workspace-view/views_get,GET:/open-apis/apaas/v1/workspaces/:workspace_id/views/:view_name/records,1763433287708,"[""custom""]",[],1764571080,false,1,
6907569742384070658,获取用户可用的应用,application,application,old,default,v1/user/visible_apps,该接口用于查询用户可用的应用列表,只能被企业自建应用调用。,none,true,/document/ukTMukTMukTM/uMjM3UjLzIzN14yMycTN,GET:/open-apis/application/v1/user/visible_apps,14,[],[],1731902094,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/obtain-the-apps-available-to-a-user
6907569523177160705,获取应用在企业内的可用范围,application,application,old,default,v2/app/visibility,该接口用于查询应用在该企业内可以被使用的范围,只能被企业自建应用调用。,none,true,/document/ukTMukTMukTM/uIjM3UjLyIzN14iMycTN,GET:/open-apis/application/v2/app/visibility,8,"[""custom""]",[],1657766576,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/obtain-the-app-availability-in-an-organization
6907569744330555393,获取企业安装的应用,application,application,old,default,v3/app/list,该接口用于查询企业安装的应用列表,只能被企业自建应用调用。 :::note 该接口为旧版获取企业安装应用接口。推荐使用新版接口[获取企业安装的应用](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/application-v6/application/list)。 :::,none,true,/document/ukTMukTMukTM/uYDN3UjL2QzN14iN0cTN,GET:/open-apis/application/v3/app/list,1726646496567,"[""custom""]",[],1731902072,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/obtain-the-apps-installed-by-an-organization
6907569745298800642,更新应用可用范围,application,application,old,default,v3/app/update_visibility,该接口用于更新当前企业内自建应用或已安装的商店应用的可见范围,包括可用人员与禁用人员。更新后对线上立即生效。,none,true,/document/ukTMukTMukTM/ucDN3UjL3QzN14yN0cTN,POST:/open-apis/application/v3/app/update_visibility,1694674782576,"[""custom""]",[],1682579816,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/update-the-availability-of-an-app
6907569524100022273,校验应用管理员,application,application,old,default,v3/is_user_admin,该接口用于查询用户是否为应用管理员。 > 此处应用管理员是指可以进入企业管理后台对应用进行审核和管理的企业管理员,并不是应用的开发者。,none,true,/document/ukTMukTMukTM/uITN1EjLyUTNx4iM1UTM,GET:/open-apis/application/v3/is_user_admin,1704368122240,"[""isv"", ""custom""]",[],1647332683,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/verify-app-admin
7218970579747110913,获取用户自定义常用的应用,application,application,v5,application,favourite,获取用户自定义常用的应用。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=application&version=v5&resource=application&method=favourite),none,true,/document/uAjLw4CM/ukTMukTMukTM/application-v5/application/favourite,GET:/open-apis/application/v5/applications/favourite,1679995605229,"[""custom""]",[],1680850918,false,1,https://open.feishu.cn/document/server-docs/workplace-v1/app_recommend_rule/favourite
7218970579747127297,获取管理员推荐的应用,application,application,v5,application,recommend,获取管理员推荐的应用。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=application&version=v5&resource=application&method=recommend),none,true,/document/uAjLw4CM/ukTMukTMukTM/application-v5/application/recommend,GET:/open-apis/application/v5/applications/recommend,1679995558961,"[""custom""]",[],1680850930,false,1,https://open.feishu.cn/document/server-docs/workplace-v1/app_recommend_rule/recommend
7291103260878356482,更新应用红点,application,application,v6,app_badge,set,更新应用红点信息,用于工作台场景,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/app_badge/set,POST:/open-apis/application/v6/app_badge/set,1664358529452,"[""isv"", ""custom""]",[],1722847669,true,1,https://open.feishu.cn/document/server-docs/application-v6/app_badge/set
7148673650311643139,获取当前设置的推荐规则列表,application,application,v6,app_recommend_rule,list,获取当前设置的推荐规则列表。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=application&version=v6&resource=app_recommend_rule&method=list),none,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/app_recommend_rule/list,GET:/open-apis/application/v6/app_recommend_rules,1664372529434,"[""custom""]",[],1665563094,false,1,https://open.feishu.cn/document/server-docs/workplace-v1/app_recommend_rule/list
7218093640928133124,获取应用通讯录权限范围配置,application,application,v6,application,contacts_range_configuration,获取当前企业内某个自建应用线上实际生效的通讯录权限范围配置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/contacts_range_configuration,GET:/open-apis/application/v6/applications/:app_id/contacts_range_configuration,10,"[""custom""]",[],1689924100,true,1,https://open.feishu.cn/document/server-docs/application-v6/admin/contacts_range_configuration
6989432329400238081,获取应用信息,application,application,v6,application,get,根据app_id获取应用的基础信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/get,GET:/open-apis/application/v6/applications/:app_id,4,"[""isv"", ""custom""]",[],1752136594,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/get
7438462855810138116,获取企业安装的应用,application,application,v6,application,list,该接口用于查询企业安装的应用列表,只能被企业自建应用调用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/list,GET:/open-apis/application/v6/applications,15,"[""custom""]",[],1752136594,true,1,https://open.feishu.cn/document/application-v6/admin/list
6989432329400270849,更新应用分组信息,application,application,v6,application,patch,更新应用的分组信息(分组会影响应用在工作台中的分类情况,请谨慎更新),basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/patch,PATCH:/open-apis/application/v6/applications/:app_id,11,"[""custom""]",[],1689924101,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/patch
6989432329400254465,查看待审核的应用列表,application,application,v6,application,underauditlist,查看本企业下所有待审核的自建应用列表,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application/underauditlist,GET:/open-apis/application/v6/applications/underauditlist,13,"[""custom""]",[],1752136595,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/underauditlist
7036626399368937500,获取多部门应用使用概览,application,application,v6,application.app_usage,department_overview,查看应用在某一天/某一周/某一个月的使用数据,可以根据部门做多层子部门的筛选,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_usage/department_overview,POST:/open-apis/application/v6/applications/:app_id/app_usage/department_overview,1637899475845,"[""custom""]",[],1721719962,true,1,https://open.feishu.cn/document/server-docs/application-v6/app-usage/department_overview
7036626399368953884,获取消息推送概览,application,application,v6,application.app_usage,message_push_overview,目标:查看应用在某一天/某一周/某一个月的机器人消息推送数据,可以根据部门做筛选,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_usage/message_push_overview,POST:/open-apis/application/v6/applications/:app_id/app_usage/message_push_overview,1637896647969,"[""custom""]",[],1724405849,true,1,https://open.feishu.cn/document/server-docs/application-v6/app-usage/message_push_overview
6995148762798178332,获取应用使用概览,application,application,v6,application.app_usage,overview,查看应用在某一天/某一周/某一个月的使用数据,可以查看租户整体对应用的使用情况,也可以分部门查看。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_usage/overview,POST:/open-apis/application/v6/applications/:app_id/app_usage/overview,1628601109207,"[""custom""]",[],1721719962,true,1,https://open.feishu.cn/document/server-docs/application-v6/app-usage/overview
7218093640928165892,获取应用版本中开发者申请的通讯录权限范围,application,application,v6,application.app_version,contacts_range_suggest,该接口用于根据应用的 App ID 和版本 ID 获取企业自建应用某个版本的通讯录权限范围。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_version/contacts_range_suggest,GET:/open-apis/application/v6/applications/:app_id/app_versions/:version_id/contacts_range_suggest,1,"[""isv"", ""custom""]",[],1689924101,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/contacts_range_suggest
6989432329400287233,获取应用版本信息,application,application,v6,application.app_version,get,根据应用 ID 和应用版本 ID 来获取同租户下的应用版本的信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_version/get,GET:/open-apis/application/v6/applications/:app_id/app_versions/:version_id,3,"[""isv"", ""custom""]",[],1739867977,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/get-2
7146031228486467585,获取应用版本列表,application,application,v6,application.app_version,list,根据 app_id 获取对应应用版本列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_version/list,GET:/open-apis/application/v6/applications/:app_id/app_versions,2,"[""isv"", ""custom""]",[],1739867977,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/list
6989432329400303617,更新应用审核状态,application,application,v6,application.app_version,patch,通过接口来更新应用版本的审核结果:通过后应用可以直接上架;拒绝后则开发者可以看到拒绝理由,并在修改后再次申请发布。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_version/patch,PATCH:/open-apis/application/v6/applications/:app_id/app_versions/:version_id,12,"[""custom""]",[],1689924101,true,1,https://open.feishu.cn/document/server-docs/application-v6/application/patch-2
7320225176225087491,获取应用协作者列表,application,application,v6,application.collaborators,get,根据 app_id 获取应用(包括自建应用和商店应用)的协作者信息,包括应用的所有者、管理员、开发者、运营人员,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-collaborators/get,GET:/open-apis/application/v6/applications/:app_id/collaborators,12,"[""isv"", ""custom""]",[],1738834740,true,1,https://open.feishu.cn/document/application-v6/application/get-3
7320160200451686403,更新应用协作者,application,application,v6,application.collaborators,update,某个应用(包括自建应用和商店应用)中添加/移除应用协作者,添加后协作者将会收到添加通知。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-collaborators/update,PUT:/open-apis/application/v6/applications/:app_id/collaborators,13,"[""custom""]",[],1738834729,true,1,https://open.feishu.cn/document/application-v6/application/update
7278520881743724547,更新应用通讯录权限范围配置,application,application,v6,application.contacts_range,patch,该接口用于更新当前企业内自建应用或已安装的商店应用的通讯录权限范围配置。更新后线上立即生效。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-contacts_range/patch,PATCH:/open-apis/application/v6/applications/:app_id/contacts_range,9,"[""custom""]",[],1695029062,true,1,https://open.feishu.cn/document/application-v6/admin/patch-4
7072687744306610178,获取应用反馈列表,application,application,v6,application.feedback,list,查询应用的反馈数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-feedback/list,GET:/open-apis/application/v6/applications/:app_id/feedbacks,1646658282538,"[""isv"", ""custom""]",[],1721719962,true,1,https://open.feishu.cn/document/server-docs/application-v6/application-feedback/list
7072687744306593794,更新应用反馈,application,application,v6,application.feedback,patch,更新应用的反馈数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-feedback/patch,PATCH:/open-apis/application/v6/applications/:app_id/feedbacks/:feedback_id,1646658603895,"[""isv"", ""custom""]",[],1689924102,true,1,https://open.feishu.cn/document/server-docs/application-v6/application-feedback/patch
7327327802326958081,启停用应用,application,application,v6,application.management,update,可停用或启用企业内已安装的自建应用与商店应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-management/update,PUT:/open-apis/application/v6/applications/:app_id/management,4,"[""custom""]",[],1706267504,true,1,https://open.feishu.cn/document/application-v6/admin/update
7320225176225185795,转移应用所有者,application,application,v6,application.owner,update,将某个自建应用的所有者转移给另外一个人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-owner/update,PUT:/open-apis/application/v6/applications/:app_id/owner,14,"[""custom""]",[],1738834717,true,1,https://open.feishu.cn/document/application-v6/application/update-2
7218093640928149508,查询用户或部门是否在应用的可用或禁用名单,application,application,v6,application.visibility,check_white_black_list,该接口用于查询用户、部门、用户组是否在应用的可用或禁用名单中,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-visibility/check_white_black_list,POST:/open-apis/application/v6/applications/:app_id/visibility/check_white_black_list,7,"[""isv"", ""custom""]",[],1689924100,true,1,https://open.feishu.cn/document/server-docs/application-v6/admin/check_white_black_list
7278520881743740931,更新应用可用范围,application,application,v6,application.visibility,patch,调用该接口更新指定应用的可用范围,支持更新当前企业内自建应用的可用范围,或者已安装的商店应用的可用范围,包括可用人员与禁用人员。更新可用范围后对线上立即生效。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-visibility/patch,PATCH:/open-apis/application/v6/applications/:app_id/visibility,5,"[""custom""]",[],1721360156,true,1,https://open.feishu.cn/document/application-v6/admin/patch-5
7406972061036429316,向管理员申请授权,application,application,v6,scope,apply,调用该接口以应用身份向租户管理员申请应用内需要审核的 API 权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/scope/apply,POST:/open-apis/application/v6/scopes/apply,1724385186797,"[""isv"", ""custom""]",[],1724637934,true,1,https://open.feishu.cn/document/application-v6/scope/apply
7406972061036445700,查询租户授权状态,application,application,v6,scope,list,调用该接口查询当前应用向租户申请授权的状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/application-v6/scope/list,GET:/open-apis/application/v6/scopes,1724385146444,"[""isv"", ""custom""]",[],1724637956,true,1,https://open.feishu.cn/document/application-v6/scope/list
6907568031544737794,查询审批 ID(专用),approval,approval,old,default,v1/id/get,用于灰度企业内的 userID、larkID 相互转换。,none,true,/document/ukTMukTMukTM/uEDN5UjLxQTO14SM0kTN,POST:/approval/openapi/v1/id/get,1,[],[],1745207231,false,1,https://open.feishu.cn/document/server-docs/approval-v4/approval-search/search-approval-id-(dedicated)
6907569742384906242,发送审批 Bot 消息,approval,approval,old,default,v1/message/send,此接口可以用来通过飞书审批的 Bot 推送消息给用户,当有新的审批待办,或者审批待办的状态有更新时,可以通过飞书审批的 Bot 告知用户。如果出现推送成功,但是没有收到消息,可能是因为开通了审批机器人的聚合推送。,none,true,/document/ukTMukTMukTM/ugDNyYjL4QjM24CO0IjN,POST:/open-apis/approval/v1/message/send,4,"[""isv"", ""custom""]",[],1750674809,false,1,https://open.feishu.cn/document/server-docs/approval-v4/message/send-bot-messages
6907569743419752450,更新审批 Bot 消息,approval,approval,old,default,v1/message/update,调用[发送审批 Bot 消息](/ssl:ttdoc/ukTMukTMukTM/ugDNyYjL4QjM24CO0IjN)接口后,可根据审批 Bot 消息 ID 及审批相应的状态,更新审批 Bot 消息。例如,给审批人推送了审批待办消息,当审批人通过审批后,可以将之前推送的 Bot 消息更新为已审批。,none,true,/document/ukTMukTMukTM/uAjNyYjLwYjM24CM2IjN,POST:/open-apis/approval/v1/message/update,3,"[""isv"", ""custom""]",[],1745207136,false,1,https://open.feishu.cn/document/server-docs/approval-v4/message/update-bot-messages
6907569743420686338,创建审批定义,approval,approval,old,default,v2/approval/create,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/create) </md-alert> ::: 用于通过接口创建简单的审批定义,可以灵活指定定义的基础信息、表单和流程等。创建成功后,不支持从审批管理后台删除该定义。不推荐企业自建应用使用,如有需要尽量联系管理员在审批管理后台创建定义。",none,true,/document/ukTMukTMukTM/uUzNyYjL1cjM24SN3IjN,POST:/approval/openapi/v2/approval/create,1656504535845,"[""isv"", ""custom""]",[],1698893404,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-store-app-integration/create-an-approval-definition
6907569744330358785,查看审批定义,approval,approval,old,default,v2/approval/get,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/get) </md-alert> ::: 根据 Approval Code 获取某个审批定义的详情,用于构造创建审批实例的请求。",none,true,/document/ukTMukTMukTM/uADNyUjLwQjM14CM0ITN,POST:/approval/openapi/v2/approval/get,1656504260807,"[""isv"", ""custom""]",[],1657280103,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/obtain-single-approval-form
6907568073252700162,抄送列表查询,approval,approval,old,default,v2/cc/search,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/search_cc) </md-alert> :::",none,true,/document/ukTMukTMukTM/uUjMxYjL1ITM24SNyEjN,POST:/approval/openapi/v2/cc/search,1657280865672,"[""custom""]",[],1657280072,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/approval-search/cc-list-query
6907569523177013249,三方审批实例同步,approval,approval,old,default,v2/external/instance/create,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_instance/create) </md-alert> ::: <br> 审批中心不负责审批的流转,审批的流转在三方系统,三方系统在审批流转后生成的审批实例、审批任务、审批抄送数据同步到审批中心。<br> <br> 用户可以在审批中心中浏览三方系统同步过来的实例、任务、抄送信息,并且可以跳转回三方系统进行更详细的查看和操作,其中实例信息在【已发起】列表,任务信息在【待审批】和【已审批】列表,抄送信息在【抄送我】列表 :::html <img src=""//sf3-cn.feishucdn.com/obj/open-platform-opendoc/9dff4434afbeb0ef69de7f36b9a6e995_z5iwmTzEgg.png"" alt="""" style=""zoom:17%;"" />",none,true,/document/ukTMukTMukTM/uczM3UjL3MzN14yNzcTN,POST:/approval/openapi/v2/external/instance/create,3,"[""isv"", ""custom""]",[],1663656142,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/third-party-approval-integration/external-approval-instance-create
6915007875422568450,获取三方审批任务状态,approval,approval,old,default,v2/external/list,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_task/list) </md-alert> :::",none,true,/document/ukTMukTMukTM/ukjNyYjL5YjM24SO2IjN/external_status,POST:/approval/openapi/v2/external/list,1,"[""isv"", ""custom""]",[],1657280042,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/third-party-approval-integration/external_status
6907569745298767874,上传文件,approval,approval,old,default,v2/file/upload,当审批表单中有图片或者附件控件时,开发者需要在调用[创建审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create)前,将传入图片或附件控件的文件通过本接口上传到审批系统,接口会返回文件的 code,该 code 用于创建审批实例时为图片或附件控件赋值。,none,true,/document/ukTMukTMukTM/uUDOyUjL1gjM14SN4ITN,POST:/approval/openapi/v2/file/upload,1657282453191,"[""isv"", ""custom""]",[],1747033857,false,1,https://open.feishu.cn/document/server-docs/approval-v4/file/upload-files
6907569743419981826,审批任务同意,approval,approval,old,default,v2/instance/approve,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/approve) </md-alert> ::: 对于单个审批任务进行同意操作。同意后审批流程会流转到下一个审批人。",none,true,/document/ukTMukTMukTM/uMDNyUjLzQjM14yM0ITN,POST:/approval/openapi/v2/instance/approve,1656504209211,"[""isv"", ""custom""]",[],1657280195,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/approval-task-approve
6907569743419670530,审批实例撤回,approval,approval,old,default,v2/instance/cancel,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/cancel) </md-alert> ::: 对于状态为“审批中”的单个审批实例进行撤销操作,撤销后审批流程结束",none,true,/document/ukTMukTMukTM/uYDNyUjL2QjM14iN0ITN,POST:/approval/openapi/v2/instance/cancel,1656504218361,"[""isv"", ""custom""]",[],1657280179,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/approval-instance-cancel
6907569743419523074,审批实例抄送,approval,approval,old,default,v2/instance/cc,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/cc) </md-alert> ::: 通过接口可以将当前审批实例抄送给其他人。",none,true,/document/ukTMukTMukTM/uADOzYjLwgzM24CM4MjN,POST:/approval/openapi/v2/instance/cc,1656504226309,"[""isv"", ""custom""]",[],1657280164,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/cc-instance
6907569524100874241,创建审批实例,approval,approval,old,default,v2/instance/create,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create) </md-alert> :::",none,true,/document/ukTMukTMukTM/uIDNyUjLyQjM14iM0ITN,POST:/approval/openapi/v2/instance/create,1656504252419,"[""isv"", ""custom""]",[],1657280118,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/create-approval-instance
6907569524100497409,获取单个审批实例详情,approval,approval,old,default,v2/instance/get,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/get) </md-alert> ::: 通过审批实例 Instance Code 获取审批实例详情。Instance Code 由 [批量获取审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/list) 接口获取。",none,true,/document/ukTMukTMukTM/uEDNyUjLxQjM14SM0ITN,POST:/approval/openapi/v2/instance/get,1656504244133,"[""isv"", ""custom""]",[],1698893392,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/obtain-single-approval-instance-details
6907569745299046402,批量获取审批实例ID,approval,approval,old,default,v2/instance/list,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/list) </md-alert> ::: 根据 approval_code 批量获取审批实例的 instance_code,用于拉取租户下某个审批定义的全部审批实例。 默认以审批创建时间排序。",none,true,/document/ukTMukTMukTM/uQDOyUjL0gjM14CN4ITN,POST:/approval/openapi/v2/instance/list,1656504234674,"[""isv"", ""custom""]",[],1657280149,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/batch-obtain-approval-instance-ids
6907569742384283650,审批任务拒绝,approval,approval,old,default,v2/instance/reject,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/reject) </md-alert> ::: 对于单个审批任务进行拒绝操作。拒绝后审批流程结束。",none,true,/document/ukTMukTMukTM/uQDNyUjL0QjM14CN0ITN,POST:/approval/openapi/v2/instance/reject,1656504199148,"[""isv"", ""custom""]",[],1657280210,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/approval-task-reject
6907568073251946498,实例列表查询,approval,approval,old,default,v2/instance/search,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/query) </md-alert> ::: 该接口通过不同条件查询审批系统中符合条件的审批实例列表。",none,true,/document/ukTMukTMukTM/uQjMxYjL0ITM24CNyEjN,POST:/approval/openapi/v2/instance/search,1657280875847,"[""custom""]",[],1657280057,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/approval-search/instance-list-query
6907569524099842049,审批任务转交,approval,approval,old,default,v2/instance/transfer,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/transfer) </md-alert> ::: 对于单个审批任务进行转交操作。转交后审批流程流转给被转交人。",none,true,/document/ukTMukTMukTM/uUDNyUjL1QjM14SN0ITN,POST:/approval/openapi/v2/instance/transfer,1656504191662,"[""isv"", ""custom""]",[],1657280225,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/approval-task-transfer
6907569742384922626,订阅审批事件,approval,approval,old,default,v2/subscription/subscribe,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/subscribe) </md-alert> ::: 应用订阅 approval_code 后,该应用就可以收到该审批定义对应实例的事件通知。同一应用只需要订阅一次,无需重复订阅。",none,true,/document/ukTMukTMukTM/ucDOyUjL3gjM14yN4ITN,POST:/approval/openapi/v2/subscription/subscribe,1657281144722,[],[],1657279995,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/subscribe-to-an-approvals-event-
6907569524100546561,取消订阅审批事件,approval,approval,old,default,v2/subscription/unsubscribe,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/unsubscribe) </md-alert> ::: 取消订阅 approval_code 后,无法再收到该审批定义对应实例的事件通知。",none,true,/document/ukTMukTMukTM/ugDOyUjL4gjM14CO4ITN,POST:/approval/openapi/v2/subscription/unsubscribe,1657281134373,[],[],1657280011,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/feishu-native-approval/cancel-a-subscription-to-an-approvals-event
6907568073252241410,任务列表查询,approval,approval,old,default,v2/task/search,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/search) </md-alert> ::: 该接口通过不同条件查询审批系统中符合条件的审批任务列表",none,true,/document/ukTMukTMukTM/uYjMxYjL2ITM24iNyEjN,POST:/approval/openapi/v2/task/search,1657280857359,"[""custom""]",[],1657280087,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/approval-search/task-list-query
6907569744329883649,三方审批定义创建,approval,approval,old,default,v3/external/approval/create,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_approval/create) </md-alert> ::: 审批定义是审批的描述,包括审批名称、图标、描述等基础信息。创建好审批定义,用户就可以在审批应用的发起页中看到审批,如果用户点击发起,则会跳转到配置的发起三方系统地址去发起审批。 <br> 另外,审批定义还配置了审批操作时的回调地址:审批人在待审批列表中进行【同意】【拒绝】操作时,审批中心会调用回调地址通知三方系统。",none,true,/document/ukTMukTMukTM/uIDNyYjLyQjM24iM0IjN,POST:/approval/openapi/v3/external/approval/create,4,"[""isv"", ""custom""]",[],1705571166,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/third-party-approval-integration/external-approval-create
6907569745298604034,三方审批实例校验,approval,approval,old,default,v3/external/instance/check,":::html <md-alert type=""error""> 为了更好地提升接口文档的的易理解性,我们对文档进行了升级,请尽快迁移至[新版本>>](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_instance/check) </md-alert> ::: 校验三方审批实例数据,用于判断服务端数据是否为最新的。用户提交实例最新更新时间,如果服务端不存在该实例,或者服务端实例更新时间不是最新的,则返回对应实例 id。",none,true,/document/ukTMukTMukTM/uUDNyYjL1QjM24SN0IjN,POST:/approval/openapi/v3/external/instance/check,2,"[""isv"", ""custom""]",[],1657280240,false,1,https://open.feishu.cn/document/server-docs/historic-version/approval/v2/third-party-approval-integration/external-approval-instance-check
7114621541589712899,创建审批定义,approval,approval,v4,approval,create,该接口用于创建审批定义,可以灵活指定审批定义的基础信息、表单和流程等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/create,POST:/open-apis/approval/v4/approvals,4,"[""isv"", ""custom""]",[],1747721442,true,1,https://open.feishu.cn/document/server-docs/approval-v4/approval/create
7114621541589860355,查看指定审批定义,approval,approval,v4,approval,get,根据审批定义 Code 以及语言、用户 ID 等筛选条件获取指定审批定义的信息,包括审批定义名称、状态、表单控件以及节点等信息。获取审批定义信息后,可根据信息构造[创建审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create)的请求。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/get,GET:/open-apis/approval/v4/approvals/:approval_code,3,"[""isv"", ""custom""]",[],1745207171,true,1,https://open.feishu.cn/document/server-docs/approval-v4/approval/get
7117964632137105411,订阅审批事件,approval,approval,v4,approval,subscribe,当应用[订阅审批事件](/ssl:ttdoc/ukTMukTMukTM/uUTNz4SN1MjL1UzM)后,需要调用该接口指定审批定义 Code(approval_code)开启订阅,开启后应用才可以接收该审批定义对应的事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/subscribe,POST:/open-apis/approval/v4/approvals/:approval_code/subscribe,2,"[""isv"", ""custom""]",[],1742781451,true,1,https://open.feishu.cn/document/server-docs/approval-v4/event/event-interface/subscribe
7117964632137220099,取消订阅审批事件,approval,approval,v4,approval,unsubscribe,调用[订阅审批事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/subscribe)接口订阅审批定义 Code 后,如果不再需要接收该审批定义下的事件订阅通知,可以调用本接口取消订阅审批定义 Code,取消后应用无法再收到该审批定义对应实例的事件通知。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/approval/unsubscribe,POST:/open-apis/approval/v4/approvals/:approval_code/unsubscribe,1,"[""isv"", ""custom""]",[],1742781452,true,1,https://open.feishu.cn/document/server-docs/approval-v4/event/event-interface/unsubscribe
7114621541589794819,创建三方审批定义,approval,approval,v4,external_approval,create,三方审批定义用于设置审批的名称、描述等基本信息,以及三方审批系统的审批发起页、回调 URL 等信息,使企业员工在飞书审批内即可发起并操作三方审批。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_approval/create,POST:/open-apis/approval/v4/external_approvals,3,"[""isv"", ""custom""]",[],1753961050,true,1,https://open.feishu.cn/document/server-docs/approval-v4/external_approval/create
7255160068449828892,查看指定三方审批定义,approval,approval,v4,external_approval,get,调用该接口通过三方审批定义 Code 获取审批定义的详细数据,包括三方审批定义的名称、说明、三方审批发起链接、回调 URL 以及审批定义可见人列表等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_approval/get,GET:/open-apis/approval/v4/external_approvals/:approval_code,2,"[""isv"", ""custom""]",[],1745207055,true,1,https://open.feishu.cn/document/approval-v4/external_approval/get
7114621541589909507,校验三方审批实例,approval,approval,v4,external_instance,check,调用该接口校验三方审批实例数据,用于判断服务端数据是否为最新的。请求时提交实例最新更新时间,如果服务端不存在该实例,或者服务端实例更新时间不是最新的,则返回对应实例 ID。 例如,设置定时任务每隔 5 分钟,将最近 5 分钟产生的实例使用该接口进行对比。如果数据在服务端不存在或者不是最新,则可以根据本接口返回的实例 ID、任务 ID,前往[同步三方审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_instance/create)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_instance/check,POST:/open-apis/approval/v4/external_instances/check,1,"[""isv"", ""custom""]",[],1745207077,true,1,https://open.feishu.cn/document/server-docs/approval-v4/external_instance/check
7114621541589811203,同步三方审批实例,approval,approval,v4,external_instance,create,审批中心不负责审批的流转,审批的流转在三方系统。本接口用于把三方系统在审批流转后生成的审批实例、审批任务、审批抄送数据同步到审批中心。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_instance/create,POST:/open-apis/approval/v4/external_instances,2,"[""isv"", ""custom""]",[],1752807227,true,1,https://open.feishu.cn/document/server-docs/approval-v4/external_instance/create
7117964632137170947,获取三方审批任务状态,approval,approval,v4,external_task,list,该接口用于获取三方审批的状态。用户传入查询条件,接口返回满足条件的审批实例的状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_task/list,GET:/open-apis/approval/v4/external_tasks,1651077901566,"[""isv"", ""custom""]",[],1723619950,true,1,https://open.feishu.cn/document/server-docs/approval-v4/external_task/list
6968270299335606273,审批任务加签,approval,approval,v4,instance,add_sign,对于单个审批任务进行加签操作。,none,true,/document/ukTMukTMukTM/ukTM5UjL5ETO14SOxkTN/approval-task-addsign,POST:/open-apis/approval/v4/instances/add_sign,2,"[""isv"", ""custom""]",[],1745207195,false,1,https://open.feishu.cn/document/server-docs/approval-v4/task/approval-task-addsign
7114621541589843971,撤回审批实例,approval,approval,v4,instance,cancel,如果企业管理员在审批后台的某一审批定义的 **更多设置** 中,勾选了 **允许撤销审批中的申请** 或者 **允许撤销 x 天内通过的审批**,则在符合撤销规则的情况下,你可以调用本接口将指定提交人的审批实例撤回。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/cancel,POST:/open-apis/approval/v4/instances/cancel,6,"[""isv"", ""custom""]",[],1745206930,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/cancel
7114621541589745667,抄送审批实例,approval,approval,v4,instance,cc,调用该接口将当前审批实例抄送给指定用户。被抄送的用户可以查看审批实例详情。例如,在飞书客户端的 **工作台 > 审批 > 审批中心 > 抄送我** 列表中查看到审批实例。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/cc,POST:/open-apis/approval/v4/instances/cc,5,"[""isv"", ""custom""]",[],1745206930,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/cc
7114621541589827587,创建审批实例,approval,approval,v4,instance,create,调用本接口使用指定审批定义 Code 创建一个审批实例,接口调用者需对审批定义的表单有详细了解,按照定义的表单结构,将表单 Value 通过本接口传入。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create,POST:/open-apis/approval/v4/instances,7,"[""isv"", ""custom""]",[],1747194126,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/create
7114621541589729283,获取单个审批实例详情,approval,approval,v4,instance,get,通过审批实例 Code 获取指定审批实例的详细信息,包括审批实例的名称、创建时间、发起审批的用户、状态以及任务列表等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/get,GET:/open-apis/approval/v4/instances/:instance_id,3,"[""isv"", ""custom""]",[],1747033877,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/get
7114621541589876739,批量获取审批实例 ID,approval,approval,v4,instance,list,根据审批定义的 approval_code 批量获取审批实例的 instance_code,用于拉取企业下某个审批定义的全部审批实例。默认以审批创建时间先后顺序排列。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/list,GET:/open-apis/approval/v4/instances,2,"[""isv"", ""custom""]",[],1768361098,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/list
6995509710095695876,预览审批流程,approval,approval,v4,instance,preview,在[创建审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create)之前,可调用本接口预览审批流程数据。在[创建审批实例](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/create)之后,可调用本接口预览某一审批节点的后续流程数据。,none,true,/document/ukTMukTMukTM/ukTM5UjL5ETO14SOxkTN/approval-preview,POST:/open-apis/approval/v4/instances/preview,4,"[""isv"", ""custom""]",[],1745206942,false,1,https://open.feishu.cn/document/server-docs/approval-v4/instance/approval-preview
7117964632137203715,查询实例列表,approval,approval,v4,instance,query,该接口通过不同条件查询审批系统中符合条件的审批实例列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/query,POST:/open-apis/approval/v4/instances/query,5,"[""custom""]",[],1745207137,true,1,https://open.feishu.cn/document/server-docs/approval-v4/approval-search/query-2
7117964632137187331,查询抄送列表,approval,approval,v4,instance,search_cc,该接口通过不同条件查询审批系统中符合条件的审批抄送列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/search_cc,POST:/open-apis/approval/v4/instances/search_cc,4,"[""custom""]",[],1745207137,true,1,https://open.feishu.cn/document/server-docs/approval-v4/approval-search/search_cc
7117964632137089027,退回审批任务,approval,approval,v4,instance,specified_rollback,从当前审批任务,退回到已审批的一个或多个任务节点。退回后,已审批节点重新生成审批任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance/specified_rollback,POST:/open-apis/approval/v4/instances/specified_rollback,3,"[""isv"", ""custom""]",[],1745206965,true,1,https://open.feishu.cn/document/server-docs/approval-v4/task/specified_rollback
7117964632137154563,创建评论,approval,approval,v4,instance.comment,create,在指定审批实例下创建、修改评论或回复评论(不包含审批同意、拒绝、转交等附加的理由或意见)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance-comment/create,POST:/open-apis/approval/v4/instances/:instance_id/comments,4,"[""isv"", ""custom""]",[],1745207196,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance-comment/create
7117964632137121795,删除评论,approval,approval,v4,instance.comment,delete,删除某审批实例下的一条评论或评论回复(不包含审批同意、拒绝、转交等附加的理由或意见),删除后在审批中心的审批实例内不再显示评论内容,而是显示 **评论已删除**。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance-comment/delete,DELETE:/open-apis/approval/v4/instances/:instance_id/comments/:comment_id,3,"[""isv"", ""custom""]",[],1745207001,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance-comment/delete
7117964632137236483,获取评论,approval,approval,v4,instance.comment,list,根据审批实例 Code 获取某个审批实例下,全部评论与评论回复(不包含审批同意、拒绝、转交等附加的理由或意见)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance-comment/list,GET:/open-apis/approval/v4/instances/:instance_id/comments,1,"[""isv"", ""custom""]",[],1745207001,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance-comment/list
7117964632137252867,清空评论,approval,approval,v4,instance.comment,remove,清空某审批实例下的全部评论与评论回复,包括显示为已删除的评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/instance-comment/remove,POST:/open-apis/approval/v4/instances/:instance_id/comments/remove,2,"[""isv"", ""custom""]",[],1745207001,true,1,https://open.feishu.cn/document/server-docs/approval-v4/instance-comment/remove
7114621541589893123,同意审批任务,approval,approval,v4,task,approve,对于单个审批任务进行同意操作。同意后审批流程会流转到下一个审批人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/approve,POST:/open-apis/approval/v4/tasks/approve,6,"[""isv"", ""custom""]",[],1745206965,true,1,https://open.feishu.cn/document/server-docs/approval-v4/task/approve
6986936689592549378,查询用户的任务列表,approval,approval,v4,task,query,根据用户和任务分组查询任务列表。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=approval&version=v4&resource=task&method=query),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/query,GET:/open-apis/approval/v4/tasks/query,2,"[""isv"", ""custom""]",[],1672200368,false,1,https://open.feishu.cn/document/server-docs/approval-v4/approval-search/query
7114621541589762051,拒绝审批任务,approval,approval,v4,task,reject,对于单个审批任务进行拒绝操作。拒绝后审批流程结束。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/reject,POST:/open-apis/approval/v4/tasks/reject,5,"[""isv"", ""custom""]",[],1745206965,true,1,https://open.feishu.cn/document/server-docs/approval-v4/task/reject
7127897901158842396,重新提交审批任务,approval,approval,v4,task,resubmit,对于退回到发起人的审批任务进行重新发起操作。发起后审批流程会流转到下一个审批人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/resubmit,POST:/open-apis/approval/v4/tasks/resubmit,1,"[""isv"", ""custom""]",[],1745206965,true,1,https://open.feishu.cn/document/server-docs/approval-v4/task/resubmit
7117964632137138179,查询任务列表,approval,approval,v4,task,search,该接口通过不同条件查询审批系统中符合条件的审批任务列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/search,POST:/open-apis/approval/v4/tasks/search,3,"[""isv"", ""custom""]",[],1745207137,true,1,https://open.feishu.cn/document/server-docs/approval-v4/approval-search/search
7114621541589778435,转交审批任务,approval,approval,v4,task,transfer,对于单个审批任务进行转交操作。转交后审批流程流转给被转交人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/task/transfer,POST:/open-apis/approval/v4/tasks/transfer,4,"[""isv"", ""custom""]",[],1745206965,true,1,https://open.feishu.cn/document/server-docs/approval-v4/task/transfer
7108645368100290562,通知审批状态更新,attendance,attendance,v1,approval_info,process,对于只使用飞书考勤系统而未使用飞书审批系统的企业,可以通过该接口更新写入飞书考勤系统中的三方系统审批状态,例如请假、加班、外出、出差、补卡等审批,状态包括通过、不通过、撤销等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/approval_info/process,POST:/open-apis/attendance/v1/approval_infos/process,4,"[""isv"", ""custom""]",[],1723544608,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_approval/process
7368679915980931074,删除归档报表行数据,attendance,attendance,v1,archive_rule,del_report,按月份、用户和归档规则ID直接删除归档报表行数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/archive_rule/del_report,POST:/open-apis/attendance/v1/archive_rule/del_report,1715138587494,"[""isv"", ""custom""]",[],1722519312,true,1,https://open.feishu.cn/document/attendance-v1/archive_rule/del_report
7368679915980947458,查询所有归档规则,attendance,attendance,v1,archive_rule,list,查询所有归档规则,对应后台假勤管理-考勤统计-报表-[归档报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)功能,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/archive_rule/list,GET:/open-apis/attendance/v1/archive_rule,1715138513751,"[""custom""]",[],1721704381,true,1,https://open.feishu.cn/document/attendance-v1/archive_rule/list
7368679915980914690,写入归档报表结果,attendance,attendance,v1,archive_rule,upload_report,写入归档报表结果,对应假勤管理-考勤统计-报表-[归档报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)页签,点击报表名称进入后的导入功能。可以将数据直接写入归档报表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/archive_rule/upload_report,POST:/open-apis/attendance/v1/archive_rule/upload_report,1715138625845,"[""isv"", ""custom""]",[],1722519300,true,1,https://open.feishu.cn/document/attendance-v1/archive_rule/upload_report
7368679915980898306,查询归档报表表头,attendance,attendance,v1,archive_rule,user_stats_fields_query,查询归档报表表头,对应后台假勤管理-考勤统计-报表-[归档报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)中一个归档报表的表头信息。归档报表支持引用系统报表,可设置归档时间和数据归档周期,并且支持根据部门/人员、国家/地区、人员类型、工作地点、职级、序列、职务进行人员圈选。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/archive_rule/user_stats_fields_query,POST:/open-apis/attendance/v1/archive_rule/user_stats_fields_query,1715138654102,"[""isv"", ""custom""]",[],1722305679,true,1,https://open.feishu.cn/document/attendance-v1/archive_rule/user_stats_fields_query
7044467124773732353,下载用户人脸识别照片,attendance,attendance,v1,file,download,通过文件 ID 下载用户的头像照片文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/file/download,GET:/open-apis/attendance/v1/files/:file_id/download,2,"[""custom""]",[],1723544610,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_setting/download
7044467124773765121,上传用户人脸识别照片,attendance,attendance,v1,file,upload,上传用户人脸照片并获取文件 ID,对应小程序端的人脸录入功能,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/file/upload,POST:/open-apis/attendance/v1/files/upload,3,"[""custom""]",[],1723544610,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_setting/upload
7044467124773683201,创建或修改考勤组,attendance,attendance,v1,group,create,考勤组,是对部门或者员工在某个特定场所及特定时间段内的出勤情况(包括上下班、迟到、早退、病假、婚假、丧假、公休、工作时间、加班情况等)的一种规则设定。 通过设置考勤组,可以从部门、员工两个维度,来设定考勤方式、考勤时间、考勤地点等考勤规则。 对应功能同设置-假勤设置-[考勤组](https://example.feishu.cn/people/workforce-management/setting/group/list)的“新建”功能,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/create,POST:/open-apis/attendance/v1/groups,5,"[""custom""]",[],1750247299,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/group/create
7044467124773699585,删除考勤组,attendance,attendance,v1,group,delete,通过考勤组 ID 删除考勤组。对应设置-假勤设置-[考勤组](https://example.feishu.cn/people/workforce-management/setting/group/list)操作列的删除功能,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/delete,DELETE:/open-apis/attendance/v1/groups/:group_id,4,"[""custom""]",[],1724839056,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/group/delete
7044467124773371905,按 ID 查询考勤组,attendance,attendance,v1,group,get,通过考勤组 ID 获取考勤组详情。包含基本信息、考勤班次、考勤方式、考勤设置信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/get,GET:/open-apis/attendance/v1/groups/:group_id,3,"[""custom""]",[],1749126320,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/group/get
7098332552943697922,查询所有考勤组,attendance,attendance,v1,group,list,翻页获取所有考勤组列表。列表中的数据为考勤组信息,字段包含考勤组名称和考勤组id,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/list,GET:/open-apis/attendance/v1/groups,1,"[""custom""]",[],1723544573,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/group/list
7439549206763372546,查询考勤组下所有成员,attendance,attendance,v1,group,list_user,查询指定考勤组下的所有成员,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/list_user,GET:/open-apis/attendance/v1/groups/:group_id/list_user,1732013408419,"[""custom""]",[],1732158138,true,1,https://open.feishu.cn/document/attendance-v1/group/list_user
7044467124773781505,按名称查询考勤组,attendance,attendance,v1,group,search,按考勤组名称查询考勤组摘要信息。查询条件支持名称精确匹配和模糊匹配两种方式。查询结果按考勤组修改时间 desc 排序,且最大记录数为 10 条。对应页面设置-假勤设置-[考勤组](https://example.feishu.cn/people/workforce-management/setting/group/list)的名称搜索功能,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/search,POST:/open-apis/attendance/v1/groups/search,2,"[""custom""]",[],1723544572,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/group/search
7239198678939713540,修改发放记录,attendance,attendance,v1,leave_accrual_record,patch,更新发放记录的发放数量和失效日期,对应假勤管理-休假管理-[发放记录](https://example.feishu.cn/people/workforce-management/manage/leave/leave_admin/granting_record),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/leave_accrual_record/patch,PATCH:/open-apis/attendance/v1/leave_accrual_record/:leave_id,1685449195878,"[""custom""]",[],1724136532,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/leave_accrual_record/patch
7239198678939697156,通过过期时间获取发放记录,attendance,attendance,v1,leave_employ_expire_record,get,只能获取到对应时间段过期的发放记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/leave_employ_expire_record/get,GET:/open-apis/attendance/v1/leave_employ_expire_records/:leave_id,1685444575355,"[""custom""]",[],1724136509,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/leave_employ_expire_record/get
7044467124773601281,创建班次,attendance,attendance,v1,shift,create,班次是描述一次考勤任务时间规则的统称,比如一天打多少次卡,每次卡的上下班时间,晚到多长时间算迟到,晚到多长时间算缺卡等。在假勤设置-[班次设置](https://example.feishu.cn/people/workforce-management/setting/group/shifts)中点击班次名称可以进行班次详情查看。如果入参中传入了班次id,那么支持编辑班次的能力,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/create,POST:/open-apis/attendance/v1/shifts,5,"[""custom""]",[],1740742982,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/shift/create
7044467124773797889,删除班次,attendance,attendance,v1,shift,delete,通过班次 ID 删除班次。对应功能为假勤设置-[班次设置](https://example.feishu.cn/people/workforce-management/setting/group/shifts)班次列表中操作栏的删除按钮。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/delete,DELETE:/open-apis/attendance/v1/shifts/:shift_id,4,"[""custom""]",[],1724739625,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/shift/delete
7044467124773486593,按 ID 查询班次,attendance,attendance,v1,shift,get,通过班次 ID 获取班次详情。对应功能为假勤设置-[班次设置](https://example.feishu.cn/people/workforce-management/setting/group/shifts)班次列表中的具体班次,班次信息可以点击班次名称查看,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/get,GET:/open-apis/attendance/v1/shifts/:shift_id,3,"[""custom""]",[],1757646480,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/shift/get
7098332552943681538,查询所有班次,attendance,attendance,v1,shift,list,飞书人事管理后台中假勤设置-[班次配置](https://example.feishu.cn/people/workforce-management/setting/group/shifts)中的翻页查询所有班次功能,展示班次名称、打卡规则、弹性班次规则、休息规则等,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/list,GET:/open-apis/attendance/v1/shifts,1,"[""custom""]",[],1757646480,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/shift/list
7044467124773634049,按名称查询班次,attendance,attendance,v1,shift,query,飞书人事管理后台中假勤设置-[班次配置](https://example.feishu.cn/people/workforce-management/setting/group/shifts)中的搜索班次名称功能,展示班次名称、打卡规则、弹性班次规则、休息规则等,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/query,POST:/open-apis/attendance/v1/shifts/query,2,"[""custom""]",[],1765183622,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/shift/query
7108645368100274178,写入审批结果,attendance,attendance,v1,user_approval,create,由于部分企业使用的是自己的审批系统,而不是飞书审批系统,因此员工的请假、加班等数据无法流入到飞书考勤系统中,导致员工在请假时间段内依然收到打卡提醒,并且被记为缺卡。 对于这些只使用飞书考勤系统,而未使用飞书审批系统的企业,可以通过考勤开放接口的形式,将三方审批结果数据回写到飞书考勤系统中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_approval/create,POST:/open-apis/attendance/v1/user_approvals,5,"[""isv"", ""custom""]",[],1747624969,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_approval/create
7108645368100257794,获取审批数据,attendance,attendance,v1,user_approval,query,获取员工在某段时间内的请假、加班、外出和出差四种审批数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_approval/query,POST:/open-apis/attendance/v1/user_approvals/query,6,"[""custom""]",[],1756365269,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_approval/query
7044467124773388289,创建或修改排班表,attendance,attendance,v1,user_daily_shift,batch_create,排班表是用来描述考勤组内人员每天按哪个班次进行上班。目前排班表支持按x月y日对一位或多位人员进行排班。当用户的排班数据不存在时会进行创建,当用户的排班数据存在时会按照入参信息进行修改。注意:每人每天只能在一个考勤组中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_daily_shift/batch_create,POST:/open-apis/attendance/v1/user_daily_shifts/batch_create,3,"[""custom""]",[],1740742982,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_daily_shift/batch_create
7446612629576892419,创建或修改临时排班,attendance,attendance,v1,user_daily_shift,batch_create_temp,可在排班表上创建或修改临时班次,并用于排班。目前支持按日期对一位或多位人员进行排临时班次。 临时排班为付费功能,如需使用请联系您的客户经理。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_daily_shift/batch_create_temp,POST:/open-apis/attendance/v1/user_daily_shifts/batch_create_temp,1,"[""custom""]",[],1740743004,true,1,https://open.feishu.cn/document/attendance-v1/user_daily_shift/batch_create_temp
7044467124773552129,查询排班表,attendance,attendance,v1,user_daily_shift,query,支持查询多个用户的排班情况,注意此接口返回的是用户维度的排班结果,与页面功能并不对应。可以通过返回结果中的group_id查询考勤组[按 ID 查询考勤组](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/group/get) ,shift_id查询班次[按 ID 查询班次](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/get) 。查询的时间跨度不能超过 30 天。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_daily_shift/query,POST:/open-apis/attendance/v1/user_daily_shifts/query,2,"[""custom""]",[],1740742982,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_daily_shift/query
7044467124773437441,导入打卡流水,attendance,attendance,v1,user_flow,batch_create,导入员工的打卡流水记录。导入后,会根据员工所在的考勤组班次规则,计算最终的打卡状态与结果。可在打卡管理-[打卡记录](https://example.feishu.cn/people/workforce-management/manage/statistics/flow)中查询,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_flow/batch_create,POST:/open-apis/attendance/v1/user_flows/batch_create,5,"[""isv"", ""custom""]",[],1740743004,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task/batch_create
7473096091899805715,删除打卡流水,attendance,attendance,v1,user_flow,batch_del,删除员工从开放平台导入的打卡记录。删除后会重新计算打卡记录对应考勤任务结果。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_flow/batch_del,POST:/open-apis/attendance/v1/user_flows/batch_del,2,"[""isv"", ""custom""]",[],1740018250,true,1,https://open.feishu.cn/document/attendance-v1/user_task/batch_del
7044467124773535745,查询打卡流水,attendance,attendance,v1,user_flow,get,通过打卡记录 ID 获取用户的打卡流水记录。返回信息主要包含: * 用户id和创建者id * 记录信息 * 打卡位置信息、时间信息 * 打卡方式信息 * GPS 打卡:location_name(定位地址信息) * Wi-Fi 打卡:ssid(wifi名称)、bssid(mac地址) * 考勤机打卡:device_id(考勤机设备id) 对应页面功能打卡管理-[打卡记录](https://example.feishu.cn/people/workforce-management/manage/statistics/flow),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_flow/get,GET:/open-apis/attendance/v1/user_flows/:user_flow_id,4,"[""isv"", ""custom""]",[],1723544609,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task/get
7044467124773617665,批量查询打卡流水,attendance,attendance,v1,user_flow,query,通过用户 ID 获取用户的打卡流水记录。返回信息主要包含: * 用户id和创建者id * 记录信息 * 打卡位置信息、时间信息 * 打卡方式信息 * GPS 打卡:location_name(定位地址信息) * Wi-Fi 打卡:ssid(wifi名称)、bssid(mac地址) * 考勤机打卡:device_id(考勤机设备id) 对应页面功能打卡管理-[打卡记录](https://example.feishu.cn/people/workforce-management/manage/statistics/flow),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_flow/query,POST:/open-apis/attendance/v1/user_flows/query,3,"[""custom""]",[],1726831208,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task/query-2
7044467124773404673,修改用户人脸识别信息,attendance,attendance,v1,user_setting,modify,修改授权内员工的用户设置信息,包括人脸照片文件 ID。修改用户人脸识别信息目前只支持 API 方式修改,管理后台已无法修改。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_setting/modify,POST:/open-apis/attendance/v1/user_settings/modify,5,"[""custom""]",[],1724832276,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_setting/modify
7044467124773584897,批量查询用户人脸识别信息,attendance,attendance,v1,user_setting,query,批量查询授权内员工的用户设置信息,包括人脸照片文件 ID、人脸照片更新时间。对应页面假勤设置-[人脸识别](https://example.feishu.cn/people/workforce-management/setting/group/security)。根据返回的face_key可以下载人脸信息[下载用户人脸识别照片 ](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/file/download),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_setting/query,GET:/open-apis/attendance/v1/user_settings/query,4,"[""custom""]",[],1723544610,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_setting/query
7044467124773568513,查询统计数据,attendance,attendance,v1,user_stats_data,query,查询日度统计或月度统计的统计数据。字段包含基本信息、考勤组信息、出勤统计、异常统计、请假统计、加班统计、打卡时间、考勤结果和自定义字段。具体报表可在考勤统计-[报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)中找到,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_stats_data/query,POST:/open-apis/attendance/v1/user_stats_datas/query,1,"[""isv"", ""custom""]",[],1723544574,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_stats_data/query-3
7044467124773814273,查询统计表头,attendance,attendance,v1,user_stats_field,query,查询考勤统计支持的日度统计或月度统计的统计表头。报表的表头信息可以在考勤统计-[报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)中查询到具体的报表信息,此接口专门用于查询表头数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_stats_field/query,POST:/open-apis/attendance/v1/user_stats_fields/query,3,"[""isv"", ""custom""]",[],1723544574,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_stats_data/query-2
7044467124773830657,查询统计设置,attendance,attendance,v1,user_stats_view,query,查询考勤统计支持的日度统计或月度统计的统计表头。报表的表头信息可以在考勤统计-[报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)中查询到具体的报表信息,此接口专门用于查询表头数据。注意此接口和[查询统计表头](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_stats_field/query)基本相同,区别点在于在兼容历史统计视图模型(历史统计数据模型可以按用户ID设置,后续统计升级为仅支持租户维度),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_stats_view/query,POST:/open-apis/attendance/v1/user_stats_views/query,2,"[""isv"", ""custom""]",[],1723544574,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_stats_data/query
7044467124773650433,更新统计设置,attendance,attendance,v1,user_stats_view,update,更新开发者定制的日度统计或月度统计的统计报表表头设置信息。报表的表头信息可以在考勤统计-[报表](https://example.feishu.cn/people/workforce-management/manage/statistics/report)中查询到具体的报表信息,此接口专门用于更新表头信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_stats_view/update,PUT:/open-apis/attendance/v1/user_stats_views/:user_stats_view_id,4,"[""isv"", ""custom""]",[],1723544573,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_stats_data/update
7044467124773421057,查询打卡结果,attendance,attendance,v1,user_task,query,获取企业内员工的实际打卡结果,包括: * 打卡任务列表 * 打卡记录id * 用户信息 * 考勤组id * 班次id * 考勤记录 * 上班记录 * 下班记录 * 上班打卡结果 * 下班打卡结果 * 上班打卡结果补充 * 下班打卡结果补充 * 上班打卡时间 * 下班打卡时间 * 无效用户id列表 * 没有权限用户ID列表,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_task/query,POST:/open-apis/attendance/v1/user_tasks/query,1,"[""custom""]",[],1729735417,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task/query
7044467124773715969,通知补卡审批发起,attendance,attendance,v1,user_task_remedy,create,对于只使用飞书考勤系统而未使用飞书审批系统的企业,可以通过该接口,将在三方审批系统中发起的补卡审批数据,写入到飞书考勤系统中,状态为审批中。写入后可以由[通知审批状态更新](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/approval_info/process) 进行状态更新,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_task_remedy/create,POST:/open-apis/attendance/v1/user_task_remedys,3,"[""isv"", ""custom""]",[],1724896959,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task_remedy/create
7044467124773666817,获取补卡记录,attendance,attendance,v1,user_task_remedy,query,补卡:用户通过审批的方式,在某一次上/下班的打卡时间范围内,补充一条打卡记录,用以修正用户的考勤结果。本接口专用于获取员工的补卡记录(无页面功能对应),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_task_remedy/query,POST:/open-apis/attendance/v1/user_task_remedys/query,1,"[""custom""]",[],1763361889,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task_remedy/query
7044467124773453825,获取可补卡时间,attendance,attendance,v1,user_task_remedy,query_user_allowed_remedys,获取用户某天可以补的第几次上 / 下班卡的时间。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/user_task_remedy/query_user_allowed_remedys,POST:/open-apis/attendance/v1/user_task_remedys/query_user_allowed_remedys,2,"[""custom""]",[],1723544608,true,1,https://open.feishu.cn/document/server-docs/attendance-v1/user_task_remedy/query_user_allowed_remedys
6995779366223708164,商店应用获取 app_access_token,auth,auth,v3,auth,app_access_token,商店应用通过此接口获取`app_access_token`。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=auth&version=v3&resource=app_access_token&method=create),none,true,/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/auth-v3/auth/app_access_token,POST:/open-apis/auth/v3/app_access_token,3,"[""isv""]",[],1722569325,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/app_access_token
6995779366223822852,自建应用获取 app_access_token,auth,auth,v3,auth,app_access_token_internal,自建应用通过此接口获取`app_access_token`。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=auth&version=v3&resource=app_access_token&method=internal),none,true,/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/auth-v3/auth/app_access_token_internal,POST:/open-apis/auth/v3/app_access_token/internal,9,"[""custom""]",[],1719396900,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/app_access_token_internal
6995779366223757316,重新获取 app_ticket,auth,auth,v3,auth,app_ticket_resend,开放平台每隔 1 小时会向应用推送 app_ticket 事件,事件体内包含了 app_ticket。应用也可以主动调用此接口,触发开放平台即时推送 app_ticket 事件。了解事件信息可参见[app_ticket 事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/application-v6/event/app_ticket-events)。,none,true,/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/auth-v3/auth/app_ticket_resend,POST:/open-apis/auth/v3/app_ticket/resend,4,"[""isv""]",[],1715917838,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/app_ticket_resend
6995779366223740932,商店应用获取 tenant_access_token,auth,auth,v3,auth,tenant_access_token,商店应用通过此接口获取`tenant_access_token`。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=auth&version=v3&resource=tenant_access_token&method=create),none,true,/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/auth-v3/auth/tenant_access_token,POST:/open-apis/auth/v3/tenant_access_token,2,"[""isv""]",[],1678432512,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/tenant_access_token
6995779366223724548,自建应用获取 tenant_access_token,auth,auth,v3,auth,tenant_access_token_internal,自建应用通过此接口获取 `tenant_access_token`。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=auth&version=v3&resource=tenant_access_token&method=internal),none,true,/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/auth-v3/auth/tenant_access_token_internal,POST:/open-apis/auth/v3/tenant_access_token/internal,10,"[""custom""]",[],1742984604,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/tenant_access_token_internal
7180265937329553412,获取 user_access_token(v1 版本),auth,authen,v1,access_token,create,":::html <md-alert type=""error""> 本接口已成为历史版本,不推荐使用。请使用最新版本:[获取 user_access_token ](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/authentication-management/access-token/get-user-access-token) </md-alert>。 ::: 根据[登录预授权码](/ssl:ttdoc/ukTMukTMukTM/ukzN4UjL5cDO14SO3gTN) code 获取 `user_access_token`。",none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/authen-v1/access_token/create,POST:/open-apis/authen/v1/access_token,6,"[""isv"", ""custom""]",[],1750920600,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/create-2
7277403063290724380,获取 user_access_token,auth,authen,v1,oidc.access_token,create,":::html <md-alert type=""error""> 本接口已成为历史版本,不推荐使用。请使用最新版本:[获取 user_access_token ](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/authentication-management/access-token/get-user-access-token) </md-alert>。 ::: 根据[登录预授权码](/ssl:ttdoc/common-capabilities/sso/api/obtain-oauth-code) 返回 code 获取 `user_access_token`。",none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/authen-v1/oidc-access_token/create,POST:/open-apis/authen/v1/oidc/access_token,11,"[""isv"", ""custom""]",[],1750920505,false,1,https://open.feishu.cn/document/historic-version/authen/create-3
7277403063290707996,刷新 user_access_token,auth,authen,v1,oidc.refresh_access_token,create,":::html <md-alert type=""error""> 本接口已成为历史版本,不推荐使用。请使用最新版本:[刷新 user_access_token ](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/authentication-management/access-token/refresh-user-access-token) </md-alert>。 ::: user_access_token 的最大有效期是 2小时左右。当 user_access_token 过期时,可以调用本接口获取新的 user_access_token。",none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/authen-v1/oidc-refresh_access_token/create,POST:/open-apis/authen/v1/oidc/refresh_access_token,10,"[""isv"", ""custom""]",[],1750920529,false,1,https://open.feishu.cn/document/historic-version/authen/create-4
7180265937329520644,刷新 user_access_token(v1 版本),auth,authen,v1,refresh_access_token,create,":::html <md-alert type=""error""> 本接口已成为历史版本,不推荐使用。请使用最新版本:[刷新 user_access_token](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/authentication-management/access-token/refresh-user-access-token) </md-alert>。 ::: user_access_token 的最大有效期是 2小时左右。当 user_access_token 过期时,可以调用本接口获取新的 user_access_token。",none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/authen-v1/refresh_access_token/create,POST:/open-apis/authen/v1/refresh_access_token,4,"[""isv"", ""custom""]",[],1750920600,false,1,https://open.feishu.cn/document/server-docs/authentication-management/access-token/create
7180265937329537028,获取用户信息,auth,authen,v1,user_info,get,通过 `user_access_token` 获取相关用户信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/authen-v1/user_info/get,GET:/open-apis/authen/v1/user_info,3,"[""isv"", ""custom""]",[],1753149455,false,1,https://open.feishu.cn/document/server-docs/authentication-management/login-state-management/get
6907569744329932801,获取登录预授权码,auth,oauth,old,default,v1/index,":::html <md-alert type=""error""> 本接口已成为历史版本,不推荐使用。请使用最新版本:[获取授权码](/ssl:ttdoc/common-capabilities/sso/api/obtain-oauth-code) </md-alert>。 :::",none,true,/document/ukTMukTMukTM/ukzN4UjL5cDO14SO3gTN,GET:/open-apis/authen/v1/index,7,"[""isv"", ""custom""]",[],1750920600,false,1,https://open.feishu.cn/document/server-docs/authentication-management/login-state-management/obtain-code
7085379347152076802,获取词典分类,baike,baike,v1,classification,list,获取飞书词典当前分类。<br> 飞书词典目前为二级分类体系,每个词条可添加多个二级分类,但选择的二级分类必须从属于不同的一级分类。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/classification/list,GET:/open-apis/baike/v1/classifications,1649403587736,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/classification/list
7016992864837271580,创建草稿,baike,baike,v1,draft,create,草稿并非词条,而是指通过 API 发起创建新词条或更新现有词条的申请。 词典管理员审核通过后,草稿将变为新的词条或覆盖已有词条。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/draft/create,POST:/open-apis/baike/v1/drafts,2,"[""custom""]",[],1697163788,true,1,https://open.feishu.cn/document/server-docs/baike-v1/draft/create
7016992864837287964,更新草稿,baike,baike,v1,draft,update,根据 draft_id 更新草稿内容,已审批的草稿无法编辑。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/draft/update,PUT:/open-apis/baike/v1/drafts/:draft_id,1,"[""custom""]",[],1697163788,true,1,https://open.feishu.cn/document/server-docs/baike-v1/draft/update
7085379347152044034,创建免审词条,baike,baike,v1,entity,create,通过此接口创建的词条,无需经过词典管理员审核,直接写入词库。因此,调用此接口时,应当慎重操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/create,POST:/open-apis/baike/v1/entities,8,"[""custom""]",[],1713943162,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/create
7158733167621242883,提取潜在的词条,baike,baike,v1,entity,extract,提取文本中可能成为词条的词语,且不会过滤已经成为词条的词语。同时返回推荐的别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/extract,POST:/open-apis/baike/v1/entities/extract,1,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/extract
7016992864837304348,获取词条详情,baike,baike,v1,entity,get,通过词条 id 拉取对应的词条详情信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/get,GET:/open-apis/baike/v1/entities/:entity_id,6,"[""custom""]",[],1697163789,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/get
7016992864837369884,词条高亮,baike,baike,v1,entity,highlight,传入一句话,智能识别句中对应的词条,并返回词条位置和 entity_id,可在外部系统中快速实现词条智能高亮。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/highlight,POST:/open-apis/baike/v1/entities/highlight,2,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/highlight
7016992864837320732,获取词条列表,baike,baike,v1,entity,list,分页拉取词条列表数据,支持拉取租户内的全部词条。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/list,GET:/open-apis/baike/v1/entities,5,"[""custom""]",[],1697163789,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/list
7016992864837337116,精准搜索词条,baike,baike,v1,entity,match,将关键词与词条名、别名精准匹配,并返回对应的 词条 ID。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/match,POST:/open-apis/baike/v1/entities/match,4,"[""custom""]",[],1697163789,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/match
7016992864837353500,模糊搜索词条,baike,baike,v1,entity,search,传入关键词,与词条名、别名、释义等信息进行模糊匹配,返回搜到的词条信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/search,POST:/open-apis/baike/v1/entities/search,3,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/search
7085379347152060418,更新免审词条,baike,baike,v1,entity,update,通过此接口更新已有的词条,无需经过词典管理员审核,直接写入词库。 因此,调用该接口时应当慎重操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/entity/update,PUT:/open-apis/baike/v1/entities/:entity_id,7,"[""custom""]",[],1697163789,true,1,https://open.feishu.cn/document/server-docs/baike-v1/entity/update
7138031713099333636,下载图片,baike,baike,v1,file,download,通过 file_token 下载原图片。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/file/download,GET:/open-apis/baike/v1/files/:file_token/download,1661500536419,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/file/download
7138031713099317252,上传图片,baike,baike,v1,file,upload,词条图片资源上传。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/baike-v1/file/upload,POST:/open-apis/baike/v1/files/upload,1661500621193,"[""custom""]",[],1697163790,true,1,https://open.feishu.cn/document/server-docs/baike-v1/file/upload
7249689905697161244,获取词典分类,baike,lingo,v1,classification,list,获取飞书词典当前分类。<br> 飞书词典目前为二级分类体系,每个词条可添加多个二级分类,但选择的二级分类必须从属于不同的一级分类。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/classification/list,GET:/open-apis/lingo/v1/classifications,1684121298181,"[""custom""]",[],1698222436,true,1,https://open.feishu.cn/document/lingo-v1/classification/list
7249689905697046556,创建草稿,baike,lingo,v1,draft,create,草稿并非词条,而是指通过 API 发起创建新词条或更新现有词条的申请。 词典管理员审核通过后,草稿将变为新的词条或覆盖已有词条。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/draft/create,POST:/open-apis/lingo/v1/drafts,2,"[""custom""]",[],1698222305,true,1,https://open.feishu.cn/document/lingo-v1/draft/create
7249689905697062940,更新草稿,baike,lingo,v1,draft,update,根据 draft_id 更新草稿内容,已审批的草稿无法编辑。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/draft/update,PUT:/open-apis/lingo/v1/drafts/:draft_id,1,"[""custom""]",[],1698222317,true,1,https://open.feishu.cn/document/lingo-v1/draft/update
7249689905697194012,创建免审词条,baike,lingo,v1,entity,create,通过此接口创建的词条,无需经过词典管理员审核,直接写入词库。因此,调用此接口时,应当慎重操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/create,POST:/open-apis/lingo/v1/entities,10,"[""custom""]",[],1730257247,true,1,https://open.feishu.cn/document/lingo-v1/entity/create
7301296774114639876,删除免审词条,baike,lingo,v1,entity,delete,通过 entity_id 删除已有的词条,无需经过词典管理员审核。因此,调用该接口时应当慎重操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/delete,DELETE:/open-apis/lingo/v1/entities/:entity_id,8,"[""custom""]",[],1709868771,true,1,https://open.feishu.cn/document/lingo-v1/entity/delete
7249689905696981020,获取词条详情,baike,lingo,v1,entity,get,通过词条 id 拉取对应的词条详情信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/get,GET:/open-apis/lingo/v1/entities/:entity_id,7,"[""custom""]",[],1698222353,true,1,https://open.feishu.cn/document/lingo-v1/entity/get
7249689905697210396,词条高亮,baike,lingo,v1,entity,highlight,传入一句话,智能识别句中对应的词条,并返回词条位置和 entity_id,可在外部系统中快速实现词条智能高亮。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/highlight,POST:/open-apis/lingo/v1/entities/highlight,3,"[""custom""]",[],1698222400,true,1,https://open.feishu.cn/document/lingo-v1/entity/highlight
7249689905696997404,获取词条列表,baike,lingo,v1,entity,list,分页拉取词条列表数据,支持拉取租户内(或指定词库内)的全部词条。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/list,GET:/open-apis/lingo/v1/entities,6,"[""custom""]",[],1698222365,true,1,https://open.feishu.cn/document/lingo-v1/entity/list
7249689905697079324,精准搜索词条,baike,lingo,v1,entity,match,将关键词与词条名、别名精准匹配,并返回对应的 词条 ID。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/match,POST:/open-apis/lingo/v1/entities/match,5,"[""custom""]",[],1698222377,true,1,https://open.feishu.cn/document/lingo-v1/entity/match
7249689905697095708,模糊搜索词条,baike,lingo,v1,entity,search,传入关键词,与词条名、别名、释义等信息进行模糊匹配,返回搜到的词条信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/search,POST:/open-apis/lingo/v1/entities/search,4,"[""custom""]",[],1698222388,true,1,https://open.feishu.cn/document/lingo-v1/entity/search
7249689905697128476,更新免审词条,baike,lingo,v1,entity,update,通过此接口更新已有的词条,无需经过词典管理员审核,直接写入词库。因此,调用该接口时应当慎重操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/entity/update,PUT:/open-apis/lingo/v1/entities/:entity_id,9,"[""custom""]",[],1713496255,true,1,https://open.feishu.cn/document/lingo-v1/entity/update
7249689905697030172,下载图片,baike,lingo,v1,file,download,通过 file_token 下载原图片。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/file/download,GET:/open-apis/lingo/v1/files/:file_token/download,1,"[""custom""]",[],1698222471,true,1,https://open.feishu.cn/document/lingo-v1/file/download
7249689905697013788,上传图片,baike,lingo,v1,file,upload,词条图片资源上传。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/file/upload,POST:/open-apis/lingo/v1/files/upload,2,"[""custom""]",[],1698222459,true,1,https://open.feishu.cn/document/lingo-v1/file/upload
7249689905697177628,获取词库列表,baike,lingo,v1,repo,list,获取有权限访问的飞书词典词库列表。 如以应用身份获取,需要在“词库设置”页面添加应用;若以用户身份获取,该用户需要拥有对应词库的可见权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/lingo-v1/repo/list,GET:/open-apis/lingo/v1/repos,1687848101662,"[""custom""]",[],1698222447,true,1,https://open.feishu.cn/document/lingo-v1/repo/list
7473089245106307076,新增自定义角色,base,base,v2,app.role,create,新增多维表格高级权限中自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/advanced-permission/base-v2/app-role/create,POST:/open-apis/base/v2/apps/:app_token/roles,4,"[""isv"", ""custom""]",[],1749177223,true,1,https://open.feishu.cn/document/docs/bitable-v1/advanced-permission/app-role/create-2
7473089245106290692,列出自定义角色,base,base,v2,app.role,list,列出多维表格高级权限中用户自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/advanced-permission/base-v2/app-role/list,GET:/open-apis/base/v2/apps/:app_token/roles,2,"[""isv"", ""custom""]",[],1763637685,true,1,https://open.feishu.cn/document/docs/bitable-v1/advanced-permission/app-role/list-2
7473089245106323460,更新自定义角色,base,base,v2,app.role,update,更新多维表格高级权限中自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/advanced-permission/base-v2/app-role/update,PUT:/open-apis/base/v2/apps/:app_token/roles/:role_id,3,"[""isv"", ""custom""]",[],1749177242,true,1,https://open.feishu.cn/document/docs/bitable-v1/advanced-permission/app-role/update-2
7205776220394160156,复制多维表格,base,bitable,v1,app,copy,复制一个多维表格,可以指定复制到某个有权限的文件夹下。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app/copy,POST:/open-apis/bitable/v1/apps/:app_token/copy,3,"[""isv"", ""custom""]",[],1729222800,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app/copy
7047733935745007620,创建多维表格,base,bitable,v1,app,create,在指定文件夹中创建一个多维表格,包含一个空白的数据表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app/create,POST:/open-apis/bitable/v1/apps,4,"[""isv"", ""custom""]",[],1730950327,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app/create
6960166873968574467,获取多维表格元数据,base,bitable,v1,app,get,获取指定多维表格的元数据信息,包括多维表格名称、多维表格版本号、多维表格是否开启高级权限等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app/get,GET:/open-apis/bitable/v1/apps/:app_token,2,"[""isv"", ""custom""]",[],1736393539,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app/get
7073673019918811164,更新多维表格元数据,base,bitable,v1,app,update,更新多维表格元数据,包括多维表格的名称、是否开启高级权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app/update,PUT:/open-apis/bitable/v1/apps/:app_token,1,"[""isv"", ""custom""]",[],1729158567,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app/update
7177650713441812483,复制仪表盘,base,bitable,v1,app.dashboard,copy,基于现有仪表盘复制出新的仪表盘。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/copy,POST:/open-apis/bitable/v1/apps/:app_token/dashboards/:block_id/copy,1671107353880,"[""isv"", ""custom""]",[],1731477279,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-dashboard/copy
7127206859065638914,列出仪表盘,base,bitable,v1,app.dashboard,list,获取多维表格中的所有仪表盘。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/list,GET:/open-apis/bitable/v1/apps/:app_token/dashboards,1659356088017,"[""isv"", ""custom""]",[],1731477279,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-dashboard/list
7101134500528734211,新增自定义角色,base,bitable,v1,app.role,create,新增多维表格高级权限中自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/create,POST:/open-apis/bitable/v1/apps/:app_token/roles,1744614280364,"[""isv"", ""custom""]",[],1744613862,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role/create
7101134500528635907,删除自定义角色,base,bitable,v1,app.role,delete,删除多维表格高级权限中自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/roles/:role_id,1,"[""isv"", ""custom""]",[],1737345090,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role/delete
7101134500528701443,列出自定义角色,base,bitable,v1,app.role,list,列出多维表格高级权限中用户自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/list,GET:/open-apis/bitable/v1/apps/:app_token/roles,1744614271992,"[""isv"", ""custom""]",[],1744613863,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role/list
7101134500528652291,更新自定义角色,base,bitable,v1,app.role,update,更新多维表格高级权限中自定义的角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/update,PUT:/open-apis/bitable/v1/apps/:app_token/roles/:role_id,1744614227552,"[""isv"", ""custom""]",[],1744613863,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role/update
7111246853309087747,批量新增协作者,base,bitable,v1,app.role.member,batch_create,批量新增多维表格高级权限中自定义角色的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role-member/batch_create,POST:/open-apis/bitable/v1/apps/:app_token/roles/:role_id/members/batch_create,4,"[""isv"", ""custom""]",[],1737447783,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role-member/batch_create
7111246853309071363,批量删除协作者,base,bitable,v1,app.role.member,batch_delete,删除多维表格高级权限中自定义角色的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role-member/batch_delete,POST:/open-apis/bitable/v1/apps/:app_token/roles/:role_id/members/batch_delete,1,"[""isv"", ""custom""]",[],1737447784,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role-member/batch_delete
7101134500528619523,新增协作者,base,bitable,v1,app.role.member,create,新增多维表格高级权限中自定义角色的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role-member/create,POST:/open-apis/bitable/v1/apps/:app_token/roles/:role_id/members,5,"[""isv"", ""custom""]",[],1737447783,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role-member/create
7101134500528717827,删除协作者,base,bitable,v1,app.role.member,delete,删除多维表格高级权限中自定义角色的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role-member/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/roles/:role_id/members/:member_id,2,"[""isv"", ""custom""]",[],1737447784,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role-member/delete
7101134500528668675,列出协作者,base,bitable,v1,app.role.member,list,列出多维表格高级权限中自定义角色的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role-member/list,GET:/open-apis/bitable/v1/apps/:app_token/roles/:role_id/members,3,"[""isv"", ""custom""]",[],1737447784,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/advanced-permission/app-role-member/list
6960166873968558083,新增多个数据表,base,bitable,v1,app.table,batch_create,新增多个数据表,仅可指定数据表名称。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/batch_create,POST:/open-apis/bitable/v1/apps/:app_token/tables/batch_create,5,"[""isv"", ""custom""]",[],1750392965,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/batch_create
6960166873968459779,删除多个数据表,base,bitable,v1,app.table,batch_delete,通过 app_token 和 table_id 删除多个数据表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/batch_delete,POST:/open-apis/bitable/v1/apps/:app_token/tables/batch_delete,1,"[""isv"", ""custom""]",[],1753076696,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/batch_delete
6960166873968541699,新增一个数据表,base,bitable,v1,app.table,create,新增一个数据表,支持传入数据表名称、视图名称和字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/create,POST:/open-apis/bitable/v1/apps/:app_token/tables,6,"[""isv"", ""custom""]",[],1752821972,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/create
6960166873968443395,删除一个数据表,base,bitable,v1,app.table,delete,通过 app_token 和 table_id 删除指定的多维表格数据表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/tables/:table_id,2,"[""isv"", ""custom""]",[],1753076696,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/delete
6960166873968476163,列出数据表,base,bitable,v1,app.table,list,列出多维表格中的所有数据表,包括其 ID、版本号和名称。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/list,GET:/open-apis/bitable/v1/apps/:app_token/tables,3,"[""isv"", ""custom""]",[],1753076696,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/list
7182466310810402817,更新数据表,base,bitable,v1,app.table,patch,更新数据表的名称。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table/patch,PATCH:/open-apis/bitable/v1/apps/:app_token/tables/:table_id,4,"[""isv"", ""custom""]",[],1736314144,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/patch
6960166873968427011,新增字段,base,bitable,v1,app.table.field,create,在多维表格数据表中新增一个字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-field/create,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/fields,4,"[""isv"", ""custom""]",[],1736393538,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-field/create
6960166873968525315,删除字段,base,bitable,v1,app.table.field,delete,删除多维表格数据表中的一个字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-field/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/fields/:field_id,1,"[""isv"", ""custom""]",[],1736314231,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-field/delete
6960166873968492547,列出字段,base,bitable,v1,app.table.field,list,获取多维表格数据表中的的所有字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-field/list,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/fields,2,"[""isv"", ""custom""]",[],1753076742,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-field/list
6960166873968508931,更新字段,base,bitable,v1,app.table.field,update,在多维表格数据表中更新一个字段。更新字段时为全量更新,property 等字段会被完全覆盖。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-field/update,PUT:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/fields/:field_id,3,"[""isv"", ""custom""]",[],1736393538,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-field/update
7119425455108685852,获取表单元数据,base,bitable,v1,app.table.form,get,获取表单的所有元数据,包括表单名称、描述、是否共享等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-form/get,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/forms/:form_id,1657533336017,"[""isv"", ""custom""]",[],1731477279,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/form/get
7119425455108669468,更新表单元数据,base,bitable,v1,app.table.form,patch,更新表单视图中的元数据,包括表单名称、描述、是否共享等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-form/patch,PATCH:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/forms/:form_id,1657533666385,"[""isv"", ""custom""]",[],1731477279,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/form/patch-2
7112628058154909698,列出表单问题,base,bitable,v1,app.table.form.field,list,列出表单中的所有问题项。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-form-field/list,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/forms/:form_id/fields,1655812282732,"[""isv"", ""custom""]",[],1731477280,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/form/list
7112628058154893314,更新表单问题,base,bitable,v1,app.table.form.field,patch,更新表单中的问题项。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-form-field/patch,PATCH:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/forms/:form_id/fields/:field_id,1655869655736,"[""isv"", ""custom""]",[],1731477279,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/form/patch
6952707657162604546,新增多条记录,base,bitable,v1,app.table.record,batch_create,"在多维表格数据表中新增多条记录,单次调用最多新增 1,000 条记录。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/batch_create,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/batch_create,4,"[""isv"", ""custom""]",[],1753076719,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/batch_create
6952707657162620930,删除多条记录,base,bitable,v1,app.table.record,batch_delete,删除多维表格数据表中现有的多条记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/batch_delete,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/batch_delete,1,"[""isv"", ""custom""]",[],1753076741,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/batch_delete
7386702252390268956,批量获取记录,base,bitable,v1,app.table.record,batch_get,通过多个记录 ID 查询记录信息。该接口最多支持查询 100 条记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/batch_get,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/batch_get,2,"[""isv"", ""custom""]",[],1753076741,true,1,https://open.feishu.cn/document/docs/bitable-v1/app-table-record/batch_get
6952707657162539010,更新多条记录,base,bitable,v1,app.table.record,batch_update,"更新数据表中的多条记录,单次调用最多更新 1,000 条记录。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/batch_update,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/batch_update,3,"[""isv"", ""custom""]",[],1732792237,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/batch_update
6952707657162522626,新增记录,base,bitable,v1,app.table.record,create,在多维表格数据表中新增一条记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/create,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records,8,"[""isv"", ""custom""]",[],1753076718,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/create
6952707657162555394,删除记录,base,bitable,v1,app.table.record,delete,删除多维表格数据表中的一条记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/:record_id,5,"[""isv"", ""custom""]",[],1753076719,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/delete
6952707657162588162,检索记录,base,bitable,v1,app.table.record,get,该接口用于根据 record_id 的值检索现有记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/get,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/:record_id,2,"[""isv"", ""custom""]",[],1726655467,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/get
6952707657162571778,列出记录,base,bitable,v1,app.table.record,list,该接口用于列出数据表中的现有记录,单次最多列出 500 行记录,支持分页获取。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/list,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records,1,"[""isv"", ""custom""]",[],1726655467,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/list
7312729248342360068,查询记录,base,bitable,v1,app.table.record,search,该接口用于查询数据表中的现有记录,单次最多查询 500 行记录,支持分页获取。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/search,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/search,6,"[""isv"", ""custom""]",[],1746675494,true,1,https://open.feishu.cn/document/docs/bitable-v1/app-table-record/search
6952707657162637314,更新记录,base,bitable,v1,app.table.record,update,更新多维表格数据表中的一条记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/update,PUT:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/records/:record_id,7,"[""isv"", ""custom""]",[],1753076718,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/update
6978670625209614338,新增视图,base,bitable,v1,app.table.view,create,在多维表格数据表中新增一个视图,可指定视图类型,包括表格视图、看板视图、画册视图、甘特视图和表单视图。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-view/create,POST:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/views,5,"[""isv"", ""custom""]",[],1746601170,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-view/create
6978670625209630722,删除视图,base,bitable,v1,app.table.view,delete,通过 app_token、table_id 和 view_id,删除多维表格数据表中的指定视图。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-view/delete,DELETE:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/views/:view_id,1,"[""isv"", ""custom""]",[],1753076696,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-view/delete
7177650713441845251,获取视图,base,bitable,v1,app.table.view,get,根据视图 ID 获取现有视图信息,包括视图名称、类型、属性等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-view/get,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/views/:view_id,2,"[""isv"", ""custom""]",[],1731477280,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-view/get
6978670625209597954,列出视图,base,bitable,v1,app.table.view,list,获取多维表格数据表中的所有视图。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-view/list,GET:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/views,3,"[""isv"", ""custom""]",[],1731477280,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-view/list
7177650713441828867,更新视图,base,bitable,v1,app.table.view,patch,增量更新视图信息,包括视图名称、属性等,可设置视图的筛选条件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-view/patch,PATCH:/open-apis/bitable/v1/apps/:app_token/tables/:table_id/views/:view_id,4,"[""isv"", ""custom""]",[],1750925684,true,1,https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-view/patch
7447033368182571009,列出自动化流程,base,bitable,v1,app.workflow,list,该接口用于列出多维表格的自动化流程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-workflow/list,GET:/open-apis/bitable/v1/apps/:app_token/workflows,2,"[""isv"", ""custom""]",[],1733899671,true,1,https://open.feishu.cn/document/docs/bitable-v1/app-workflow/list
7447033368182587393,更新自动化流程状态,base,bitable,v1,app.workflow,update,开启或关闭自动化流程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-workflow/update,PUT:/open-apis/bitable/v1/apps/:app_token/workflows/:workflow_id,1,"[""isv"", ""custom""]",[],1733899682,true,1,https://open.feishu.cn/document/docs/bitable-v1/app-workflow/update
7398376458043310083,获取画板缩略图片,board,board,v1,whiteboard,download_as_image,获取画板的缩略图片,响应数据为图片的二进制图片流。根据 Content-Type 值区图片格式:image/png、image/jpeg、image/gif、image/svg+xml。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard/download_as_image,GET:/open-apis/board/v1/whiteboards/:whiteboard_id/download_as_image,2,"[""isv"", ""custom""]",[],1768373788,true,1,https://open.feishu.cn/document/docs/board-v1/whiteboard/download_as_image
7545367804831612930,获取画板主题,board,board,v1,whiteboard,theme,获取画板主题,不同主题下有不同的默认配色,具体主题介绍可以参考[主题简介](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/theme-introduction) 。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard/theme,GET:/open-apis/board/v1/whiteboards/:whiteboard_id/theme,4,"[""isv"", ""custom""]",[],1761720982,true,1,
7566200424774680595,更新画板主题,board,board,v1,whiteboard,update_theme,更新画板主题,具体主题介绍可以参考[主题简介](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/theme-introduction) 。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard/update_theme,POST:/open-apis/board/v1/whiteboards/:whiteboard_id/update_theme,3,"[""isv"", ""custom""]",[],1761721002,true,1,
7545367804831629314,创建节点,board,board,v1,whiteboard.node,create,创建画板节点,支持批量创建、创建含父子关系的节点等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard-node/create,POST:/open-apis/board/v1/whiteboards/:whiteboard_id/nodes,1756454032313,"[""isv"", ""custom""]",[],1764241329,true,1,
7567790459344879618,解析画板语法,board,board,v1,whiteboard.node,create_plantuml,用户可以将PlantUml/Mermaid图表导入画板进行协同编辑,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard-node/create_plantuml,POST:/open-apis/board/v1/whiteboards/:whiteboard_id/nodes/plantuml,1761721459935,"[""isv"", ""custom""]",[],1762224223,true,1,
7338460461824360449,获取所有节点,board,board,v1,whiteboard.node,list,获取画板内所有的节点,节点以数组方式返回,可通过 parent_id(父节点)、children(子节点) 关系组装成画板内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/board-v1/whiteboard-node/list,GET:/open-apis/board/v1/whiteboards/:whiteboard_id/nodes,1708435132932,"[""isv"", ""custom""]",[],1762224186,true,1,https://open.feishu.cn/document/docs/board-v1/whiteboard-node/list
6952888507003076635,创建共享日历,calendar,calendar,v4,calendar,create,调用该接口为当前身份(应用或用户)创建一个共享日历。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/create,POST:/open-apis/calendar/v4/calendars,18,"[""isv"", ""custom""]",[],1722579652,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/create
6952888507002994715,删除共享日历,calendar,calendar,v4,calendar,delete,调用该接口以当前身份(应用或用户)删除某一指定的共享日历。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/delete,DELETE:/open-apis/calendar/v4/calendars/:calendar_id,17,"[""isv"", ""custom""]",[],1721110838,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/delete
6952888507002978331,查询日历信息,calendar,calendar,v4,calendar,get,调用该接口以当前身份(应用或用户)查询指定日历的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/get,GET:/open-apis/calendar/v4/calendars/:calendar_id,14,"[""isv"", ""custom""]",[],1721110839,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/get
6952888507002880027,查询日历列表,calendar,calendar,v4,calendar,list,调用该接口分页查询当前身份(应用或用户)的日历列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/list,GET:/open-apis/calendar/v4/calendars,8,"[""isv"", ""custom""]",[],1737533019,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/list-2
7327132452408410116,批量查询日历信息,calendar,calendar,v4,calendar,mget,调用该接口批量查询指定日历的标题、描述、公开范围等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/mget,POST:/open-apis/calendar/v4/calendars/mget,13,"[""isv"", ""custom""]",[],1756967698,true,1,https://open.feishu.cn/document/calendar-v4/calendar/mget-3
6952888507003158555,更新日历信息,calendar,calendar,v4,calendar,patch,调用该接口以当前身份(应用或用户)修改指定日历的标题、描述、公开范围等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/patch,PATCH:/open-apis/calendar/v4/calendars/:calendar_id,7,"[""isv"", ""custom""]",[],1723609306,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/patch
7051880392425439236,查询主日历信息,calendar,calendar,v4,calendar,primary,调用该接口获取当前身份(应用或用户)的主日历信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/primary,POST:/open-apis/calendar/v4/calendars/primary,16,"[""isv"", ""custom""]",[],1721110838,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/primary
7327132452408393732,批量获取主日历信息,calendar,calendar,v4,calendar,primarys,根据user id列表批量查询指定用户的主日历信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/primarys,POST:/open-apis/calendar/v4/calendars/primarys,15,"[""isv"", ""custom""]",[],1756804300,true,1,https://open.feishu.cn/document/calendar-v4/calendar/primarys
6952888507002863643,搜索日历,calendar,calendar,v4,calendar,search,调用该接口通过关键字搜索日历,搜索结果为标题或描述包含关键字的公共日历或用户主日历。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/search,POST:/open-apis/calendar/v4/calendars/search,6,"[""isv"", ""custom""]",[],1723013431,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/search
6952888507002748955,订阅日历,calendar,calendar,v4,calendar,subscribe,调用该接口以当前身份(应用或用户)订阅指定的日历。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/subscribe,POST:/open-apis/calendar/v4/calendars/:calendar_id/subscribe,5,"[""isv"", ""custom""]",[],1768811926,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/subscribe
6952888507003060251,订阅日历变更事件,calendar,calendar,v4,calendar,subscription,调用该接口为当前用户身份订阅[日历变更事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/events/changed)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/subscription,POST:/open-apis/calendar/v4/calendars/subscription,3,"[""isv"", ""custom""]",[],1721110840,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/subscription
6952888507003093019,取消订阅日历,calendar,calendar,v4,calendar,unsubscribe,调用该接口以当前身份(应用或用户)取消指定日历的订阅状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/unsubscribe,POST:/open-apis/calendar/v4/calendars/:calendar_id/unsubscribe,4,"[""isv"", ""custom""]",[],1723609306,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/unsubscribe
7129706575502098436,取消订阅日历变更事件,calendar,calendar,v4,calendar,unsubscription,调用该接口为当前用户身份取消订阅[日历变更事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/events/changed)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/unsubscription,POST:/open-apis/calendar/v4/calendars/unsubscription,2,"[""isv"", ""custom""]",[],1721110840,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/unsubscription
6952888507002814491,创建访问控制,calendar,calendar,v4,calendar.acl,create,调用该接口以当前身份(应用或用户)为指定日历添加访问控制,即日历成员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-acl/create,POST:/open-apis/calendar/v4/calendars/:calendar_id/acls,6,"[""isv"", ""custom""]",[],1721110937,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-acl/create
6952888507002945563,删除访问控制,calendar,calendar,v4,calendar.acl,delete,调用该接口以当前身份(应用或用户)删除指定日历内的某一访问控制,即成员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-acl/delete,DELETE:/open-apis/calendar/v4/calendars/:calendar_id/acls/:acl_id,5,"[""isv"", ""custom""]",[],1721110937,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-acl/delete
6953067803433009153,获取访问控制列表,calendar,calendar,v4,calendar.acl,list,调用该接口以当前身份(应用或用户)获取指定日历的访问控制列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-acl/list,GET:/open-apis/calendar/v4/calendars/:calendar_id/acls,4,"[""isv"", ""custom""]",[],1721110937,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-acl/list
6952888507003027483,订阅日历访问控制变更事件,calendar,calendar,v4,calendar.acl,subscription,调用该接口以用户身份订阅指定日历下的访问控制变更事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-acl/subscription,POST:/open-apis/calendar/v4/calendars/:calendar_id/acls/subscription,3,"[""isv"", ""custom""]",[],1721110937,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-acl/subscription
7129706575502114820,取消订阅日历访问控制变更事件,calendar,calendar,v4,calendar.acl,unsubscription,调用该接口以用户身份取消订阅指定日历下的访问控制变更事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-acl/unsubscription,POST:/open-apis/calendar/v4/calendars/:calendar_id/acls/unsubscription,2,"[""isv"", ""custom""]",[],1721110938,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-acl/unsubscription
6990540948577599491,创建日程,calendar,calendar,v4,calendar.event,create,调用该接口以当前身份(应用或用户)在指定日历上创建一个日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/create,POST:/open-apis/calendar/v4/calendars/:calendar_id/events,12,"[""isv"", ""custom""]",[],1744093138,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/create
6952888507002961947,删除日程,calendar,calendar,v4,calendar.event,delete,调用该接口以当前身份(应用或用户)删除指定日历上的一个日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/delete,DELETE:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id,11,"[""isv"", ""custom""]",[],1722928593,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/delete
6952888507002699803,获取日程,calendar,calendar,v4,calendar.event,get,调用该接口以当前身份(应用或用户)获取指定日历内的某一日程信息,包括日程的标题、时间段、视频会议信息、公开范围以及参与人权限等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/get,GET:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id,9,"[""isv"", ""custom""]",[],1741160893,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/get
7322810271218647043,查询日程视图,calendar,calendar,v4,calendar.event,instance_view,调用该接口以用户身份查询指定日历下的日程视图。与[获取日程列表](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/list)不同的是,当前接口会按照重复日程的重复性规则展开成多个日程实例(instance),并根据查询的时间区间返回相应的日程实例信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/instance_view,GET:/open-apis/calendar/v4/calendars/:calendar_id/events/instance_view,2,"[""isv"", ""custom""]",[],1721111237,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event/instance_view
7317471576948850689,获取重复日程实例,calendar,calendar,v4,calendar.event,instances,调用该接口以当前身份(应用或用户)获取指定日历中的某一重复日程信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/instances,GET:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/instances,3,"[""isv"", ""custom""]",[],1721111225,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event/instances
6952888507002798107,获取日程列表,calendar,calendar,v4,calendar.event,list,调用该接口以当前身份(应用或用户)获取指定日历下的日程列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/list,GET:/open-apis/calendar/v4/calendars/:calendar_id/events,8,"[""isv"", ""custom""]",[],1745206891,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/list
6952888507003043867,更新日程,calendar,calendar,v4,calendar.event,patch,以当前身份(应用或用户)更新指定日历上的一个日程,包括日程标题、描述、开始与结束时间、视频会议以及日程地点等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/patch,PATCH:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id,10,"[""isv"", ""custom""]",[],1759029466,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/patch
7317471576948834305,回复日程,calendar,calendar,v4,calendar.event,reply,调用该接口以当前身份(应用或用户)回复日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/reply,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/reply,4,"[""isv"", ""custom""]",[],1721111212,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event/reply
6952888507003109403,搜索日程,calendar,calendar,v4,calendar.event,search,调用该接口搜索指定日历下的相关日程,支持关键词搜索、过滤条件搜索。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/search,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/search,7,"[""isv"", ""custom""]",[],1726135031,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/search
6952888507002716187,订阅日程变更事件,calendar,calendar,v4,calendar.event,subscription,调用该接口以用户身份订阅指定日历下的日程变更事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/subscription,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/subscription,6,"[""isv"", ""custom""]",[],1721111200,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/subscription
7129706575502131204,取消订阅日程变更事件,calendar,calendar,v4,calendar.event,unsubscription,调用该接口以用户身份取消订阅指定日历下的日程变更事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/unsubscription,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/unsubscription,5,"[""isv"", ""custom""]",[],1721111200,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event/unsubscription
6952888507002830875,删除日程参与人,calendar,calendar,v4,calendar.event.attendee,batch_delete,调用该接口以当前身份(应用或用户)删除指定日程的一个或多个参与人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-attendee/batch_delete,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/attendees/batch_delete,4,"[""isv"", ""custom""]",[],1721111428,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event-attendee/batch_delete
6952888507003125787,添加日程参与人,calendar,calendar,v4,calendar.event.attendee,create,调用该接口以当前身份(应用或用户)为指定日程添加一个或多个参与人,参与人类型包括用户、群组、会议室以及邮箱。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-attendee/create,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/attendees,5,"[""isv"", ""custom""]",[],1747990935,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event-attendee/create
6952888507002896411,获取日程参与人列表,calendar,calendar,v4,calendar.event.attendee,list,调用该接口以当前身份(应用或用户)获取日程的参与人列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-attendee/list,GET:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/attendees,2,"[""isv"", ""custom""]",[],1736756490,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event-attendee/list-2
6952888507002847259,获取日程参与群成员列表,calendar,calendar,v4,calendar.event.attendee.chat_member,list,调用该接口以当前身份(应用或用户)获取日程的群组类型参与人的群成员列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-attendee-chat_member/list,GET:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/attendees/:attendee_id/chat_members,1,"[""isv"", ""custom""]",[],1721111429,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar-event-attendee/list
7263360328350744580,创建会议群,calendar,calendar,v4,calendar.event.meeting_chat,create,调用该接口以当前身份(应用或用户)为指定日程创建一个会议群。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-meeting_chat/create,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/meeting_chat,2,"[""isv"", ""custom""]",[],1721111406,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event-meeting_chat/create
7263360328350728196,解绑会议群,calendar,calendar,v4,calendar.event.meeting_chat,delete,调用该接口以当前身份(应用或用户)为日程解绑已创建的会议群。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-meeting_chat/delete,DELETE:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/meeting_chat,1,"[""isv"", ""custom""]",[],1721111428,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event-meeting_chat/delete
7263360328350760964,创建会议纪要,calendar,calendar,v4,calendar.event.meeting_minute,create,调用该接口为指定的日程创建会议纪要。纪要以文档形式展示,成功创建后会返回纪要文档 URL。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event-meeting_minute/create,POST:/open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/meeting_minute,1690539162152,"[""isv"", ""custom""]",[],1721873517,true,1,https://open.feishu.cn/document/calendar-v4/calendar-event-meeting_minute/create
6963176044560728066,将 Exchange 账户绑定到飞书账户,calendar,calendar,v4,exchange_binding,create,调用该接口将 Exchange 账户绑定到飞书账户,进而支持 Exchange 日历的导入。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/exchange_binding/create,POST:/open-apis/calendar/v4/exchange_bindings,3,"[""isv"", ""custom""]",[],1720582462,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/exchange_binding/create
6963176044560760834,解除 Exchange 账户绑定,calendar,calendar,v4,exchange_binding,delete,调用该接口解除 Exchange 账户和飞书账户的绑定关系,Exchange 账户解除绑定后才能和其他飞书账户继续绑定。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/exchange_binding/delete,DELETE:/open-apis/calendar/v4/exchange_bindings/:exchange_binding_id,2,"[""isv"", ""custom""]",[],1720582463,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/exchange_binding/delete
6963176044560744450,查询 Exchange 账户的绑定状态,calendar,calendar,v4,exchange_binding,get,调用该接口获取 Exchange 账户的绑定状态,包括 Exchange 日历的同步状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/exchange_binding/get,GET:/open-apis/calendar/v4/exchange_bindings/:exchange_binding_id,1,"[""isv"", ""custom""]",[],1720582463,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/exchange_binding/get
7327132452408426500,批量查询主日历日程忙闲信息,calendar,calendar,v4,freebusy,batch,根据user id列表,批量查询指定用户的主日历在指定时间段内的忙碌时间段信息,适用于团队协作中,快速了解成员忙闲状态以安排会议或任务的场景。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/freebusy/batch,POST:/open-apis/calendar/v4/freebusy/batch,11,"[""isv"", ""custom""]",[],1765520407,true,1,https://open.feishu.cn/document/calendar-v4/calendar/batch
6952888507002912795,查询主日历日程忙闲信息,calendar,calendar,v4,freebusy,list,调用该接口查询指定用户的主日历忙闲信息,或者查询指定会议室的忙闲信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/freebusy/list,POST:/open-apis/calendar/v4/freebusy/list,12,"[""isv"", ""custom""]",[],1765520396,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/calendar/list
6952888507002929179,生成 CalDAV 配置,calendar,calendar,v4,setting,generate_caldav_conf,调用该接口为当前用户生成一个 CalDAV 账号密码,用于将飞书日历信息同步到本地设备日历。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/setting/generate_caldav_conf,POST:/open-apis/calendar/v4/settings/generate_caldav_conf,1,"[""isv"", ""custom""]",[],1720582462,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/setting/generate_caldav_conf
6952888507003142171,创建请假日程,calendar,calendar,v4,timeoff_event,create,调用该接口为指定用户创建一个请假日程。请假日程分为普通日程和全天日程。创建请假日程后,在请假时间内,用户个人签名页会展示请假信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/timeoff_event/create,POST:/open-apis/calendar/v4/timeoff_events,2,"[""isv"", ""custom""]",[],1721111429,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/timeoff_event/create
6952888507002765339,删除请假日程,calendar,calendar,v4,timeoff_event,delete,调用该接口删除一个指定的请假日程。请假日程删除后,用户个人签名页的请假信息也会消失。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/timeoff_event/delete,DELETE:/open-apis/calendar/v4/timeoff_events/:timeoff_event_id,1,"[""isv"", ""custom""]",[],1721111429,true,1,https://open.feishu.cn/document/server-docs/calendar-v4/timeoff_event/delete
7397253002364633091,局部更新卡片实体,cardkit,cardkit,v1,card,batch_update,更新卡片实体局部内容,包括配置和组件。支持同时对多个组件进行增删改等不同操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card/batch_update,POST:/open-apis/cardkit/v1/cards/:card_id/batch_update,3,"[""isv"", ""custom""]",[],1751514035,true,1,https://open.feishu.cn/document/cardkit-v1/card/batch_update
7397265677100974083,创建卡片实体,cardkit,cardkit,v1,card,create,基于卡片 JSON 代码或卡片搭建工具搭建的卡片,创建卡片实体。用于后续通过卡片实体 ID(card_id)发送卡片、更新卡片等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card/create,POST:/open-apis/cardkit/v1/cards,5,"[""isv"", ""custom""]",[],1751514010,true,1,https://open.feishu.cn/document/cardkit-v1/card/create
7397265677100957699,转换 ID,cardkit,cardkit,v1,card,id_convert,将[消息 ID](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/intro#44c58e1c)( `message_id` )转换为卡片实体 ID(`card_id`)。用于将由[发送消息](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/create)等接口返回的消息 ID 转换为卡片实体 ID,以进一步对卡片进行全量更新、局部更新、或文本流式更新操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card/id_convert,POST:/open-apis/cardkit/v1/cards/id_convert,2,"[""isv"", ""custom""]",[],1741353057,true,1,https://open.feishu.cn/document/historic-version/id_convert
7397253002364616707,更新卡片实体配置,cardkit,cardkit,v1,card,settings,更新指定卡片实体的配置,支持卡片配置 `config` 字段和卡片跳转链接 `card_link` 字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card/settings,PATCH:/open-apis/cardkit/v1/cards/:card_id/settings,4,"[""isv"", ""custom""]",[],1754399917,true,1,https://open.feishu.cn/document/cardkit-v1/card/settings
7397253002364682243,全量更新卡片实体,cardkit,cardkit,v1,card,update,传入新的卡片 JSON 代码,覆盖更新指定的卡片实体的所有内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card/update,PUT:/open-apis/cardkit/v1/cards/:card_id,2,"[""isv"", ""custom""]",[],1751514047,true,1,https://open.feishu.cn/document/cardkit-v1/card/update
7397253002364649475,流式更新文本,cardkit,cardkit,v1,card.element,content,对卡片中的普通文本元素(tag 为 plain_text 的元素)或富文本组件(tag 为 markdown 的组件)传入全量文本内容,以实现“打字机”式的文字输出效果。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card-element/content,PUT:/open-apis/cardkit/v1/cards/:card_id/elements/:element_id/content,2,"[""isv"", ""custom""]",[],1755832653,true,1,https://open.feishu.cn/document/cardkit-v1/card-element/content
7397253002364551171,新增组件,cardkit,cardkit,v1,card.element,create,为指定卡片实体新增组件,以扩展卡片内容,如在卡片中添加一个点击按钮。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card-element/create,POST:/open-apis/cardkit/v1/cards/:card_id/elements,5,"[""isv"", ""custom""]",[],1767581828,true,1,https://open.feishu.cn/document/cardkit-v1/card-element/create
7397253002364600323,删除组件,cardkit,cardkit,v1,card.element,delete,删除指定卡片实体中的组件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card-element/delete,DELETE:/open-apis/cardkit/v1/cards/:card_id/elements/:element_id,1,"[""isv"", ""custom""]",[],1755832662,true,1,https://open.feishu.cn/document/cardkit-v1/card-element/delete
7397253002364567555,更新组件属性,cardkit,cardkit,v1,card.element,patch,通过传入 `card_id`(卡片实体 ID)和 `element_id`(组件 ID),更新卡片实体中对应组件的属性。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card-element/patch,PATCH:/open-apis/cardkit/v1/cards/:card_id/elements/:element_id,3,"[""isv"", ""custom""]",[],1755832643,true,1,https://open.feishu.cn/document/cardkit-v1/card-element/patch
7397265677100990467,更新组件,cardkit,cardkit,v1,card.element,update,更新卡片实体中的指定组件为新组件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/cardkit-v1/card-element/update,PUT:/open-apis/cardkit/v1/cards/:card_id/elements/:element_id,4,"[""isv"", ""custom""]",[],1754918759,true,1,https://open.feishu.cn/document/cardkit-v1/card-element/update
6908984614439813122,编辑旧版文档内容,ccm,ccm_doc,old,default,:docToken/batch_update,:::warning 此接口只支持编辑旧版文档内容。要编辑新版文档(文档类型:`docx`)的内容,调用以下接口:,none,true,/document/ukTMukTMukTM/uYDM2YjL2AjN24iNwYjN,POST:/open-apis/doc/v2/:docToken/batch_update,1,"[""isv"", ""custom""]",[],1702889189,false,1,https://open.feishu.cn/document/server-docs/docs/docs/docs/content/batch-update-document
6908984614439845890,获取旧版文档富文本内容,ccm,ccm_doc,old,default,:docToken/content,:::warning 此接口只支持获取旧版文档富文本内容。要获取新版文档(文档类型:`docx`)的富文本内容,调用以下接口:,none,true,/document/ukTMukTMukTM/uUDM2YjL1AjN24SNwYjN,GET:/open-apis/doc/v2/:docToken/content,2,"[""isv"", ""custom""]",[],1753863911,false,1,https://open.feishu.cn/document/server-docs/docs/docs/docs/content/get-document
6907569742384857090,获取旧版文档纯文本内容,ccm,ccm_doc,old,default,:docToken/raw_content,:::warning 此接口只支持查询旧版文档纯文本内容。要查询新版文档(文档类型:`docx`)的纯文本内容,使用[获取文档纯文本内容](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document/raw_content)接口。 ::: 该接口用于获取文档的纯文本内容,不包含富文本格式信息。,none,true,/document/ukTMukTMukTM/ukzNzUjL5czM14SO3MTN,GET:/open-apis/doc/v2/:docToken/raw_content,3,"[""isv"", ""custom""]",[],1753863891,false,1,https://open.feishu.cn/document/server-docs/docs/docs/docs/content/obtain-document-content
6907569744330833921,获取旧版文档中的电子表格元数据,ccm,ccm_doc,old,default,:docToken/sheet_meta,:::warning 此接口只支持获取旧版文档数据。要获取新版文档(`docx` 类型)中的元数据,使用[获取文档元数据](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/meta/batch_query)接口。 :::,none,true,/document/ukTMukTMukTM/uADOzUjLwgzM14CM4MTN,GET:/open-apis/doc/v2/:docToken/sheet_meta,1,"[""isv"", ""custom""]",[],1702889152,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/document/obtain-sheet-meta-info-in-doc
6908984614439829506,创建旧版文档,ccm,ccm_doc,old,default,create,":::html <md-alert type=""error""> 此接口已废弃,不允许应用再调用该接口,若继续调用将返回 95054 的错误码。",none,true,/document/ukTMukTMukTM/ugDM2YjL4AjN24COwYjN,POST:/open-apis/doc/v2/create,3,"[""isv"", ""custom""]",[],1735541937,false,1,https://open.feishu.cn/document/server-docs/docs/docs/docs/apiRef/create-document
6907569524100448257,获取旧版文档元信息,ccm,ccm_doc,old,default,meta/:docToken,:::warning 此接口只支持查询旧版文档元信息。要查询新版文档(`docx` 类型)元信息,使用[获取文档元数据](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/meta/batch_query)接口。 ::: 该接口用于根据 docToken 获取元数据。,none,true,/document/ukTMukTMukTM/uczN3UjL3czN14yN3cTN,GET:/open-apis/doc/v2/meta/:docToken,2,"[""isv"", ""custom""]",[],1724998612,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/document/obtain-document-meta
6907569743420637186,获取元数据,ccm,ccm_docs,old,default,docs-api/meta,该接口用于根据 token 获取各类文件的元数据。,none,true,/document/ukTMukTMukTM/uMjN3UjLzYzN14yM2cTN,POST:/open-apis/suite/docs-api/meta,1654504710378,"[""isv"", ""custom""]",[],1658126122,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/file/obtain-metadata
6907569523177439233,搜索云文档,ccm,ccm_docs,old,default,docs-api/search/object,该接口用于根据搜索关键词(search_key)对当前用户可见的云文档进行搜索。,none,true,/document/ukTMukTMukTM/ugDM4UjL4ADO14COwgTN,POST:/open-apis/suite/docs-api/search/object,5,"[""isv"", ""custom""]",[],1749454584,false,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/search/document-search
6907569743419932674,新建文件,ccm,ccm_drive_explorer,old,default,v2/file/:folderToken,"该接口用于在云空间指定文件夹中创建电子表格或者多维表格。 :::html <md-alert type=""tip""> 该接口为历史版本,已不推荐使用。推荐你使用[创建表格](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet/create)或[创建多维表格](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app/create)接口,能力和权限拆分力度更细。",none,true,/document/ukTMukTMukTM/uQTNzUjL0UzM14CN1MTN,POST:/open-apis/drive/explorer/v2/file/:folderToken,1729582184787,"[""isv"", ""custom""]",[],1733230641,false,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/create-online-document
6907569523177127937,复制文档,ccm,ccm_drive_explorer,old,default,v2/file/copy/files/:fileToken,将文件复制到用户云空间的其他文件夹中。不支持复制文件夹。,none,true,/document/ukTMukTMukTM/uYTNzUjL2UzM14iN1MTN,POST:/open-apis/drive/explorer/v2/file/copy/files/:fileToken,1651042879203,"[""isv"", ""custom""]",[],1698916488,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/file/copy-a-doc-or-sheet
6907569742383661058,删除Doc,ccm,ccm_drive_explorer,old,default,v2/file/docs/:docToken,该接口用于根据 docToken 删除对应的 Docs 文档。,none,true,/document/ukTMukTMukTM/uATM2UjLwEjN14CMxYTN,DELETE:/open-apis/drive/explorer/v2/file/docs/:docToken,1651042654908,"[""isv"", ""custom""]",[],1651916140,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/file/delete-a-doc
6979502797244153859,删除Sheet,ccm,ccm_drive_explorer,old,default,v2/file/spreadsheets/:spreadsheetToken,该接口用于根据 spreadsheetToken 删除对应的 sheet 文档。,none,true,/document/ukTMukTMukTM/uUTNzUjL1UzM14SN1MTN/delete-sheet,DELETE:/open-apis/drive/explorer/v2/file/spreadsheets/:spreadsheetToken,1651049388425,"[""isv"", ""custom""]",[],1658126137,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/file/delete-sheet
6907569745299750914,新建文件夹,ccm,ccm_drive_explorer,old,default,v2/folder/:folderToken,该接口用于根据 folderToken 在该 folder 下创建文件夹。,none,true,/document/ukTMukTMukTM/ukTNzUjL5UzM14SO1MTN,POST:/open-apis/drive/explorer/v2/folder/:folderToken,1651042802152,"[""isv"", ""custom""]",[],1651916127,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/folder/create-a-new-folder
6907569524100890625,获取文件夹下的文档清单,ccm,ccm_drive_explorer,old,default,v2/folder/:folderToken/children,获取用户云空间中指定文件夹下的文件清单。清单类型包括文件、各种在线文档(文档、电子表格、多维表格、思维笔记)、文件夹和快捷方式。该接口不支持分页,并且不会递归的获取子文件夹的清单。,none,true,/document/ukTMukTMukTM/uEjNzUjLxYzM14SM2MTN,GET:/open-apis/drive/explorer/v2/folder/:folderToken/children,1655346654376,"[""isv"", ""custom""]",[],1655362529,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/folder/get-folder-children
6907569524099989505,获取文件夹元数据,ccm,ccm_drive_explorer,old,default,v2/folder/:folderToken/meta,该接口用于根据文件夹 token 获取该文件夹的元数据,包括文件夹的 ID、名称、创建者 ID 等。,none,true,/document/ukTMukTMukTM/uAjNzUjLwYzM14CM2MTN,GET:/open-apis/drive/explorer/v2/folder/:folderToken/meta,4,"[""isv"", ""custom""]",[],1732796943,false,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/folder/get-folder-meta
6979502797244170243,获取我的空间(根文件夹)元数据,ccm,ccm_drive_explorer,old,default,v2/root_folder/meta,获取用户“我的空间”(根文件夹)的元数据,包括根文件夹的 token、ID 和文件夹所有者的 ID。,none,true,/document/ukTMukTMukTM/ugTNzUjL4UzM14CO1MTN/get-root-folder-meta,GET:/open-apis/drive/explorer/v2/root_folder/meta,6,"[""isv"", ""custom""]",[],1751457998,false,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/folder/get-root-folder-meta
6907569524101087233,判断协作者是否有某权限,ccm,ccm_drive_permission,old,default,member/permitted,该接口用于根据 filetoken 判断当前登录用户是否具有某权限。,none,true,/document/ukTMukTMukTM/uYzN3UjL2czN14iN3cTN,POST:/open-apis/drive/permission/member/permitted,1673249039011,"[""isv"", ""custom""]",[],1719921679,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/permission/querying-if-a-collaborator-has-a-specific-permission
6907569744329719809,转移拥有者,ccm,ccm_drive_permission,old,default,member/transfer,该接口用于根据文档信息和用户信息转移文档的所有者。,none,true,/document/ukTMukTMukTM/uQzNzUjL0czM14CN3MTN,POST:/open-apis/drive/permission/member/transfer,1673249010231,"[""isv"", ""custom""]",[],1713178804,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/permission/transfer-ownership
6907569524099940353,获取云文档权限设置V2,ccm,ccm_drive_permission,old,default,v2/public/,该接口用于根据 filetoken 获取云文档的权限设置。,none,true,/document/ukTMukTMukTM/uITM3YjLyEzN24iMxcjN,POST:/open-apis/drive/permission/v2/public/,1651027262293,"[""isv"", ""custom""]",[],1658126152,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/drive/permission/get-document-sharing-settings-v2
6943917246700257282,删除下拉列表设置,ccm,ccm_sheet,old,default,delete#spreadsheets/:spreadsheetToken/dataValidation,删除电子表格工作表指定范围中下拉列表的设置,但仍保留选项文本。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/datavalidation/delete-datavalidation,DELETE:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dataValidation,1,"[""isv"", ""custom""]",[],1755243220,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/datavalidation/delete-datavalidation
6907569524100382721,删除行列,ccm,ccm_sheet,old,default,delete#spreadsheets/:spreadsheetToken/dimension_range,该接口用于删除电子表格中的指定行或列。,none,true,/document/ukTMukTMukTM/ucjMzUjL3IzM14yNyMTN,DELETE:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dimension_range,1,"[""isv"", ""custom""]",[],1723618550,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/sheet-rowcol/-delete-rows-or-columns
6943917246700306434,查询下拉列表设置,ccm,ccm_sheet,old,default,get#spreadsheets/:spreadsheetToken/dataValidation,查询电子表格工作表中指定范围的下拉列表的设置信息。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/datavalidation/query-datavalidation,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dataValidation,2,"[""isv"", ""custom""]",[],1755243197,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/datavalidation/query-datavalidation
6907568031544229890,导入表格,ccm,ccm_sheet,old,default,import,> 为了更好地提升该接口的安全性,我们对其进行了升级,请尽快迁移至[新版本](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/import-user-guide),none,true,/document/ukTMukTMukTM/uATO2YjLwkjN24CM5YjN,POST:/open-apis/sheets/v2/import,2,"[""isv"", ""custom""]",[],1646321582,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/import-spreadsheet
6907568073252683778,查询导入结果,ccm,ccm_sheet,old,default,import/result,该接口用于查询文件导入结果。查询30分钟无结果为导入失败。,none,true,/document/ukTMukTMukTM/uETO2YjLxkjN24SM5YjN,GET:/open-apis/sheets/v2/import/result,1,"[""isv"", ""custom""]",[],1698916476,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/query-import-results
6943917246700290050,设置下拉列表,ccm,ccm_sheet,old,default,post#spreadsheets/:spreadsheetToken/dataValidation,在电子表格工作表中为指定区域添加下拉列表选项,并设置下拉列表的属性,包括是否支持多选、设置下拉选项样式等。若一个数据区域中已有数据,支持将有效数据直接转为下拉列表中的选项。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/datavalidation/set-dropdown,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dataValidation,4,"[""isv"", ""custom""]",[],1754385327,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/datavalidation/set-dropdown
6907569745299439618,操作工作表,ccm,ccm_sheet,old,default,post#spreadsheets/:spreadsheet_token/sheets_batch_update,根据电子表格的 token 对工作表进行操作,包括增加工作表、复制工作表、删除工作表。 ::: note 该接口和 [更新工作表属性](/ssl:ttdoc/ukTMukTMukTM/ugjMzUjL4IzM14COyMTN) 的请求地址相同,但参数不同,调用前请仔细阅读文档。 :::,none,true,/document/ukTMukTMukTM/uYTMzUjL2EzM14iNxMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/sheets_batch_update,4,"[""isv"", ""custom""]",[],1732796955,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet/operate-sheets
6907569743419473922,更新工作表属性,ccm,ccm_sheet,old,default,post#spreadsheets/:spreadsheet_token/sheets_batch_update,更新电子表格中的工作表。支持更新工作表的标题、位置,和隐藏、冻结、保护等属性。 ::: note 该接口和 [操作工作表](/ssl:ttdoc/ukTMukTMukTM/uYTMzUjL2EzM14iNxMTN) 的请求地址相同,但参数不同,调用前请仔细阅读文档。 :::,none,true,/document/ukTMukTMukTM/ugjMzUjL4IzM14COyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/sheets_batch_update,3,"[""isv"", ""custom""]",[],1746601157,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet/update-sheet-properties
6907569742383562754,更新行列,ccm,ccm_sheet,old,default,put#spreadsheets/:spreadsheetToken/dimension_range,该接口用于更新设置电子表格中行列的属性,包括是否隐藏行列和设置行高列宽。,none,true,/document/ukTMukTMukTM/uYjMzUjL2IzM14iNyMTN,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dimension_range,3,"[""isv"", ""custom""]",[],1732796977,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/sheet-rowcol/update-rows-or-columns
6943917246700322818,更新下拉列表设置,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/dataValidation/:sheetId,更新电子表格工作表中单个下拉列表的设置,支持更新下拉列表的选项和属性,包括是否支持多选、下拉选项的样式等。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/datavalidation/update-datavalidation,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/dataValidation/:sheetId,3,"[""isv"", ""custom""]",[],1755243175,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/datavalidation/update-datavalidation
6907569743420194818,插入行列,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/insert_dimension_range,该接口用于在电子表格的指定位置插入空白行或列。,none,true,/document/ukTMukTMukTM/uQjMzUjL0IzM14CNyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/insert_dimension_range,4,"[""isv"", ""custom""]",[],1723618537,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/sheet-rowcol/insert-rows-or-columns
6907569742387707906,合并单元格,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/merge_cells,合并电子表格工作表中的单元格。,none,true,/document/ukTMukTMukTM/ukDNzUjL5QzM14SO0MTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/merge_cells,6,"[""isv"", ""custom""]",[],1723618562,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/merge-cells
6907569744330227713,获取表格元数据,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/metainfo,该接口用于根据 spreadsheetToken 获取表格元数据。,none,true,/document/ukTMukTMukTM/uETMzUjLxEzM14SMxMTN,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/metainfo,4,"[""isv"", ""custom""]",[],1722417363,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/obtain-spreadsheet-metadata
6907569742384201730,更新表格属性,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/properties,该接口用于根据 spreadsheetToken 更新表格属性,如更新表格标题。,none,true,/document/ukTMukTMukTM/ucTMzUjL3EzM14yNxMTN,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/properties,3,"[""isv"", ""custom""]",[],1646321440,false,1,https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/update-spreadsheet-properties
6923123667871629340,删除保护范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/protected_range_batch_del,根据保护范围 ID 删除保护范围。,none,true,/document/ukTMukTMukTM/uYTM5YjL2ETO24iNxkjN,DELETE:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/protected_range_batch_del,1,"[""isv"", ""custom""]",[],1732796999,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/protect-range/delete-protection-scopes
6923123667871596572,获取保护范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/protected_range_batch_get,获取电子表格工作表中指定保护范围的信息,包括保护的行列索引、支持编辑的用户 ID、保护范围的备注等。,none,true,/document/ukTMukTMukTM/uQTM5YjL0ETO24CNxkjN,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/protected_range_batch_get,2,"[""isv"", ""custom""]",[],1723618710,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/protect-range/retrieve-protection-scopes
6923123667871612956,修改保护范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/protected_range_batch_update,修改电子表格工作表中指定的保护范围。,none,true,/document/ukTMukTMukTM/uUTM5YjL1ETO24SNxkjN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/protected_range_batch_update,3,"[""isv"", ""custom""]",[],1721123433,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/protect-range/modify-protection-scopes
6907569523176783873,设置单元格样式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/style,设置单元格中数据的样式。支持设置字体、背景、边框等样式。,none,true,/document/ukTMukTMukTM/ukjMzUjL5IzM14SOyMTN,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/style,2,"[""isv"", ""custom""]",[],1726646324,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/set-cell-style
6907569742383923202,批量设置单元格样式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/styles_batch_update,批量设置单元格中数据的样式。支持设置字体、背景、边框等样式。,none,true,/document/ukTMukTMukTM/uAzMzUjLwMzM14CMzMTN,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/styles_batch_update,1,"[""isv"", ""custom""]",[],1723618587,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/batch-set-cell-style
6907569524100055041,拆分单元格,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/unmerge_cells,拆分电子表格工作表中的单元格。,none,true,/document/ukTMukTMukTM/uATNzUjLwUzM14CM1MTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/unmerge_cells,5,"[""isv"", ""custom""]",[],1732796988,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/split-cells
6907569745298980866,向单个范围写入数据,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values,向电子表格某个工作表的单个指定范围中写入数据。若指定范围内已有数据,将被新写入的数据覆盖。,none,true,/document/ukTMukTMukTM/uAjMzUjLwIzM14CMyMTN,PUT:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values,4,"[""isv"", ""custom""]",[],1742457358,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/write-data-to-a-single-range
6907569742384529410,读取单个范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values/:range,读取电子表格中单个指定范围的数据。,none,true,/document/ukTMukTMukTM/ugTMzUjL4EzM14COxMTN,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values/:range,6,"[""isv"", ""custom""]",[],1729677571,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/reading-a-single-range
6907569524100857857,追加数据,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values_append,在电子表格工作表的指定范围中,在空白位置中追加数据。例如,若指定范围参数 `range` 为 `6e5ed3!A1:B2`,该接口将会依次寻找 A1、A2、A3...单元格,在找到的第一个空白位置中写入数据。,none,true,/document/ukTMukTMukTM/uMjMzUjLzIzM14yMyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values_append,8,"[""isv"", ""custom""]",[],1751892606,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/append-data
6907569743420325890,读取多个范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values_batch_get,读取电子表格中多个指定范围的数据。,none,true,/document/ukTMukTMukTM/ukTMzUjL5EzM14SOxMTN,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values_batch_get,5,"[""isv"", ""custom""]",[],1729677592,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/reading-multiple-ranges
6907569742384381954,向多个范围写入数据,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values_batch_update,向电子表格某个工作表的多个指定范围中写入数据。若指定范围已内有数据,将被新写入的数据覆盖。,none,true,/document/ukTMukTMukTM/uEjMzUjLxIzM14SMyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values_batch_update,3,"[""isv"", ""custom""]",[],1729677692,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/write-data-to-multiple-ranges
6907568073252585474,写入图片,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values_image,向电子表格某个工作表的单个指定单元格写入图片,支持传入图片的二进制流,支持多种图片格式。,none,true,/document/ukTMukTMukTM/uUDNxYjL1QTM24SN0EjN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values_image,7,"[""isv"", ""custom""]",[],1741160307,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/write-images
6907569742384398338,插入数据,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheetToken/values_prepend,在电子表格工作表的指定范围的起始位置上方增加若干行,并在该范围中填充数据。,none,true,/document/ukTMukTMukTM/uIjMzUjLyIzM14iMyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheetToken/values_prepend,9,"[""isv"", ""custom""]",[],1729677528,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/prepend-data
6939784115499909148,批量获取条件格式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/condition_formats,根据工作表 ID 获取详细的条件格式信息,最多支持同时查询 10 个工作表的条件格式。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/conditionformat/condition-format-get,GET:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/condition_formats,2,"[""isv"", ""custom""]",[],1723186034,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/conditionformat/condition-format-get
6939784115499892764,批量创建条件格式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/condition_formats/batch_create,在电子表格工作表的指定区域中,为满足指定条件的单元格和单元格中的数据设置样式。支持跨工作表创建多个条件格式。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/conditionformat/condition-format-set,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/condition_formats/batch_create,4,"[""isv"", ""custom""]",[],1729687295,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/conditionformat/condition-format-set
6939784115499859996,批量删除条件格式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/condition_formats/batch_delete,删除已有的条件格式。支持跨工作表删除多个条件格式。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/conditionformat/condition-format-delete,DELETE:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/condition_formats/batch_delete,1,"[""isv"", ""custom""]",[],1723186046,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/conditionformat/condition-format-delete
6939784115499925532,批量更新条件格式,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/condition_formats/batch_update,更新已有的条件格式。支持跨工作表更新多个条件格式。该接口为全量更新接口,若非必填参数不传值,将改变原有配置。,none,true,/document/ukTMukTMukTM/uATMzUjLwEzM14CMxMTN/conditionformat/condition-format-update,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/condition_formats/batch_update,3,"[""isv"", ""custom""]",[],1723186022,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/conditionformat/condition-format-update
6907569744333864961,增加行列,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/dimension_range,该接口用于在电子表格工作表中增加空白行或列。,none,true,/document/ukTMukTMukTM/uUjMzUjL1IzM14SNyMTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/dimension_range,5,"[""isv"", ""custom""]",[],1732796966,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/sheet-rowcol/add-rows-or-columns
6907569742383988738,增加保护范围,ccm,ccm_sheet,old,default,spreadsheets/:spreadsheet_token/protected_dimension,在电子表格工作表中设置多个保护范围,支持对行或列设置保护范围。,none,true,/document/ukTMukTMukTM/ugDNzUjL4QzM14CO0MTN,POST:/open-apis/sheets/v2/spreadsheets/:spreadsheet_token/protected_dimension,4,"[""isv"", ""custom""]",[],1760063200,false,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/protect-range/add-locked-cells
7437110392792858625,获取云文档内容,ccm,docs,v1,content,get,可获取云文档内容,当前只支持获取新版文档 Markdown 格式的内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/docs-v1/content/get,GET:/open-apis/docs/v1/content,1731641467935,"[""isv"", ""custom""]",[],1755223521,true,1,https://open.feishu.cn/document/docs/docs-v1/get
7450053428095615004,获取群公告基本信息,ccm,docx,v1,chat.announcement,get,获取指定群组中的群公告基本信息。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement/get,GET:/open-apis/docx/v1/chats/:chat_id/announcement,2,"[""isv"", ""custom""]",[],1743663949,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement/get
7450053428095549468,批量更新群公告块的内容,ccm,docx,v1,chat.announcement.block,batch_update,批量更新块的富文本内容。 {尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=chat.announcement.block&method=batch_update),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block/batch_update,PATCH:/open-apis/docx/v1/chats/:chat_id/announcement/blocks/batch_update,4,"[""isv"", ""custom""]",[],1758106036,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement-block/batch_update
7450053428095565852,获取群公告块的内容,ccm,docx,v1,chat.announcement.block,get,获取指定块的富文本内容。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=chat.announcement.block&method=get),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block/get,GET:/open-apis/docx/v1/chats/:chat_id/announcement/blocks/:block_id,3,"[""isv"", ""custom""]",[],1734600734,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement-block/get
7450053428095631388,获取群公告所有块,ccm,docx,v1,chat.announcement.block,list,获取群公告所有块的富文本内容并分页返回。 {尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=chat.announcement.block&method=list),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block/list,GET:/open-apis/docx/v1/chats/:chat_id/announcement/blocks,1,"[""isv"", ""custom""]",[],1734600726,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement/list
7450053428095598620,删除群公告中的块,ccm,docx,v1,chat.announcement.block.children,batch_delete,指定需要操作的块,删除其指定范围的子块。如果操作成功,接口将返回应用删除操作后的群公告版本号。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block-children/batch_delete,DELETE:/open-apis/docx/v1/chats/:chat_id/announcement/blocks/:block_id/children/batch_delete,1,"[""isv"", ""custom""]",[],1735881779,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement-block/batch_delete
7450053428095533084,在群公告中创建块,ccm,docx,v1,chat.announcement.block.children,create,在指定块的子块列表中,新创建一批子块,并放置到指定位置。如果操作成功,接口将返回新创建子块的富文本内容。调用该接口前,你可参考[群公告概述-基本概念](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/group/upgraded-group-announcement/group-announcement-overview)了解块的父子关系规则。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=chat.announcement.block.children&method=create),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block-children/create,POST:/open-apis/docx/v1/chats/:chat_id/announcement/blocks/:block_id/children,5,"[""isv"", ""custom""]",[],1741143722,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement-block/create
7450053428095582236,获取所有子块,ccm,docx,v1,chat.announcement.block.children,get,获取群公告中指定块的所有子块的富文本内容并分页返回。 {尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=chat.announcement.block.children&method=get),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/chat-announcement-block-children/get,GET:/open-apis/docx/v1/chats/:chat_id/announcement/blocks/:block_id/children,2,"[""isv"", ""custom""]",[],1758095805,true,1,https://open.feishu.cn/document/group/upgraded-group-announcement/chat-announcement-block/get-2
7514526156452954140,Markdown/HTML 内容转换为文档块,ccm,docx,v1,document,convert,将 HTML/Markdown 格式的内容转换为文档块,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document/convert,POST:/open-apis/docx/documents/blocks/convert,1,"[""isv"", ""custom""]",[],1756439436,true,1,
7068199542315204636,创建文档,ccm,docx,v1,document,create,创建文档类型为 docx 的文档。你可选择传入文档标题和文件夹。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document/create,POST:/open-apis/docx/v1/documents,5,"[""isv"", ""custom""]",[],1752809918,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document/create
7068199542315302940,获取文档基本信息,ccm,docx,v1,document,get,获取文档标题和最新版本 ID。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document/get,GET:/open-apis/docx/v1/documents/:document_id,4,"[""isv"", ""custom""]",[],1735881780,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document/get
7079983676051013634,获取文档纯文本内容,ccm,docx,v1,document,raw_content,获取文档的纯文本内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document/raw_content,GET:/open-apis/docx/v1/documents/:document_id/raw_content,3,"[""isv"", ""custom""]",[],1735881780,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document/raw_content
7100866542866530308,批量更新块的内容,ccm,docx,v1,document.block,batch_update,批量更新块的富文本内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block/batch_update,PATCH:/open-apis/docx/v1/documents/:document_id/blocks/batch_update,4,"[""isv"", ""custom""]",[],1758100532,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/batch_update
7068199542315368476,获取块的内容,ccm,docx,v1,document.block,get,获取指定块的富文本内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block/get,GET:/open-apis/docx/v1/documents/:document_id/blocks/:block_id,5,"[""isv"", ""custom""]",[],1752809933,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/get
7068199542315352092,获取文档所有块,ccm,docx,v1,document.block,list,获取文档所有块的富文本内容并分页返回。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block/list,GET:/open-apis/docx/v1/documents/:document_id/blocks,2,"[""isv"", ""custom""]",[],1752809920,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document/list
7068199542315286556,更新块的内容,ccm,docx,v1,document.block,patch,更新指定的块。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block/patch,PATCH:/open-apis/docx/v1/documents/:document_id/blocks/:block_id,6,"[""isv"", ""custom""]",[],1758100535,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/patch
7068199542315335708,删除块,ccm,docx,v1,document.block.children,batch_delete,指定需要操作的块,删除其指定范围的子块。如果操作成功,接口将返回应用删除操作后的文档版本号。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block-children/batch_delete,DELETE:/open-apis/docx/v1/documents/:document_id/blocks/:block_id/children/batch_delete,2,"[""isv"", ""custom""]",[],1752809938,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/batch_delete
7068199542315270172,创建块,ccm,docx,v1,document.block.children,create,指定需要操作的块,为其创建一批子块,并插入到指定位置。如果操作成功,接口将返回新创建子块的富文本内容。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block-children/create,POST:/open-apis/docx/v1/documents/:document_id/blocks/:block_id/children,8,"[""isv"", ""custom""]",[],1752809925,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/create
7068199542315253788,获取所有子块,ccm,docx,v1,document.block.children,get,给定一个指定版本的文档,并指定需要操作的块,分页遍历其所有子块富文本内容 。如果不指定版本,则会默认查询最新版本。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block-children/get,GET:/open-apis/docx/v1/documents/:document_id/blocks/:block_id/children,3,"[""isv"", ""custom""]",[],1752809938,true,1,https://open.feishu.cn/document/server-docs/docs/docs/docx-v1/document-block/get-2
7324523155900366876,创建嵌套块,ccm,docx,v1,document.block.descendant,create,在指定块的子块列表中,新创建一批有父子关系的子块,并放置到指定位置。如果操作成功,接口将返回新创建子块的富文本内容。调用该接口前,你可参考[文档概述-基本概念](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-overview)了解块的父子关系规则。当创建的子块中含有 GridColumn、TableCell、Callout 时其中至少需要包含一个子块 ,即内容为空时也需要填入一个空 Text Block 作为子块。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=docx&version=v1&resource=document.block.descendant&method=create),basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/document-docx/docx-v1/document-block-descendant/create,POST:/open-apis/docx/v1/documents/:document_id/blocks/:block_id/descendant,7,"[""isv"", ""custom""]",[],1752809928,true,1,https://open.feishu.cn/document/docs/docs/document-block/create-2
7089034521211191298,创建导出任务,ccm,drive,v1,export_task,create,该接口用于创建导出文件的任务,并返回导出任务 ID。导出文件指将飞书文档、电子表格、多维表格导出为本地文件,包括 Word、Excel、PDF、CSV 格式。该接口为异步接口,需要继续调用[查询导出任务结果](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/get)接口获取导出结果。了解完整的导出步骤,参考[导出云文档概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/export-user-guide)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/create,POST:/open-apis/drive/v1/export_tasks,3,"[""custom""]",[],1740477085,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/export_task/create
7091583486251335682,下载导出文件,ccm,drive,v1,export_task,download,根据[查询导出任务结果](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/get)返回的导出文件的 token,下载导出产物到本地。了解完整的导出文件步骤,参考[导出云文档概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/export-user-guide)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/download,GET:/open-apis/drive/v1/export_tasks/file/:file_token/download,1,"[""custom""]",[],1718349593,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/export_task/download
7089034521211207682,查询导出任务结果,ccm,drive,v1,export_task,get,根据[创建导出任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/create)返回的导出任务 ID(ticket)轮询导出任务结果,并返回导出文件的 token。你可使用该 token 继续调用[下载导出文件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/download)接口将导出的产物下载到本地。了解完整的导出文件步骤,参考[导出飞书云文档概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/export-user-guide)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/export_task/get,GET:/open-apis/drive/v1/export_tasks/:ticket,2,"[""custom""]",[],1724394970,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/export_task/get
7087776630140157955,复制文件,ccm,drive,v1,file,copy,将用户云空间中的文件复制至其它文件夹下。该接口为异步接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/copy,POST:/open-apis/drive/v1/files/:file_token/copy,9,"[""isv"", ""custom""]",[],1751457998,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/copy
7086652480830914563,新建文件夹,ccm,drive,v1,file,create_folder,该接口用于在用户云空间指定文件夹中创建一个空文件夹。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/create_folder,POST:/open-apis/drive/v1/files/create_folder,3,"[""isv"", ""custom""]",[],1746601133,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/folder/create_folder
7216001760515112961,创建文件快捷方式,ccm,drive,v1,file,create_shortcut,创建指定文件的快捷方式到云空间的其它文件夹中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/create_shortcut,POST:/open-apis/drive/v1/files/create_shortcut,6,"[""isv"", ""custom""]",[],1716972268,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/create_shortcut
7029475705897828354,删除文件或文件夹,ccm,drive,v1,file,delete,删除用户在云空间内的文件或者文件夹。文件或文件夹被删除后,会进入回收站中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/delete,DELETE:/open-apis/drive/v1/files/:file_token,7,"[""isv"", ""custom""]",[],1726818321,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/delete
7259592279886233628,取消云文档事件订阅,ccm,drive,v1,file,delete_subscribe,该接口用于取消订阅云文档的通知事件。了解事件订阅的配置流程和使用场景,参考[事件概述](/ssl:ttdoc/ukTMukTMukTM/uUTNz4SN1MjL1UzM)。了解云文档支持的事件类型,参考[事件列表](/ssl:ttdoc/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/delete_subscribe,DELETE:/open-apis/drive/v1/files/:file_token/delete_subscribe,2,"[""isv"", ""custom""]",[],1744103528,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/event/delete_subscribe
6979562676003946524,下载文件,ccm,drive,v1,file,download,下载云空间中的文件,如 PDF 文件。不包含飞书文档、电子表格以及多维表格等在线文档。该接口支持通过在请求头添加 `Range` 参数分片下载部分文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/download,GET:/open-apis/drive/v1/files/:file_token/download,3,"[""isv"", ""custom""]",[],1744787717,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/download/download
7259592279886250012,查询云文档事件订阅状态,ccm,drive,v1,file,get_subscribe,该接口用于查询云文档事件的订阅状态。了解事件订阅的配置流程和使用场景,参考[事件概述](/ssl:ttdoc/ukTMukTMukTM/uUTNz4SN1MjL1UzM)。了解云文档支持的事件类型,参考[事件列表](/ssl:ttdoc/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/get_subscribe,GET:/open-apis/drive/v1/files/:file_token/get_subscribe,3,"[""isv"", ""custom""]",[],1744103528,true,1,https://open.feishu.cn/document/docs/drive-v1/event/get_subscribe
7108600920377016348,获取文件夹中的文件清单,ccm,drive,v1,file,list,该接口用于获取用户云空间指定文件夹中文件信息清单。文件的信息包括名称、类型、token、创建时间、所有者 ID 等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/list,GET:/open-apis/drive/v1/files,5,"[""isv"", ""custom""]",[],1756451238,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/folder/list
7080903916725993474,移动文件或文件夹,ccm,drive,v1,file,move,将文件或者文件夹移动到用户云空间的其他位置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/move,POST:/open-apis/drive/v1/files/:file_token/move,8,"[""isv"", ""custom""]",[],1726818321,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/move
7094878915034464284,订阅云文档事件,ccm,drive,v1,file,subscribe,订阅云文档的各类通知事件。调用该接口并在开发者后台添加事件后,当云文档发生指定事件时,系统会向配置的地址发送事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/subscribe,POST:/open-apis/drive/v1/files/:file_token/subscribe,4,"[""isv"", ""custom""]",[],1752548674,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/event/subscribe
7094912924435021826,查询异步任务状态,ccm,drive,v1,file,task_check,查询异步任务的状态信息。目前支持查询删除文件夹和移动文件夹的异步任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/task_check,GET:/open-apis/drive/v1/files/task_check,1,"[""isv"", ""custom""]",[],1716972179,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/async-task/task_check
6979562676003864604,上传文件,ccm,drive,v1,file,upload_all,将指定文件上传至云空间指定目录中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_all,POST:/open-apis/drive/v1/files/upload_all,2,"[""isv"", ""custom""]",[],1729668982,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/upload/upload_all
6979562676003766300,分片上传文件-完成上传,ccm,drive,v1,file,upload_finish,调用[上传分片](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_part)接口将分片全部上传完毕后,你需调用本接口触发完成上传。否则将上传失败。了解完整的上传文件流程,参考[上传文件概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/multipart-upload-file-/introduction)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_finish,POST:/open-apis/drive/v1/files/upload_finish,1624588624505,"[""isv"", ""custom""]",[],1735881802,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/upload/multipart-upload-file-/upload_finish
6979562676003930140,分片上传文件-上传分片,ccm,drive,v1,file,upload_part,根据 [预上传](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_prepare)接口返回的上传事务 ID 和分片策略上传对应的文件分片。上传完成后,你需调用[分片上传文件(完成上传)](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_finish)触发完成上传。了解完整的上传文件流程,参考[分片上传文件概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/multipart-upload-file-/introduction)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_part,POST:/open-apis/drive/v1/files/upload_part,1624588674495,"[""isv"", ""custom""]",[],1735881801,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/upload/multipart-upload-file-/upload_part
6979562676003815452,分片上传文件-预上传,ccm,drive,v1,file,upload_prepare,发送初始化请求,以获取上传事务 ID 和分片策略,为[上传分片](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_part)做准备。平台固定以 4MB 的大小对文件进行分片。了解完整的上传文件流程,参考[上传文件概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/multipart-upload-file-/introduction)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/upload_prepare,POST:/open-apis/drive/v1/files/upload_prepare,1624588680284,"[""isv"", ""custom""]",[],1735881801,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/upload/multipart-upload-file-/upload_prepare
7123144042921590786,批量获取评论,ccm,drive,v1,file.comment,batch_query,该接口用于根据评论 ID 列表批量获取云文档评论信息,包括评论和回复 ID、回复的内容、评论人和回复人的用户 ID 等。支持返回全局评论以及局部评论(可通过 is_whole 字段区分)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment/batch_query,POST:/open-apis/drive/v1/files/:file_token/comments/batch_query,7,"[""isv"", ""custom""]",[],1744103612,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/batch_query
6955017385137750017,添加全文评论,ccm,drive,v1,file.comment,create,在文档中添加一条全局评论,不支持局部评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment/create,POST:/open-apis/drive/v1/files/:file_token/comments,5,"[""isv"", ""custom""]",[],1748241632,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/create
6955017385137782785,获取全文评论,ccm,drive,v1,file.comment,get,获取云文档中的某条全文评论,不支持局部评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment/get,GET:/open-apis/drive/v1/files/:file_token/comments/:comment_id,4,"[""isv"", ""custom""]",[],1748241642,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/get
6955017385137799169,获取云文档所有评论,ccm,drive,v1,file.comment,list,该接口用于根据云文档 Token 分页获取文档所有评论信息,包括评论和回复 ID、回复的内容、评论人和回复人的用户 ID 等。该接口支持返回全局评论以及局部评论(可通过 is_whole 字段区分)。默认每页返回 50 个评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment/list,GET:/open-apis/drive/v1/files/:file_token/comments,8,"[""isv"", ""custom""]",[],1744103612,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/list
6955017385137766401,解决/恢复评论,ccm,drive,v1,file.comment,patch,解决或恢复云文档中的评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment/patch,PATCH:/open-apis/drive/v1/files/:file_token/comments/:comment_id,6,"[""isv"", ""custom""]",[],1744103612,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/patch
6955017385137717249,删除回复,ccm,drive,v1,file.comment.reply,delete,删除云文档中的某条回复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment-reply/delete,DELETE:/open-apis/drive/v1/files/:file_token/comments/:comment_id/replies/:reply_id,1,"[""isv"", ""custom""]",[],1743141928,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/delete
7123144042921607170,获取回复信息,ccm,drive,v1,file.comment.reply,list,该接口用于根据评论 ID,获取该条评论对应的回复信息,包括回复 ID、回复内容、回复人的用户 ID 等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment-reply/list,GET:/open-apis/drive/v1/files/:file_token/comments/:comment_id/replies,3,"[""isv"", ""custom""]",[],1744103613,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/list-2
6955017385137733633,更新回复的内容,ccm,drive,v1,file.comment.reply,update,更新云文档中的某条回复的内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment-reply/update,PUT:/open-apis/drive/v1/files/:file_token/comments/:comment_id/replies/:reply_id,2,"[""isv"", ""custom""]",[],1744103613,true,1,https://open.feishu.cn/document/server-docs/docs/CommentAPI/update
6989584844481544196,获取文件统计信息,ccm,drive,v1,file.statistics,get,此接口用于获取各类文件的流量统计信息和互动信息,包括阅读人数、阅读次数和点赞数。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-statistics/get,GET:/open-apis/drive/v1/files/:file_token/statistics,13,"[""isv"", ""custom""]",[],1731587188,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/get
7065964758428483612,创建订阅,ccm,drive,v1,file.subscription,create,订阅文档中的变更事件,当前支持文档评论订阅,订阅后文档评论更新会有“云文档助手”推送给订阅的用户,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-subscription/create,POST:/open-apis/drive/v1/files/:file_token/subscriptions,2,"[""isv"", ""custom""]",[],1703835068,true,1,https://open.feishu.cn/document/server-docs/docs/docs-assistant/file-subscription/create
7065964758428516380,获取订阅状态,ccm,drive,v1,file.subscription,get,根据订阅ID获取该订阅的状态,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-subscription/get,GET:/open-apis/drive/v1/files/:file_token/subscriptions/:subscription_id,3,"[""isv"", ""custom""]",[],1703835068,true,1,https://open.feishu.cn/document/server-docs/docs/docs-assistant/file-subscription/get
7065964758428499996,更新订阅状态,ccm,drive,v1,file.subscription,patch,根据订阅ID更新订阅状态,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-subscription/patch,PATCH:/open-apis/drive/v1/files/:file_token/subscriptions/:subscription_id,1,"[""isv"", ""custom""]",[],1703835069,true,1,https://open.feishu.cn/document/server-docs/docs/docs-assistant/file-subscription/patch
7156062028485033988,创建文档版本,ccm,drive,v1,file.version,create,创建文档版本。文档支持在线文档或电子表格。该接口为异步接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-version/create,POST:/open-apis/drive/v1/files/:file_token/versions,4,"[""isv"", ""custom""]",[],1728552661,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file-version/create
7156062028485017604,删除文档版本,ccm,drive,v1,file.version,delete,删除基于在线文档或电子表格创建的版本。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-version/delete,DELETE:/open-apis/drive/v1/files/:file_token/versions/:version_id,1,"[""isv"", ""custom""]",[],1721027092,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file-version/delete
7156062028485001220,获取文档版本信息,ccm,drive,v1,file.version,get,该接口用于获取文档或电子表格指定版本的信息,包括标题、标识、创建者、创建时间等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-version/get,GET:/open-apis/drive/v1/files/:file_token/versions/:version_id,2,"[""isv"", ""custom""]",[],1721027092,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file-version/get
7156062028484984836,获取文档版本列表,ccm,drive,v1,file.version,list,获取文档或电子表格的版本列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-version/list,GET:/open-apis/drive/v1/files/:file_token/versions,3,"[""isv"", ""custom""]",[],1721027092,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file-version/list
7232207479622074371,获取文件访问记录,ccm,drive,v1,file.view_record,list,获取文档、电子表格、多维表格等文件的历史访问记录,包括访问者的 ID、姓名、头像和最近访问时间。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-view_record/list,GET:/open-apis/drive/v1/files/:file_token/view_records,12,"[""isv"", ""custom""]",[],1741680173,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file-view_record/list
6987581325629947905,创建导入任务,ccm,drive,v1,import_task,create,该接口用于创建导入文件的任务,并返回导入任务 ID。导入文件指将本地文件如 Word、TXT、Markdown、Excel 等格式的文件导入为某种格式的飞书在线云文档。该接口为异步接口,需要继续调用[查询导入任务结果](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/get)接口获取导入结果。了解完整的导入文件步骤,参考[导入文件概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/import-user-guide)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/create,POST:/open-apis/drive/v1/import_tasks,2,"[""isv"", ""custom""]",[],1728628832,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/import_task/create
6987581325629931521,查询导入任务结果,ccm,drive,v1,import_task,get,根据[创建导入任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/create)返回的导入任务 ID(ticket)轮询导入结果。了解完整的导入文件步骤,参考[导入文件概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/import-user-guide)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/import_task/get,GET:/open-apis/drive/v1/import_tasks/:ticket,1,"[""isv"", ""custom""]",[],1728634581,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/import_task/get
6979562676003897372,获取素材临时下载链接,ccm,drive,v1,media,batch_get_tmp_download_url,该接口用于获取云文档中素材的临时下载链接。链接的有效期为 24 小时,过期失效。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/batch_get_tmp_download_url,GET:/open-apis/drive/v1/medias/batch_get_tmp_download_url,1,"[""isv"", ""custom""]",[],1740053884,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/batch_get_tmp_download_url
6979562676003913756,下载素材,ccm,drive,v1,media,download,下载各类云文档中的素材,例如电子表格中的图片。该接口支持通过在请求头添加`Range` 参数分片下载素材。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/download,GET:/open-apis/drive/v1/medias/:file_token/download,2,"[""isv"", ""custom""]",[],1735881802,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/download
6979562676003831836,上传素材,ccm,drive,v1,media,upload_all,将文件、图片、视频等素材上传到指定云文档中。素材将显示在对应云文档中,在云空间中不会显示。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_all,POST:/open-apis/drive/v1/medias/upload_all,4,"[""isv"", ""custom""]",[],1740463288,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/upload_all
6979562676003880988,分片上传素材-完成上传,ccm,drive,v1,media,upload_finish,调用[上传分片](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_part)接口将分片全部上传完毕后,你需调用本接口触发完成上传。了解完整的分片上传素材流程,参考[素材概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/introduction)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_finish,POST:/open-apis/drive/v1/medias/upload_finish,1,"[""isv"", ""custom""]",[],1729669005,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/multipart-upload-media/upload_finish
6979562676003979292,分片上传素材-上传分片,ccm,drive,v1,media,upload_part,根据 [预上传](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_prepare)接口返回的上传事务 ID 和分片策略上传对应的素材分片。上传完成后,你可调用 [分片上传素材(完成上传)](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_finish)触发完成上传。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_part,POST:/open-apis/drive/v1/medias/upload_part,2,"[""isv"", ""custom""]",[],1725537089,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/multipart-upload-media/upload_part
6979562676003848220,分片上传素材-预上传,ccm,drive,v1,media,upload_prepare,发送初始化请求,以获取上传事务 ID 和分片策略,为[上传素材分片](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_part)做准备。平台固定以 4MB 的大小对素材进行分片。了解完整的分片上传素材流程,参考[素材概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/introduction)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/media/upload_prepare,POST:/open-apis/drive/v1/medias/upload_prepare,3,"[""isv"", ""custom""]",[],1740463289,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/media/multipart-upload-media/upload_prepare
7106040876741345308,获取文件元数据,ccm,drive,v1,meta,batch_query,该接口用于根据文件 token 获取其元数据,包括标题、所有者、创建时间、密级、访问链接等数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/meta/batch_query,POST:/open-apis/drive/v1/metas/batch_query,14,"[""isv"", ""custom""]",[],1716972201,true,1,https://open.feishu.cn/document/server-docs/docs/drive-v1/file/batch_query
7186547801970524161,判断用户云文档权限,ccm,drive,v1,permission.member,auth,判断当前请求的应用或用户是否具有指定云文档的指定权限,权限包括阅读、编辑、分享、评论、导出等权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/auth,GET:/open-apis/drive/v1/permissions/:token/members/auth,1,"[""isv"", ""custom""]",[],1751544861,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/auth
7281248568152981507,批量增加协作者权限,ccm,drive,v1,permission.member,batch_create,为指定云文档批量添加多个协作者,协作者可以是用户、群组、部门、用户组等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/batch_create,POST:/open-apis/drive/v1/permissions/:token/members/batch_create,6,"[""isv"", ""custom""]",[],1751544860,true,1,https://open.feishu.cn/document/docs/permission/permission-member/batch_create
6987581166854635521,增加协作者权限,ccm,drive,v1,permission.member,create,为指定云文档添加协作者,协作者可以是用户、群组、部门、用户组等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/create,POST:/open-apis/drive/v1/permissions/:token/members,7,"[""isv"", ""custom""]",[],1751544851,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/create
6998069547745214492,移除云文档协作者权限,ccm,drive,v1,permission.member,delete,通过云文档 token 和协作者 ID 移除指定云文档协作者的权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/delete,DELETE:/open-apis/drive/v1/permissions/:token/members/:member_id,3,"[""isv"", ""custom""]",[],1751544860,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/delete
7121656165336367106,获取云文档协作者,ccm,drive,v1,permission.member,list,获取指定云文档的协作者,支持查询人、群、组织架构、用户组、知识库成员五种类型的协作者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/list,GET:/open-apis/drive/v1/permissions/:token/members,4,"[""isv"", ""custom""]",[],1751544860,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/list
7186547801970507777,转移云文档所有者,ccm,drive,v1,permission.member,transfer_owner,转移指定云文档的所有者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/transfer_owner,POST:/open-apis/drive/v1/permissions/:token/members/transfer_owner,2,"[""isv"", ""custom""]",[],1751544860,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/transfer_owner
6998069547745230876,更新协作者权限,ccm,drive,v1,permission.member,update,更新指定云文档中指定协作者的权限,包括可阅读、可编辑、可管理权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-member/update,PUT:/open-apis/drive/v1/permissions/:token/members/:member_id,5,"[""isv"", ""custom""]",[],1751544860,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-member/update
7091106167506354178,获取云文档权限设置,ccm,drive,v1,permission.public,get,获取指定云文档的权限设置,包括是否允许内容被分享到组织外、谁可以查看、添加、移除协作者等设置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-public/get,GET:/open-apis/drive/v1/permissions/:token/public,1,"[""isv"", ""custom""]",[],1751546056,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/get
6987581166854651905,更新云文档权限设置,ccm,drive,v1,permission.public,patch,更新指定云文档的权限设置,包括是否允许内容被分享到组织外、谁可以查看、添加、移除协作者、谁可以复制内容等设置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-public/patch,PATCH:/open-apis/drive/v1/permissions/:token/public,2,"[""isv"", ""custom""]",[],1751546068,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/patch
7220305453616152580,启用云文档密码,ccm,drive,v1,permission.public.password,create,启用指定云文档的密码。密码启用后,组织外用户需要密码访问,组织内用户无需密码可直接访问。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-public-password/create,POST:/open-apis/drive/v1/permissions/:token/public/password,3,"[""isv"", ""custom""]",[],1751544886,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/permission-public-password/create
7220305453616185348,停用云文档密码,ccm,drive,v1,permission.public.password,delete,停用指定云文档的密码。密码停用后,组织外用户访问文档将无需输入密码。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-public-password/delete,DELETE:/open-apis/drive/v1/permissions/:token/public/password,1,"[""isv"", ""custom""]",[],1751544903,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/permission-public-password/delete
7220305453616168964,刷新云文档密码,ccm,drive,v1,permission.public.password,update,刷新指定云文档的密码。密码刷新后,旧密码将失效,并生成新密码。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/permission-public-password/update,PUT:/open-apis/drive/v1/permissions/:token/public/password,2,"[""isv"", ""custom""]",[],1751544895,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/permission-public-password/update
7270815553257619457,获取云文档的点赞者列表,ccm,drive,v2,file.like,list,获取指定云文档的点赞者列表并按点赞时间由近到远分页返回。,basic,true,/document/ukTMukTMukTM/uIzNzUjLyczM14iM3MTN/drive-v2/file-like/list,GET:/open-apis/drive/v2/files/:file_token/likes,1721965546903,"[""isv"", ""custom""]",[],1734663692,true,1,https://open.feishu.cn/document/docs/drive-v1/like/list
7224057619119112196,获取云文档权限设置,ccm,drive,v2,permission.public,get,获取指定云文档的权限设置,包括是否允许内容被分享到组织外、谁可以查看、添加、移除协作者、谁可以复制内容等设置。,basic,true,/document/ukTMukTMukTM/uIzNzUjLyczM14iM3MTN/drive-v2/permission-public/get,GET:/open-apis/drive/v2/permissions/:token/public,1,"[""isv"", ""custom""]",[],1751546068,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/get-2
7224057619119128580,更新云文档权限设置,ccm,drive,v2,permission.public,patch,更新指定云文档的权限设置,包括是否允许内容被分享到组织外、谁可以查看、添加、移除协作者、谁可以复制内容等设置。,basic,true,/document/ukTMukTMukTM/uIzNzUjLyczM14iM3MTN/drive-v2/permission-public/patch,PATCH:/open-apis/drive/v2/permissions/:token/public,2,"[""isv"", ""custom""]",[],1751544869,true,1,https://open.feishu.cn/document/server-docs/docs/permission/permission-public/patch-2
6969763153149476865,创建电子表格,ccm,sheets,v3,spreadsheet,create,在云空间指定目录下创建电子表格。可自定义表格标题。不支持带内容创建表格。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet/create,POST:/open-apis/sheets/v3/spreadsheets,3,"[""isv"", ""custom""]",[],1746601146,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet/create
7120425077330919452,获取电子表格信息,ccm,sheets,v3,spreadsheet,get,根据电子表格 token 获取电子表格的基础信息,包括电子表格的所有者、URL 链接等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token,1,"[""isv"", ""custom""]",[],1729677506,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet/get
7120425077330903068,修改电子表格属性,ccm,sheets,v3,spreadsheet,patch,该接口用于修改电子表格的属性。目前支持修改电子表格标题。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet/patch,PATCH:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token,2,"[""isv"", ""custom""]",[],1722417432,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet/patch
6982374372208590850,查找单元格,ccm,sheets,v3,spreadsheet.sheet,find,在指定范围内查找符合查找条件的单元格。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet/find,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/find,4,"[""isv"", ""custom""]",[],1722417436,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/find
7120425077330935836,查询工作表,ccm,sheets,v3,spreadsheet.sheet,get,根据工作表 ID 查询工作表属性信息,包括工作表的标题、索引位置、是否被隐藏等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id,1,"[""isv"", ""custom""]",[],1735881780,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet/get
6969403095454416924,移动行列,ccm,sheets,v3,spreadsheet.sheet,move_dimension,该接口用于移动行或列。行或列被移动到目标位置后,原本在目标位置的行列会对应右移或下移。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet/move_dimension,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/move_dimension,2,"[""isv"", ""custom""]",[],1760148818,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/sheet-rowcol/move_dimension
7120425077330952220,获取工作表,ccm,sheets,v3,spreadsheet.sheet,query,根据电子表格 token 获取表格中所有工作表及其属性信息,包括工作表 ID、标题、索引位置、是否被隐藏等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet/query,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/query,2,"[""isv"", ""custom""]",[],1729677506,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet/query
6982374372208607234,替换单元格,ccm,sheets,v3,spreadsheet.sheet,replace,在指定范围内,查找并替换符合查找条件的单元格。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet/replace,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/replace,3,"[""isv"", ""custom""]",[],1722417437,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/data-operation/replace
6966945328390668290,创建筛选,ccm,sheets,v3,spreadsheet.sheet.filter,create,在电子表格工作表的指定范围内,设置筛选条件,创建筛选。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter/create,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter,4,"[""isv"", ""custom""]",[],1722417437,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter/create
6966945328390701058,删除筛选,ccm,sheets,v3,spreadsheet.sheet.filter,delete,删除电子表格中指定工作表的所有筛选。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter/delete,DELETE:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter,1,"[""isv"", ""custom""]",[],1722417437,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter/delete
6966945328390651906,获取筛选,ccm,sheets,v3,spreadsheet.sheet.filter,get,获取电子表格中工作表的详细筛选信息,包括筛选的应用范围、筛选条件、被筛选条件过滤掉的行。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter,2,"[""isv"", ""custom""]",[],1722417437,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter/get
6966945328390684674,更新筛选,ccm,sheets,v3,spreadsheet.sheet.filter,update,在电子表格工作表筛选范围中,更新指定列的筛选条件。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter/update,PUT:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter,3,"[""isv"", ""custom""]",[],1722417437,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter/update
6970504825797672963,创建筛选视图,ccm,sheets,v3,spreadsheet.sheet.filter_view,create,指定电子表格工作表的筛选范围,创建一个筛选视图。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view/create,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views,6,"[""isv"", ""custom""]",[],1722417438,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/create
6970504825797689347,删除筛选视图,ccm,sheets,v3,spreadsheet.sheet.filter_view,delete,删除指定筛选视图。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view/delete,DELETE:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id,2,"[""isv"", ""custom""]",[],1722417438,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/delete
6970504825797558275,获取筛选视图,ccm,sheets,v3,spreadsheet.sheet.filter_view,get,获取指定筛选视图的信息,包括 ID、名称和筛选范围。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id,3,"[""isv"", ""custom""]",[],1722417438,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/get
6970504825797591043,更新筛选视图,ccm,sheets,v3,spreadsheet.sheet.filter_view,patch,更新筛选视图的名称或筛选范围。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view/patch,PATCH:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id,5,"[""isv"", ""custom""]",[],1722417438,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/patch
6970504825797574659,查询筛选视图,ccm,sheets,v3,spreadsheet.sheet.filter_view,query,查询电子表格指定工作表的所有筛选视图及其基本信息,包括视图 ID、视图名称和筛选范围。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view/query,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/query,4,"[""isv"", ""custom""]",[],1722417438,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/query
6970504825797705731,创建筛选条件,ccm,sheets,v3,spreadsheet.sheet.filter_view.condition,create,在筛选视图的指定列创建筛选条件,包括筛选的类型、比较类型、筛选参数等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view-condition/create,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id/conditions,5,"[""isv"", ""custom""]",[],1722417439,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/spreadsheet-sheet-filter_view-condition/create
6970504825797640195,删除筛选条件,ccm,sheets,v3,spreadsheet.sheet.filter_view.condition,delete,删除筛选视图指定列的所有筛选条件。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view-condition/delete,DELETE:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id/conditions/:condition_id,1,"[""isv"", ""custom""]",[],1722417439,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/spreadsheet-sheet-filter_view-condition/delete
6970504825797623811,获取筛选条件,ccm,sheets,v3,spreadsheet.sheet.filter_view.condition,get,获取筛选视图某列的筛选条件,包括筛选的类型、比较类型、筛选参数等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view-condition/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id/conditions/:condition_id,2,"[""isv"", ""custom""]",[],1722417439,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/spreadsheet-sheet-filter_view-condition/get
6970504825797607427,查询筛选条件,ccm,sheets,v3,spreadsheet.sheet.filter_view.condition,query,查询指定筛选视图的所有筛选条件,包括筛选的类型、比较类型、筛选参数等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view-condition/query,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id/conditions/query,3,"[""isv"", ""custom""]",[],1722417439,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/spreadsheet-sheet-filter_view-condition/query
6970504825797541891,更新筛选条件,ccm,sheets,v3,spreadsheet.sheet.filter_view.condition,update,更新筛选视图指定列的筛选条件,包括筛选的类型、比较类型、筛选参数等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-filter_view-condition/update,PUT:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/filter_views/:filter_view_id/conditions/:condition_id,4,"[""isv"", ""custom""]",[],1722417439,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-filter_view/spreadsheet-sheet-filter_view-condition/update
6976178542817230851,创建浮动图片,ccm,sheets,v3,spreadsheet.sheet.float_image,create,在电子表格工作表的指定位置创建一张浮动图片。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/create,POST:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images,5,"[""isv"", ""custom""]",[],1744612290,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/create
6976178542817296387,删除浮动图片,ccm,sheets,v3,spreadsheet.sheet.float_image,delete,删除电子表格工作表内指定的浮动图片。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/delete,DELETE:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images/:float_image_id,1,"[""isv"", ""custom""]",[],1725881497,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/delete
6976178542817247235,获取浮动图片,ccm,sheets,v3,spreadsheet.sheet.float_image,get,获取电子表格工作表内指定浮动图片的参数信息。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/get,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images/:float_image_id,3,"[""isv"", ""custom""]",[],1725881497,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/get
6976178542817280003,更新浮动图片,ccm,sheets,v3,spreadsheet.sheet.float_image,patch,更新已有的浮动图片位置和宽高。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/patch,PATCH:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images/:float_image_id,4,"[""isv"", ""custom""]",[],1725881497,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/patch
6976178542817263619,查询浮动图片,ccm,sheets,v3,spreadsheet.sheet.float_image,query,获取电子表格工作表内所有的浮动图片的参数信息。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/query,GET:/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images/query,2,"[""isv"", ""custom""]",[],1725881497,true,1,https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/query
6927492937392324635,搜索 Wiki,ccm,wiki,v1,node,search,搜索 Wiki,用户通过关键词查询 Wiki,只能查找自己可见的 wiki,none,true,/document/ukTMukTMukTM/uEzN0YjLxcDN24SM3QjN/search_wiki,POST:/open-apis/wiki/v1/nodes/search,1,"[""isv"", ""custom""]",[],1766400136,false,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/search_wiki
7023947709203922948,创建知识空间,ccm,wiki,v2,space,create,此接口用于创建知识空间,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space/create,POST:/open-apis/wiki/v2/spaces,1,"[""isv"", ""custom""]",[],1749710122,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space/create
7023947709203857412,获取知识空间信息,ccm,wiki,v2,space,get,此接口用于根据知识空间 ID 查询知识空间的信息,包括空间的类型、可见性、分享状态等。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space/get,GET:/open-apis/wiki/v2/spaces/:space_id,2,"[""isv"", ""custom""]",[],1753152939,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space/get
7023947709203939332,获取知识空间节点信息,ccm,wiki,v2,space,get_node,获取知识空间节点信息,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space/get_node,GET:/open-apis/wiki/v2/spaces/get_node,5,"[""isv"", ""custom""]",[],1749710137,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/get_node
7023947709203841028,获取知识空间列表,ccm,wiki,v2,space,list,此接口用于获取有权限访问的知识空间列表。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space/list,GET:/open-apis/wiki/v2/spaces,3,"[""isv"", ""custom""]",[],1755844515,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space/list
7023947709203906564,添加知识空间成员,ccm,wiki,v2,space.member,create,添加知识空间成员或管理员。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-member/create,POST:/open-apis/wiki/v2/spaces/:space_id/members,2,"[""isv"", ""custom""]",[],1749710136,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-member/create
7041549010980651010,删除知识空间成员,ccm,wiki,v2,space.member,delete,此接口用于删除知识空间成员或管理员。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-member/delete,DELETE:/open-apis/wiki/v2/spaces/:space_id/members/:member_id,1,"[""isv"", ""custom""]",[],1749710136,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-member/delete
7386702252390449180,获取知识空间成员列表,ccm,wiki,v2,space.member,list,获取知识空间的成员与管理员列表。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-member/list,GET:/open-apis/wiki/v2/spaces/:space_id/members,1719849734018,"[""isv"", ""custom""]",[],1749710136,true,1,https://open.feishu.cn/document/docs/wiki-v2/space-member/list
7109718703113797635,创建知识空间节点副本,ccm,wiki,v2,space.node,copy,此接口用于在知识空间创建节点副本到指定位置。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/copy,POST:/open-apis/wiki/v2/spaces/:space_id/nodes/:node_token/copy,1,"[""isv"", ""custom""]",[],1749710137,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/copy
7023947709203873796,创建知识空间节点,ccm,wiki,v2,space.node,create,此接口用于在知识节点里创建[节点](/ssl:ttdoc/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-overview)到指定位置。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/create,POST:/open-apis/wiki/v2/spaces/:space_id/nodes,6,"[""isv"", ""custom""]",[],1749710137,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/create
7023947709203791876,获取知识空间子节点列表,ccm,wiki,v2,space.node,list,此接口用于分页获取Wiki节点的子节点列表。 此接口为分页接口。由于权限过滤,可能返回列表为空,但分页标记(has_more)为true,可以继续分页请求。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/list,GET:/open-apis/wiki/v2/spaces/:space_id/nodes,4,"[""isv"", ""custom""]",[],1755587520,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/list
7041549010980667394,移动知识空间节点,ccm,wiki,v2,space.node,move,此方法用于在Wiki内移动节点,支持跨知识空间移动。如果有子节点,会携带子节点一起移动。,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/move,POST:/open-apis/wiki/v2/spaces/:space_id/nodes/:node_token/move,3,"[""isv"", ""custom""]",[],1749710137,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/move
7023947709203808260,移动云空间文档至知识空间,ccm,wiki,v2,space.node,move_docs_to_wiki,该接口允许移动云空间文档至知识空间,并挂载在指定位置,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/move_docs_to_wiki,POST:/open-apis/wiki/v2/spaces/:space_id/nodes/move_docs_to_wiki,1652000629618,"[""isv"", ""custom""]",[],1749710138,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/task/move_docs_to_wiki
7109718703113781251,更新知识空间节点标题,ccm,wiki,v2,space.node,update_title,此接口用于更新节点标题,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-node/update_title,POST:/open-apis/wiki/v2/spaces/:space_id/nodes/:node_token/update_title,2,"[""isv"", ""custom""]",[],1749710137,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-node/update_title
7023947709203824644,更新知识空间设置,ccm,wiki,v2,space.setting,update,根据space_id更新知识空间公共设置,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/space-setting/update,PUT:/open-apis/wiki/v2/spaces/:space_id/setting,1625386530125,"[""isv"", ""custom""]",[],1749710136,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/space-setting/update
7041549010980634626,获取任务结果,ccm,wiki,v2,task,get,该方法用于获取wiki异步任务的结果,basic,true,/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/wiki-v2/task/get,GET:/open-apis/wiki/v2/tasks/:task_id,1639042997631,"[""isv"", ""custom""]",[],1749710138,true,1,https://open.feishu.cn/document/server-docs/docs/wiki-v2/task/get
7451269641491939329,创建薪资档案,compensation_management,compensation,v1,archive,create,- 该接口适用于员工入职定薪、调薪或者更正档案场景,通过创建调薪任务的方式,为员工生成对应薪资档案数据。 - 当员工在调薪生效日期存在档案数据时,则是对该档案进行更正操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/archive/create,POST:/open-apis/compensation/v1/archives,1734531365717,"[""custom""]",[],1757469687,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/archive/create
7314129756769746948,批量查询员工薪资档案,compensation_management,compensation,v1,archive,query,批量查询员工薪资档案,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/archive/query,POST:/open-apis/compensation/v1/archives/query,1702994713216,"[""custom""]",[],1737634225,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/archive/query
7314129756769730564,批量查询定调薪原因,compensation_management,compensation,v1,change_reason,list,批量查询定调薪原因,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/change_reason/list,GET:/open-apis/compensation/v1/change_reasons,1703052525570,"[""custom""]",[],1715671291,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/compensation-setting-and-adjustment/list
7314129756769796100,批量查询薪资统计指标,compensation_management,compensation,v1,indicator,list,批量查询薪资统计指标,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/indicator/list,GET:/open-apis/compensation/v1/indicators,1703052515067,"[""custom""]",[],1715671220,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/compensation-component-and-metric/list-3
7314129756769779716,批量查询薪资项,compensation_management,compensation,v1,item,list,批量查询薪资项,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/item/list,GET:/open-apis/compensation/v1/items,1709262630736,"[""custom""]",[],1715671196,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/compensation-component-and-metric/list-2
7314129756769763332,批量获取薪资项分类信息,compensation_management,compensation,v1,item_category,list,批量获取薪资项分类信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/item_category/list,GET:/open-apis/compensation/v1/item_categories,1703052494241,"[""custom""]",[],1715671243,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/compensation-component-and-metric/list
7429528484932812828,批量创建一次性支付记录,compensation_management,compensation,v1,lump_sum_payment,batch_create,通过传入的一次性支付记录数据,校验并创建一次性支付记录,并返回创建失败原因或创建成功数据的ID,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/lump_sum_payment/batch_create,POST:/open-apis/compensation/v1/lump_sum_payment/batch_create,5,"[""custom""]",[],1755603208,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/lump_sum_payment/batch_create
7430824932635197444,批量删除一次性支付记录,compensation_management,compensation,v1,lump_sum_payment,batch_remove,传入一次性支付记录ID,删除ID对应的一次性支付记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/lump_sum_payment/batch_remove,POST:/open-apis/compensation/v1/lump_sum_payment/batch_remove,1,"[""custom""]",[],1755603246,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/lump_sum_payment/batch_remove
7430824932635181060,批量更正一次性支付记录,compensation_management,compensation,v1,lump_sum_payment,batch_update,通过传入的一次性支付记录数据,校验并更正一次性支付记录,并返回更正失败原因,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/lump_sum_payment/batch_update,POST:/open-apis/compensation/v1/lump_sum_payment/batch_update,4,"[""custom""]",[],1764832032,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/lump_sum_payment/batch_update
7429528484932780060,查询一次性支付授予记录,compensation_management,compensation,v1,lump_sum_payment,query,根据筛选条件查询一次性支付授予记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/lump_sum_payment/query,POST:/open-apis/compensation/v1/lump_sum_payment/query,3,"[""custom""]",[],1755603227,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/lump_sum_payment/query
7429528484932796444,查询一次性支付授予明细,compensation_management,compensation,v1,lump_sum_payment,query_detail,根据筛选条件查询一次性授予明细,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/lump_sum_payment/query_detail,POST:/open-apis/compensation/v1/lump_sum_payment/query_detail,2,"[""custom""]",[],1755603236,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/lump_sum_payment/query_detail
7314129756769812484,批量查询薪资方案,compensation_management,compensation,v1,plan,list,- 此接口将返回全部薪资方案信息,包括薪资方案 ID、生效日期、薪资项/薪资统计指标等,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/plan/list,GET:/open-apis/compensation/v1/plans,1702994619158,"[""custom""]",[],1745981687,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/plan/list
7441804833880211460,批量创建经常性支付记录,compensation_management,compensation,v1,recurring_payment,batch_create,根据传入的参数,校验并创建经常性支付记录,返回创建失败的原因或创建成功的数据ID,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/recurring_payment/batch_create,POST:/open-apis/compensation/v1/recurring_payment/batch_create,1731585077986,"[""custom""]",[],1756369472,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/recurring_payment/batch_create
7441804833880260612,批量删除经常性支付记录,compensation_management,compensation,v1,recurring_payment,batch_remove,指定经常性支付记录ID,删除ID对应的经常性支付记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/recurring_payment/batch_remove,POST:/open-apis/compensation/v1/recurring_payment/batch_remove,1731585152656,"[""custom""]",[],1756369462,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/recurring_payment/batch_remove
7441804833880244228,批量更正经常性支付记录,compensation_management,compensation,v1,recurring_payment,batch_update,批量更正经常性支付记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/recurring_payment/batch_update,POST:/open-apis/compensation/v1/recurring_payment/batch_update,1731585207969,"[""custom""]",[],1756369453,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/recurring_payment/batch_update
7441804833880227844,查询经常性支付记录,compensation_management,compensation,v1,recurring_payment,query,通过筛选条件,批量查询经常性支付记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/recurring_payment/query,POST:/open-apis/compensation/v1/recurring_payment/query,1731585320381,"[""custom""]",[],1756369442,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/recurring_payment/query
7420038908975398914,批量获取员工参保档案,compensation_management,compensation,v1,social_archive,query,通过用户ID列表和生效日期查询,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/social_archive/query,POST:/open-apis/compensation/v1/social_archive/query,2,"[""custom""]",[],1755844202,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/social_archive/query
7420038908975382530,通过员工ID批量获取社保增减员记录,compensation_management,compensation,v1,social_archive_adjust_record,query,通过员工ID批量获取社保增减员记录,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/social_archive_adjust_record/query,POST:/open-apis/compensation/v1/social_archive_adjust_record/query,5,"[""custom""]",[],1763105443,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/social_archive/query-2
7420038908975415298,获取险种配置列表,compensation_management,compensation,v1,social_insurance,list,获取飞书人事系统中社保公积金设置下的险种配置详细列表,包括险种名称、类型等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/social_insurance/list,GET:/open-apis/compensation/v1/social_insurances,1727614332721,"[""custom""]",[],1755844153,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/social_insurance/list
7420038908975448066,根据生效日期分页查询参保方案,compensation_management,compensation,v1,social_plan,list,通过生效日期effective_date参数过滤并分页返回结果,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/social_plan/list,GET:/open-apis/compensation/v1/social_plans,1727614563429,"[""custom""]",[],1755844178,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/social_plan/list
7420038908975431682,根据方案ID和生效日期批量查询参保方案,compensation_management,compensation,v1,social_plan,query,通过plan_ids列表和effective_date联合过滤数据库中的参保方案数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/compensation-v1/social_plan/query,POST:/open-apis/compensation/v1/social_plans/query,1727614813672,"[""custom""]",[],1755844166,true,1,https://open.feishu.cn/document/corehr-v1/basic-compensation/social_plan/query
6907569742384971778,获取应用管理员管理范围,contact,contact,old,default,v1/user/admin_scope/get,该接口用于获取应用管理员的管理范围,即该应用管理员能够管理哪些部门。,none,true,/document/ukTMukTMukTM/uMzN3QjLzczN04yM3cDN,GET:/open-apis/contact/v1/user/admin_scope/get,1704368129760,"[""custom""]",[],1646131512,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/obtain-an-app-admin’s-management-permissions
6907569524101021697,批量新增部门,contact,contact,old,default,v2/department/batch_add,该接口用于向通讯录中批量新增多个部门。<br>,none,true,/document/ukTMukTMukTM/uMDOwUjLzgDM14yM4ATN,POST:/open-apis/contact/v2/department/batch_add,1608293272853,[],[],1626181320,false,1,https://open.feishu.cn/document/server-docs/historic-version//import-api/batch-add-departments
6907569744330391553,获取角色列表,contact,contact,old,default,v2/role/list,:::html,none,true,/document/ukTMukTMukTM/uYzMwUjL2MDM14iNzATN,GET:/open-apis/contact/v2/role/list,2,[],[],1639554121,false,1,https://open.feishu.cn/document/server-docs/historic-version//user/obtain-a-role-list
6907569745299816450,查询批量任务执行状态,contact,contact,old,default,v2/task/get,该接口用于查询通讯录异步任务当前的执行状态以及执行结果。<br>,none,true,/document/ukTMukTMukTM/uUDOwUjL1gDM14SN4ATN,GET:/open-apis/contact/v2/task/get,1608293272851,[],[],1626181332,false,1,https://open.feishu.cn/document/server-docs/historic-version//import-api/query-the-execution-status-of-a-batch-task
6907569743420997634,批量新增用户,contact,contact,old,default,v2/user/batch_add,该接口用于向通讯录中批量新增多个用户。<br>,none,true,/document/ukTMukTMukTM/uIDOwUjLygDM14iM4ATN,POST:/open-apis/contact/v2/user/batch_add,1608293272852,[],[],1626181326,false,1,https://open.feishu.cn/document/server-docs/historic-version//import-api/batch-add-users
6986108081861476354,获取企业自定义用户字段,contact,contact,v3,custom_attr,list,调用该接口查询当前企业内自定义用户字段的配置信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/custom_attr/list,GET:/open-apis/contact/v3/custom_attrs,2,"[""isv"", ""custom""]",[],1756451345,false,1,https://open.feishu.cn/document/server-docs/contact-v3/custom_attr/list
7243624444425519132,批量获取部门信息,contact,contact,v3,department,batch,调用该接口获取一个或多个部门的信息,包括部门名称、ID、父部门、负责人、状态以及成员个数等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/batch,GET:/open-apis/contact/v3/departments/batch,6,"[""isv"", ""custom""]",[],1726817427,false,1,https://open.feishu.cn/document/contact-v3/department/batch
7033365649318805532,获取子部门列表,contact,contact,v3,department,children,调用该接口查询指定部门下的子部门列表,列表内包含部门的名称、ID、父部门、负责人以及状态等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/children,GET:/open-apis/contact/v3/departments/:department_id/children,5,"[""isv"", ""custom""]",[],1726817428,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/children
6943913881476857883,创建部门,contact,contact,v3,department,create,调用该接口在通讯录内创建一个部门。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/create,POST:/open-apis/contact/v3/departments,12,"[""custom""]",[],1731554781,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/create
6943913881477005339,删除部门,contact,contact,v3,department,delete,调用该接口从通讯录中删除指定的部门。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/delete,DELETE:/open-apis/contact/v3/departments/:department_id,2,"[""custom""]",[],1720167074,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/delete
6943913881476988955,获取单个部门信息,contact,contact,v3,department,get,调用该接口获取单个部门信息,包括部门名称、ID、父部门、负责人、状态以及成员个数等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/get,GET:/open-apis/contact/v3/departments/:department_id,7,"[""isv"", ""custom""]",[],1720167075,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/get
6943913881476972571,获取部门信息列表,contact,contact,v3,department,list,该接口用于获取当前部门子部门列表。[常见问题答疑](/ssl:ttdoc/ugTN1YjL4UTN24CO1UjN/uQzN1YjL0cTN24CN3UjN)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/list,GET:/open-apis/contact/v3/departments,7,"[""isv"", ""custom""]",[],1722582805,false,1,https://open.feishu.cn/document/server-docs/historic-version//department/list
6943913881476775963,获取父部门信息,contact,contact,v3,department,parent,调用该接口递归获取指定部门的父部门信息,包括部门名称、ID、负责人以及状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/parent,GET:/open-apis/contact/v3/departments/parent,4,"[""isv"", ""custom""]",[],1726817428,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/parent
6943913881476923419,修改部门部分信息,contact,contact,v3,department,patch,调用该接口更新指定部门的部分信息,包括名称、父部门、排序以及负责人等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/patch,PATCH:/open-apis/contact/v3/departments/:department_id,11,"[""custom""]",[],1747194460,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/patch
6943913881476841499,搜索部门,contact,contact,v3,department,search,调用该接口以用户身份通过部门名称关键词查询可见部门的信息,包括部门的 ID、父部门、负责人以及状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/search,POST:/open-apis/contact/v3/departments/search,3,"[""isv"", ""custom""]",[],1726817428,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/search
7069758645957836801,部门群转为普通群,contact,contact,v3,department,unbind_department_chat,调用该接口将指定部门的部门群转为普通群。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/unbind_department_chat,POST:/open-apis/contact/v3/departments/unbind_department_chat,8,"[""custom""]",[],1720167075,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/unbind_department_chat
6943913881477021723,更新部门所有信息,contact,contact,v3,department,update,调用该接口更新指定部门的信息,包括名称、父部门以及负责人等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/update,PUT:/open-apis/contact/v3/departments/:department_id,10,"[""custom""]",[],1747194461,false,1,https://open.feishu.cn/document/server-docs/contact-v3/department/update
7257363132833546242,更新部门 ID,contact,contact,v3,department,update_department_id,调用该接口可以更新部门的自定义 ID,即 department_id。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/department/update_department_id,PATCH:/open-apis/contact/v3/departments/:department_id/update_department_id,9,"[""custom""]",[],1720167100,false,1,https://open.feishu.cn/document/contact-v3/department/update_department_id
6985055606752575516,新增人员类型,contact,contact,v3,employee_type_enum,create,调用该接口新增一个自定义的人员类型。人员类型是用户属性之一,用于灵活标记用户的身份类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/employee_type_enum/create,POST:/open-apis/contact/v3/employee_type_enums,5,"[""custom""]",[],1720166959,false,1,https://open.feishu.cn/document/server-docs/contact-v3/employee_type_enum/create
6985055606752477212,删除人员类型,contact,contact,v3,employee_type_enum,delete,调用该接口删除指定的自定义人员类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/employee_type_enum/delete,DELETE:/open-apis/contact/v3/employee_type_enums/:enum_id,2,"[""custom""]",[],1720166959,false,1,https://open.feishu.cn/document/server-docs/contact-v3/employee_type_enum/delete
6985055606752559132,查询人员类型,contact,contact,v3,employee_type_enum,list,调用该接口查询当前租户下所有的人员类型信息,包括选项 ID、类型、编号以及内容等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/employee_type_enum/list,GET:/open-apis/contact/v3/employee_type_enums,3,"[""isv"", ""custom""]",[],1720166960,false,1,https://open.feishu.cn/document/server-docs/contact-v3/employee_type_enum/list
6985055606752460828,更新人员类型,contact,contact,v3,employee_type_enum,update,调用该接口更新指定的自定义人员类型信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/employee_type_enum/update,PUT:/open-apis/contact/v3/employee_type_enums/:enum_id,4,"[""custom""]",[],1720166959,false,1,https://open.feishu.cn/document/server-docs/contact-v3/employee_type_enum/update
7200215886841135132,创建角色,contact,contact,v3,functional_role,create,调用该接口创建一个角色。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role/create,POST:/open-apis/contact/v3/functional_roles,3,"[""custom""]",[],1720167427,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role/create
7200215886841020444,删除角色,contact,contact,v3,functional_role,delete,调用该接口删除指定角色。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role/delete,DELETE:/open-apis/contact/v3/functional_roles/:role_id,1,"[""custom""]",[],1720167427,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role/delete
7200215886841085980,修改角色名称,contact,contact,v3,functional_role,update,调用本接口修改指定角色的角色名称。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role/update,PUT:/open-apis/contact/v3/functional_roles/:role_id,2,"[""custom""]",[],1720167427,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role/update
7200215886841053212,批量添加角色成员,contact,contact,v3,functional_role.member,batch_create,调用该接口在指定角色内添加一个或多个成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role-member/batch_create,POST:/open-apis/contact/v3/functional_roles/:role_id/members/batch_create,5,"[""custom""]",[],1720167459,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role-member/batch_create
7200215886841102364,删除角色下的成员,contact,contact,v3,functional_role.member,batch_delete,调用该接口在指定角色内删除一个或多个成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role-member/batch_delete,PATCH:/open-apis/contact/v3/functional_roles/:role_id/members/batch_delete,1,"[""custom""]",[],1720167459,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role-member/batch_delete
7200215886841069596,查询角色下某个成员的管理范围,contact,contact,v3,functional_role.member,get,调用本接口查询指定角色内的指定成员的管理范围。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role-member/get,GET:/open-apis/contact/v3/functional_roles/:role_id/members/:member_id,3,"[""custom""]",[],1720167459,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role-member/get
7200215886840987676,查询角色下的所有成员信息,contact,contact,v3,functional_role.member,list,调用本接口查询指定角色内的所有成员信息,包括成员的用户 ID、管理范围。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role-member/list,GET:/open-apis/contact/v3/functional_roles/:role_id/members,2,"[""custom""]",[],1720167459,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role-member/list
7200215886841118748,批量设置角色成员管理范围,contact,contact,v3,functional_role.member,scopes,调用该接口为指定角色内的一个或多个角色成员设置管理范围。管理范围是指角色成员可以管理的部门范围。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/functional_role-member/scopes,PATCH:/open-apis/contact/v3/functional_roles/:role_id/members/scopes,4,"[""custom""]",[],1720167459,false,1,https://open.feishu.cn/document/server-docs/contact-v3/functional_role-member/scopes
7008085931593089027,创建用户组,contact,contact,v3,group,create,调用该接口创建一个用户组。用户组是飞书通讯录中基础实体之一,在用户组内可添加用户或部门资源。各类业务权限管控可以与用户组关联,从而实现高效便捷的成员权限管控。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/create,POST:/open-apis/contact/v3/group,6,"[""custom""]",[],1720166882,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/create
7008085931593105411,删除用户组,contact,contact,v3,group,delete,调用该接口删除指定用户组。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/delete,DELETE:/open-apis/contact/v3/group/:group_id,1,"[""custom""]",[],1720166882,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/delete
7008085931593023491,查询指定用户组,contact,contact,v3,group,get,调用该接口通过用户组 ID 查询指定用户组的基本信息,包括用户组名称、成员数量和类型等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/get,GET:/open-apis/contact/v3/group/:group_id,4,"[""isv"", ""custom""]",[],1720166883,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/get
7106501358249885699,查询用户所属用户组,contact,contact,v3,group,member_belong,调用该接口查询指定用户所属的用户组列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/member_belong,GET:/open-apis/contact/v3/group/member_belong,2,"[""isv"", ""custom""]",[],1726297244,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/member_belong
7008085931593007107,更新用户组,contact,contact,v3,group,patch,调用该接口更新指定用户组的名称或描述。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/patch,PATCH:/open-apis/contact/v3/group/:group_id,5,"[""custom""]",[],1720166883,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/patch
7008085931593039875,查询用户组列表,contact,contact,v3,group,simplelist,调用该接口查询当前租户下的用户组列表,列表内包含用户组的 ID、名字、成员数量和类型等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group/simplelist,GET:/open-apis/contact/v3/group/simplelist,3,"[""isv"", ""custom""]",[],1720166883,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group/simplelist
7008085931593056259,添加用户组成员,contact,contact,v3,group.member,add,调用该接口向指定的普通用户组内添加成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group-member/add,POST:/open-apis/contact/v3/group/:group_id/member/add,5,"[""custom""]",[],1726297244,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group-member/add
7106501358249852931,批量添加用户组成员,contact,contact,v3,group.member,batch_add,调用该接口向指定的普通用户组内添加一个或多个成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group-member/batch_add,POST:/open-apis/contact/v3/group/:group_id/member/batch_add,4,"[""custom""]",[],1754568414,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group-member/batch_add
7106501358249869315,批量移除用户组成员,contact,contact,v3,group.member,batch_remove,调用该接口从指定普通用户组内移除一个或多个成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group-member/batch_remove,POST:/open-apis/contact/v3/group/:group_id/member/batch_remove,1,"[""custom""]",[],1726297245,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group-member/batch_remove
7008085931593138179,移除用户组成员,contact,contact,v3,group.member,remove,调用该接口移除指定普通用户组内的某一成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group-member/remove,POST:/open-apis/contact/v3/group/:group_id/member/remove,2,"[""custom""]",[],1726297245,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group-member/remove
7008085931593072643,查询用户组成员列表,contact,contact,v3,group.member,simplelist,调用该接口查询指定用户组内的成员列表,列表内主要包括成员 ID 信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/group-member/simplelist,GET:/open-apis/contact/v3/group/:group_id/member/simplelist,3,"[""isv"", ""custom""]",[],1720167021,false,1,https://open.feishu.cn/document/server-docs/contact-v3/group-member/simplelist
7194273514093412356,创建序列,contact,contact,v3,job_family,create,调用该接口创建一个序列。序列是用户属性之一,用来定义用户的工作类型,例如产品、研发、运营等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_family/create,POST:/open-apis/contact/v3/job_families,5,"[""custom""]",[],1720167723,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_family/create
7194273514093428740,删除序列,contact,contact,v3,job_family,delete,调用该接口删除指定序列。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_family/delete,DELETE:/open-apis/contact/v3/job_families/:job_family_id,1,"[""custom""]",[],1720167724,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_family/delete
7194273512282456068,获取单个序列信息,contact,contact,v3,job_family,get,调用该接口获取指定序列的信息,包括序列的名称、描述、启用状态以及 ID 等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_family/get,GET:/open-apis/contact/v3/job_families/:job_family_id,3,"[""isv"", ""custom""]",[],1720167724,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_family/get
7194273514093395972,获取租户序列列表,contact,contact,v3,job_family,list,调用该接口获取当前租户下的序列信息,包含序列的名称、描述、启用状态以及 ID 等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_family/list,GET:/open-apis/contact/v3/job_families,2,"[""isv"", ""custom""]",[],1720167724,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_family/list
7194273512282406916,更新序列,contact,contact,v3,job_family,update,调用该接口更新指定序列的信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_family/update,PUT:/open-apis/contact/v3/job_families/:job_family_id,4,"[""custom""]",[],1720167724,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_family/update
7194273512282423300,创建职级,contact,contact,v3,job_level,create,调用该接口创建一个职级。职级是用户属性之一,用于标识用户的职位级别,例如 P1、P2、P3、P4。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_level/create,POST:/open-apis/contact/v3/job_levels,5,"[""custom""]",[],1720167691,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_level/create
7194273512282390532,删除职级,contact,contact,v3,job_level,delete,调用该接口删除指定的职级。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_level/delete,DELETE:/open-apis/contact/v3/job_levels/:job_level_id,1,"[""custom""]",[],1720167692,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_level/delete
7194273512282472452,获取单个职级信息,contact,contact,v3,job_level,get,调用该接口获取指定职级的信息,包括职级名称、描述、排序、状态以及多语言等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_level/get,GET:/open-apis/contact/v3/job_levels/:job_level_id,3,"[""isv"", ""custom""]",[],1720167692,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_level/get
7194273514093379588,获取租户职级列表,contact,contact,v3,job_level,list,调用该接口获取当前租户下的职级信息,包括职级名称、描述、排序、状态以及多语言等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_level/list,GET:/open-apis/contact/v3/job_levels,2,"[""isv"", ""custom""]",[],1720167692,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_level/list
7194273512282439684,更新职级,contact,contact,v3,job_level,update,调用该接口更新指定职级的信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_level/update,PUT:/open-apis/contact/v3/job_levels/:job_level_id,4,"[""custom""]",[],1720167692,false,1,https://open.feishu.cn/document/server-docs/contact-v3/job_level/update
7256700963174989828,获取单个职务信息,contact,contact,v3,job_title,get,调用该接口获取指定职务的信息,包括职务的 ID、名称、多语言名称以及启用状态。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_title/get,GET:/open-apis/contact/v3/job_titles/:job_title_id,2,"[""isv"", ""custom""]",[],1720167817,false,1,https://open.feishu.cn/document/contact-v3/job_title/get
7256700963175006212,获取租户职务列表,contact,contact,v3,job_title,list,调用该接口获取当前租户下的职务信息,包括职务的 ID、名称、多语言名称以及启用状态。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/job_title/list,GET:/open-apis/contact/v3/job_titles,1,"[""isv"", ""custom""]",[],1720167829,false,1,https://open.feishu.cn/document/contact-v3/job_title/list
7026591401610543108,获取通讯录授权范围,contact,contact,v3,scope,list,调用该接口获取当前应用被授权可访问的通讯录范围,包括可访问的部门列表、用户列表和用户组列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/scope/list,GET:/open-apis/contact/v3/scopes,2,"[""isv"", ""custom""]",[],1720168017,false,1,https://open.feishu.cn/document/server-docs/contact-v3/scope/list
7023995901275324419,建立部门与单位的绑定关系,contact,contact,v3,unit,bind_department,调用该接口建立部门与单位的绑定关系。一个部门同时只能绑定一个单位。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/bind_department,POST:/open-apis/contact/v3/unit/bind_department,6,"[""custom""]",[],1720167377,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/bind_department
7023995901275242499,创建单位,contact,contact,v3,unit,create,调用该接口创建一个单位。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/create,POST:/open-apis/contact/v3/unit,8,"[""custom""]",[],1720167377,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/create
7023995901275275267,删除单位,contact,contact,v3,unit,delete,调用该接口删除指定单位。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/delete,DELETE:/open-apis/contact/v3/unit/:unit_id,1,"[""custom""]",[],1720167377,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/delete
7023995901275291651,获取单位信息,contact,contact,v3,unit,get,调用该接口获取指定单位的信息,包括单位 ID、名字、类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/get,GET:/open-apis/contact/v3/unit/:unit_id,3,"[""custom""]",[],1720167378,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/get
7023995901275308035,获取单位列表,contact,contact,v3,unit,list,调用该接口获取当前租户内的单位列表。列表内主要包含各单位的 ID、名字、类型信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/list,GET:/open-apis/contact/v3/unit,2,"[""custom""]",[],1720167378,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/list
7023995901275357187,获取单位绑定的部门列表,contact,contact,v3,unit,list_department,调用该接口获取指定单位绑定的部门列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/list_department,GET:/open-apis/contact/v3/unit/list_department,4,"[""custom""]",[],1720167378,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/list_department
7023995901275258883,修改单位信息,contact,contact,v3,unit,patch,调用该接口修改指定单位的名字。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/patch,PATCH:/open-apis/contact/v3/unit/:unit_id,7,"[""custom""]",[],1720167377,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/patch
7023995901275340803,解除部门与单位的绑定关系,contact,contact,v3,unit,unbind_department,调用该接口解除部门与单位的绑定关系。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/unit/unbind_department,POST:/open-apis/contact/v3/unit/unbind_department,5,"[""custom""]",[],1720167377,false,1,https://open.feishu.cn/document/server-docs/contact-v3/unit/unbind_department
7243624444425502748,批量获取用户信息,contact,contact,v3,user,batch,调用该接口获取通讯录内一个或多个用户的信息,包括用户 ID、名称、邮箱、手机号、状态以及所属部门等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/batch,GET:/open-apis/contact/v3/users/batch,7,"[""isv"", ""custom""]",[],1752559901,false,1,https://open.feishu.cn/document/contact-v3/user/batch
7026591401610526724,通过手机号或邮箱获取用户 ID,contact,contact,v3,user,batch_get_id,调用该接口通过手机号或邮箱获取一个或多个用户的 ID (包括 user_id、open_id、union_id)与状态信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/batch_get_id,POST:/open-apis/contact/v3/users/batch_get_id,5,"[""isv"", ""custom""]",[],1720166718,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/batch_get_id
6943913881476939803,创建用户,contact,contact,v3,user,create,调用该接口向通讯录创建一个用户(该动作可以理解为员工入职)。成功创建用户后,系统会以短信或邮件的形式向用户发送邀请,用户在同意邀请后方可访问企业或团队。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/create,POST:/open-apis/contact/v3/users,11,"[""custom""]",[],1748337476,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/create
6943913881476907035,删除用户,contact,contact,v3,user,delete,调用该接口从通讯录内删除一个指定用户(该动作可以理解为员工离职),删除时可通过请求参数将用户所有的群组、文档、日程和应用等数据转让至他人。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/delete,DELETE:/open-apis/contact/v3/users/:user_id,3,"[""custom""]",[],1732262967,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/delete
7033365649318789148,获取部门直属用户列表,contact,contact,v3,user,find_by_department,调用该接口获取指定部门直属的用户信息列表。用户信息包括用户 ID、名称、邮箱、手机号以及状态等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/find_by_department,GET:/open-apis/contact/v3/users/find_by_department,6,"[""isv"", ""custom""]",[],1729664725,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/find_by_department
6943913881476956187,获取单个用户信息,contact,contact,v3,user,get,调用该接口获取通讯录中某一用户的信息,包括用户 ID、名称、邮箱、手机号、状态以及所属部门等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/get,GET:/open-apis/contact/v3/users/:user_id,8,"[""isv"", ""custom""]",[],1753076517,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/get
6943913881476874267,获取用户列表,contact,contact,v3,user,list,基于部门ID获取部门下直属用户列表。 [常见问题答疑](/ssl:ttdoc/ugTN1YjL4UTN24CO1UjN/uQzN1YjL0cTN24CN3UjN)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/list,GET:/open-apis/contact/v3/users,4,"[""isv"", ""custom""]",[],1723606526,false,1,https://open.feishu.cn/document/server-docs/historic-version//user/list
6943913881476792347,修改用户部分信息,contact,contact,v3,user,patch,调用该接口更新通讯录中指定用户的信息,包括名称、邮箱、手机号、所属部门以及自定义字段等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/patch,PATCH:/open-apis/contact/v3/users/:user_id,10,"[""custom""]",[],1763637686,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/patch
7122710137048399875,恢复已删除用户,contact,contact,v3,user,resurrect,该接口用于恢复已删除用户(已离职的成员)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/resurrect,POST:/open-apis/contact/v3/users/:user_id/resurrect,2,"[""custom""]",[],1745995153,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/resurrect
6943913881476808731,更新用户所有信息,contact,contact,v3,user,update,该接口用于更新通讯录中用户的字段。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/update,PUT:/open-apis/contact/v3/users/:user_id,1,"[""custom""]",[],1723606526,false,1,https://open.feishu.cn/document/server-docs/historic-version//user/update
7257363132833300482,更新用户 ID,contact,contact,v3,user,update_user_id,调用该接口更新用户的 user_id。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/user/update_user_id,PATCH:/open-apis/contact/v3/users/:user_id/update_user_id,9,"[""custom""]",[],1720166743,false,1,https://open.feishu.cn/document/contact-v3/user/update_user_id
7256700963175022596,获取单个工作城市信息,contact,contact,v3,work_city,get,调用该接口获取指定工作城市的信息,包括工作城市的 ID、名称、多语言名称以及启用状态。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/work_city/get,GET:/open-apis/contact/v3/work_cities/:work_city_id,2,"[""isv"", ""custom""]",[],1720167908,false,1,https://open.feishu.cn/document/contact-v3/work_city/get
7256700963175038980,获取租户工作城市列表,contact,contact,v3,work_city,list,调用该接口获取当前租户下所有工作城市信息,包括工作城市的 ID、名称、多语言名称以及启用状态。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/contact-v3/work_city/list,GET:/open-apis/contact/v3/work_cities,1,"[""isv"", ""custom""]",[],1720167930,false,1,https://open.feishu.cn/document/contact-v3/work_city/list
6907569524100349953,搜索用户,contact,contact_search,old,default,v1/user,通过用户名关键词搜索其他用户的信息,包括用户头像、用户名、用户所在部门、用户 user_id 以及 open_id。,none,true,/document/ukTMukTMukTM/uMTM4UjLzEDO14yMxgTN,GET:/open-apis/search/v1/user,4,"[""isv"", ""custom""]",[],1744859589,false,1,https://open.feishu.cn/document/server-docs/contact-v3/user/search-users
6907569523177406465,查询应用管理员列表,contact,contact_user,old,default,v4/app_admin_user/list,查询审核应用的管理员列表,返回最新10个管理员账户id列表。,none,true,/document/ukTMukTMukTM/ucDOwYjL3gDM24yN4AjN,GET:/open-apis/user/v4/app_admin_user/list,1704368144750,"[""isv"", ""custom""]",[],1660049326,false,1,https://open.feishu.cn/document/server-docs/application-v6/admin/query-app-administrator-list
7442539768884723740,新增可搜可见规则,directory,directory,v1,collaboration_rule,create,管理员视角新增可搜可见规则。用户需具备关联组织管理员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_rule/create,POST:/open-apis/directory/v1/collaboration_rules,4,"[""custom""]",[],1745918543,true,1,https://open.feishu.cn/document/trust_party-v1/searchable-and-visible-rules/create
7442539768884576284,删除可搜可见规则,directory,directory,v1,collaboration_rule,delete,管理员视角删除可搜可见规则。用户需具备关联组织管理员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_rule/delete,DELETE:/open-apis/directory/v1/collaboration_rules/:collaboration_rule_id,1,"[""custom""]",[],1745918579,true,1,https://open.feishu.cn/document/trust_party-v1/searchable-and-visible-rules/delete
7442539768884543516,查询可搜可见规则,directory,directory,v1,collaboration_rule,list,管理员视角查询可搜可见规则。用户需具备关联组织管理员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_rule/list,GET:/open-apis/directory/v1/collaboration_rules,2,"[""custom""]",[],1745918567,true,1,https://open.feishu.cn/document/trust_party-v1/searchable-and-visible-rules/list
7442539768884559900,更新可搜可见规则,directory,directory,v1,collaboration_rule,update,管理员视角更新可搜可见规则。用户需具备关联组织管理员权限。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_rule/update,PUT:/open-apis/directory/v1/collaboration_rules/:collaboration_rule_id,3,"[""custom""]",[],1745918555,true,1,https://open.feishu.cn/document/trust_party-v1/searchable-and-visible-rules/update
7442539768884592668,管理员获取所有关联组织列表,directory,directory,v1,collaboration_tenant,list,在创建规则时,需要知道对方组织的tenant key,可通过该接口获取有效的tenant key。只允许关联组织管理员权限调用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_tenant/list,GET:/open-apis/directory/v1/collaboration_tenants,1,"[""custom""]",[],1745918530,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/list-2
7442539768884609052,获取关联组织双方共享成员范围,directory,directory,v1,collaboration_share_entity,list,在创建规则时,需要获取本组织以及对方组织人员、部门和用户组的ID,且这些实体都应该在关联组织的共享范围内。本接口可获取关联组织双方的共享范围下的人员、部门和用户组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/collaboration_share_entity/list,GET:/open-apis/directory/v1/share_entities,2,"[""custom""]",[],1745918518,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/list-3
7359428154233536516,创建部门,directory,directory,v1,department,create,本接口用于用于在企业通讯录中创建新部门,支持设置部门名称、父部门、负责人等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/create,POST:/open-apis/directory/v1/departments,8,"[""custom""]",[],1752138940,true,1,https://open.feishu.cn/document/directory-v1/department/create
7359428154233487364,删除部门,directory,directory,v1,department,delete,本接口用于删除部门。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/delete,DELETE:/open-apis/directory/v1/departments/:department_id,6,"[""custom""]",[],1749798775,true,1,https://open.feishu.cn/document/directory-v1/department/delete
7359428154233700356,获取部门列表,directory,directory,v1,department,filter,本接口用于依据指定条件,批量获取符合条件的部门详情列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/filter,POST:/open-apis/directory/v1/departments/filter,4,"[""isv"", ""custom""]",[],1752138978,true,1,https://open.feishu.cn/document/directory-v1/department/filter
7359428234122854404,批量获取部门信息,directory,directory,v1,department,mget,该接口支持传入多个部门ID,返回每个部门的详细信息(如名称、负责人、子部门等)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/mget,POST:/open-apis/directory/v1/departments/mget,5,"[""isv"", ""custom""]",[],1752138965,true,1,https://open.feishu.cn/document/directory-v1/department/mget
7359428154233552900,更新部门,directory,directory,v1,department,patch,本接口用于更新部门信息。仅更新显式传参的部分。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/patch,PATCH:/open-apis/directory/v1/departments/:department_id,7,"[""custom""]",[],1755681173,true,1,https://open.feishu.cn/document/directory-v1/department/patch
7359428154233569284,搜索部门,directory,directory,v1,department,search,本接口用于搜索部门信息,通过部门名称等关键词搜索部门信息,返回符合条件的部门列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/department/search,POST:/open-apis/directory/v1/departments/search,3,"[""isv"", ""custom""]",[],1752138991,true,1,https://open.feishu.cn/document/directory-v1/department/search
7359428154233651204,创建员工,directory,directory,v1,employee,create,本接口用于在企业下创建员工。支持传入姓名、手机号等信息,生成在职状态的员工对象。 员工指飞书企业内身份为「Employee」的成员,等同于通讯录OpenAPI中的「User」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/create,POST:/open-apis/directory/v1/employees,11,"[""custom""]",[],1759976518,true,1,https://open.feishu.cn/document/directory-v1/employee/create
7359428154233602052,离职员工,directory,directory,v1,employee,delete,本接口用于离职员工。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/delete,DELETE:/open-apis/directory/v1/employees/:employee_id,9,"[""custom""]",[],1749798577,true,1,https://open.feishu.cn/document/directory-v1/employee/delete
7359428154233683972,批量获取员工列表,directory,directory,v1,employee,filter,本接口用于依据指定条件,批量获取符合条件的员工详情列表。 员工指飞书企业内身份为「Employee」的成员,等同于通讯录OpenAPI中的「User」,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/filter,POST:/open-apis/directory/v1/employees/filter,4,"[""isv"", ""custom""]",[],1752138915,true,1,https://open.feishu.cn/document/directory-v1/employee/filter
7359428154233520132,批量获取员工信息,directory,directory,v1,employee,mget,本接口用于批量根据员工的ID查询员工的详情,比如员工姓名,手机号,邮箱,部门等信息。 员工指飞书企业内身份为「Employee」的成员,等同于通讯录OpenAPI中的「User」,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/mget,POST:/open-apis/directory/v1/employees/mget,5,"[""isv"", ""custom""]",[],1752138902,true,1,https://open.feishu.cn/document/directory-v1/employee/mget
7359428154233667588,更新员工信息,directory,directory,v1,employee,patch,本接口用于更新在职/离职员工的信息、冻结/恢复员工。未传递的参数不会进行更新。 员工指飞书企业内身份为「Employee」的成员,等同于通讯录OpenAPI中的「User」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/patch,PATCH:/open-apis/directory/v1/employees/:employee_id,10,"[""custom""]",[],1759976529,true,1,https://open.feishu.cn/document/directory-v1/employee/patch
7390661486131691522,更新待离职成员为在职,directory,directory,v1,employee,regular,本接口用于为待离职员工取消离职,将其更新为「在职」状态。取消离职时会清空离职信息。 使用user_access_token时默认为管理员用户,仅可操作「人事管理模式」的管理员可操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/regular,PATCH:/open-apis/directory/v1/employees/:employee_id/regular,6,"[""custom""]",[],1749798652,true,1,https://open.feishu.cn/document/directory-v1/employee/regular
7359428234122821636,恢复离职员工,directory,directory,v1,employee,resurrect,该接口用于恢复已离职的成员,恢复已离职成员至在职状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/resurrect,POST:/open-apis/directory/v1/employees/:employee_id/resurrect,8,"[""custom""]",[],1752138889,true,1,https://open.feishu.cn/document/directory-v1/employee/resurrect
7359428154233618436,搜索员工信息,directory,directory,v1,employee,search,本接口用于搜索员工信息,如通过关键词搜索员工的名称、手机号、邮箱等信息。 员工指飞书企业内身份为「Employee」的成员,等同于通讯录OpenAPI中的「User」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/search,POST:/open-apis/directory/v1/employees/search,3,"[""isv"", ""custom""]",[],1755680059,true,1,https://open.feishu.cn/document/directory-v1/employee/search
7390661486131707906,更新在职员工为待离职,directory,directory,v1,employee,to_be_resigned,本接口用于为在职员工办理离职,将其更新为「待离职」状态。「待离职」员工不会自动离职,需要使用「离职员工」API操作离职和资源转交。 使用user_access_token时默认为管理员用户,仅「人事管理模式」的管理员可操作。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/directory-v1/employee/to_be_resigned,PATCH:/open-apis/directory/v1/employees/:employee_id/to_be_resigned,7,"[""custom""]",[],1749798627,true,1,https://open.feishu.cn/document/directory-v1/employee/to_be_resigned
6948366696944664579,下载人员的附件,ehr,ehr,v1,attachment,get,根据文件 token 下载文件。,none,true,/document/uAjLw4CM/ukTMukTMukTM/ehr/ehr-v1/attachment/get,GET:/open-apis/ehr/v1/attachments/:token,3,"[""custom""]",[],1671763327,false,1,https://open.feishu.cn/document/server-docs/ehr-v1/get
6948366696944648195,批量获取员工花名册信息,ehr,ehr,v1,employee,list,根据员工飞书用户 ID / 员工状态 / 雇员类型等搜索条件 ,批量获取员工花名册字段信息。字段包括「系统标准字段 / system_fields」和「自定义字段 / custom_fields」。,none,true,/document/uAjLw4CM/ukTMukTMukTM/ehr/ehr-v1/employee/list,GET:/open-apis/ehr/v1/employees,4,"[""custom""]",[],1734660749,false,1,https://open.feishu.cn/document/server-docs/ehr-v1/list
7083805115594227714,获取事件出口 IP,event,event,v1,outbound_ip,list,飞书开放平台向应用配置的回调地址推送事件时,是通过特定的 IP 发送出去的,应用可以通过本接口获取所有相关的 IP 地址。,none,true,/document/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-v1/outbound_ip/list,GET:/open-apis/event/v1/outbound_ip,3,"[""isv"", ""custom""]",[],1699517001,false,1,https://open.feishu.cn/document/server-docs/event-subscription-guide/list
7141207412454998019,获取组织类角色授权列表,feishu_people,corehr,v1,assigned_user,search,查询组织类角色的授权信息,返回的授权列表中包含被授权的用户ID和被授权的管理维度等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/assigned_user/search,POST:/open-apis/corehr/v1/assigned_users/search,5,"[""isv"", ""custom""]",[],1734434037,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/authorization/search
7361618338575794204,为用户授权角色,feishu_people,corehr,v1,authorization,add_role_assign,为用户授权角色及管理范围 对已被授权某个角色的用户继续授权,将在原授权的数据范围基础上追加数据范围。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/add_role_assign,POST:/open-apis/corehr/v1/authorizations/add_role_assign,12,"[""custom""]",[],1734433994,false,1,https://open.feishu.cn/document/corehr-v1/authorization/add_role_assign
7372022997609922562,查询单个用户授权,feishu_people,corehr,v1,authorization,get_by_param,查询[飞书人事管理后台](https://people.feishu.cn/people/)里 -「设置」-「权限设置」中的单个用户授权信息。授权信息中包括员工ID、被授权的角色等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/get_by_param,GET:/open-apis/corehr/v1/authorizations/get_by_param,14,"[""isv"", ""custom""]",[],1754968231,false,1,https://open.feishu.cn/document/corehr-v1/authorization/get_by_param
7372022997609906178,批量查询用户授权,feishu_people,corehr,v1,authorization,query,批量查询[飞书人事管理后台](https://people.feishu.cn/people/) -「设置」-「权限设置」中的用户授权信息。授权列表信息中包括员工ID、被授权的角色等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/query,GET:/open-apis/corehr/v1/authorizations/query,15,"[""isv"", ""custom""]",[],1754968240,false,1,https://open.feishu.cn/document/corehr-v1/authorization/query-2
7361618338575777820,移除用户被授权的角色,feishu_people,corehr,v1,authorization,remove_role_assign,移除用户被授权的指定角色及授权范围,已经存在授权可通过[查询单个用户授权](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/get_by_param)获得。或者在[飞书人事管理后台](https://people.feishu.cn/people/)里 -「设置」-「权限设置」中的查看已有用户授权信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/remove_role_assign,POST:/open-apis/corehr/v1/authorizations/remove_role_assign,10,"[""custom""]",[],1748430523,false,1,https://open.feishu.cn/document/corehr-v1/authorization/remove_role_assign
7361618338575810588,更新用户被授权的数据范围,feishu_people,corehr,v1,authorization,update_role_assign,更新角色被授权的管理范围 更新后的数据范围,以本次提交的数据范围为准,本次未提交的部分将被移除。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/authorization/update_role_assign,POST:/open-apis/corehr/v1/authorizations/update_role_assign,11,"[""custom""]",[],1734434015,false,1,https://open.feishu.cn/document/corehr-v1/authorization/update_role_assign
7338765273649348612,ID 转换,feishu_people,corehr,v1,common_data.id,convert,该接口用来进行飞书人事和飞书通讯录、people admin 的各种 ID 转换(仅适用于飞书人事新链路租户),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/common_data-id/convert,POST:/open-apis/corehr/v1/common_data/id/convert,1706841991774,"[""custom""]",[],1714300114,false,1,https://open.feishu.cn/document/corehr-v1/common_data-id/convert
7385867895124344836,增加字段枚举值选项,feishu_people,corehr,v1,common_data.meta_data,add_enum_option,对于当前已有的所有自定义枚举字段,以及部分系统预置枚举字段,通过本接口可在字段中批量新增可选项,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/common_data-meta_data/add_enum_option,POST:/open-apis/corehr/v1/common_data/meta_data/add_enum_option,3,"[""custom""]",[],1726138256,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/custom_field/add_enum_option
7385867895124328452,修改字段枚举值选项,feishu_people,corehr,v1,common_data.meta_data,edit_enum_option,对于当前已有的所有自定义枚举字段,以及部分系统预置枚举字段,通过本接口可修改字段中已有可选项的展示名称、停启用状态,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/common_data-meta_data/edit_enum_option,POST:/open-apis/corehr/v1/common_data/meta_data/edit_enum_option,2,"[""custom""]",[],1726138279,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/custom_field/edit_enum_option
7072977358001389570,创建公司,feishu_people,corehr,v1,company,create,支持在单个接口中进行公司信息添加,包括公司基本信息、注册地址信息、工作地址信息等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/company/create,POST:/open-apis/corehr/v1/companies,11,"[""custom""]",[],1765434787,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/company/create
7072977288456126492,删除公司,feishu_people,corehr,v1,company,delete,删除公司,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/company/delete,DELETE:/open-apis/corehr/v1/companies/:company_id,1,"[""custom""]",[],1725847683,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/company/delete
7017694651621867524,查询单个公司,feishu_people,corehr,v1,company,get,根据 ID 查询单个公司。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/company/get,GET:/open-apis/corehr/v1/companies/:company_id,7,"[""isv"", ""custom""]",[],1756434456,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/company/get
7017707615191105539,批量查询公司,feishu_people,corehr,v1,company,list,分页查询公司,可分页遍历全量公司数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/company/list,GET:/open-apis/corehr/v1/companies,6,"[""isv"", ""custom""]",[],1756434457,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/company/list
7309323790810824705,更新公司,feishu_people,corehr,v1,company,patch,更新公司信息,包括基本信息、注册地址、办公地址等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/company/patch,PATCH:/open-apis/corehr/v1/companies/:company_id,10,"[""custom""]",[],1765434797,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/company/patch
7182538601166028802,获取员工薪资标准,feishu_people,corehr,v1,compensation_standard,match,- 调用此接口来获取员工匹配的薪资标准信息 - 请求时,可选传递员工的部门 ID、职级 ID、职务ID 、序列 ID 等筛选条件,用于匹配薪资标准 - 此接口将返回员工可匹配到的薪资标准全部信息,包括薪资标准表 ID、薪级薪等、薪资带宽、薪资标准值等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/compensation_standard/match,GET:/open-apis/corehr/v1/compensation_standards/match,1672217899237,"[""isv"", ""custom""]",[],1747712106,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/compensation_standard/match
7017707615190876163,新建合同,feishu_people,corehr,v1,contract,create,通过本接口可以为员工创建一份新合同,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/contract/create,POST:/open-apis/corehr/v1/contracts,8,"[""custom""]",[],1736910232,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/contract/create
7017707615190859779,删除合同,feishu_people,corehr,v1,contract,delete,通过本接口可以删除合同数据,删除后即无法查询到。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/contract/delete,DELETE:/open-apis/corehr/v1/contracts/:contract_id,5,"[""custom""]",[],1721715859,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/contract/delete
7017694651621883908,查询单个合同,feishu_people,corehr,v1,contract,get,该接口用于根据合同 ID 查询单个合同详细信息,包括合同开始日期、结束日期、公司主体等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/contract/get,GET:/open-apis/corehr/v1/contracts/:contract_id,4,"[""isv"", ""custom""]",[],1724639907,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/contract/get
7017707615191121923,批量查询合同,feishu_people,corehr,v1,contract,list,通过接口可以批量查询合同列表信息,目前暂不支持其他筛选条件且一次查询最多支持50条数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/contract/list,GET:/open-apis/corehr/v1/contracts,3,"[""isv"", ""custom""]",[],1724639907,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/contract/list
7072977430599892994,更新合同,feishu_people,corehr,v1,contract,patch,通过该接口可以更新员工合同相关信息,没有修改的参数会保留原值,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/contract/patch,PATCH:/open-apis/corehr/v1/contracts/:contract_id,7,"[""custom""]",[],1739935999,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/contract/patch
7072978180814618652,查询单条国家/地区信息,feishu_people,corehr,v1,country_region,get,查询单条国家/地区信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/country_region/get,GET:/open-apis/corehr/v1/country_regions/:country_region_id,1705573450443,"[""isv"", ""custom""]",[],1689316826,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/get
7072977636028874753,批量查询国家/地区信息,feishu_people,corehr,v1,country_region,list,批量查询国家/地区信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/country_region/list,GET:/open-apis/corehr/v1/country_regions,1705573462512,"[""isv"", ""custom""]",[],1689316826,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/list
7072978068286357532,查询单个货币信息,feishu_people,corehr,v1,currency,get,查询单个货币信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/currency/get,GET:/open-apis/corehr/v1/currencies/:currency_id,1705573296274,"[""isv"", ""custom""]",[],1689316830,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/currency/get
7072978200179294210,批量查询货币信息,feishu_people,corehr,v1,currency,list,批量查询货币信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/currency/list,GET:/open-apis/corehr/v1/currencies,1705573304669,"[""isv"", ""custom""]",[],1689316830,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/currency/list
7112009113388138524,获取字段详情,feishu_people,corehr,v1,custom_field,get_by_param,获取「飞书人事」对象下某字段的详细信息,支持系统预置字段和自定义字段。可通过该接口获取某个选项字段包含的选项列表,某个自定义分组中包含的字段列表等。使用方式可参考「[如何通过 OpenAPI 维护自定义字段](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/custom_field/how-to)」,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/custom_field/get_by_param,GET:/open-apis/corehr/v1/custom_fields/get_by_param,4,"[""isv"", ""custom""]",[],1736481380,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/custom_field/get_by_param
7112009113388105756,获取飞书人事对象列表,feishu_people,corehr,v1,custom_field,list_object_api_name,获取「飞书人事」中的对象列表,含系统预置对象与自定义对象。使用方式可参考[【操作手册】如何通过 OpenAPI 维护自定义字段](https://feishu.feishu.cn/docx/QlUudBfCtosWMbxx3vxcOFDknn7),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/custom_field/list_object_api_name,GET:/open-apis/corehr/v1/custom_fields/list_object_api_name,6,"[""isv"", ""custom""]",[],1719656375,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/custom_field/list_object_api_name
7112009113388122140,获取自定义字段列表,feishu_people,corehr,v1,custom_field,query,根据对象的 API name,获取「飞书人事」具体对象下的自定义字段列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/custom_field/query,GET:/open-apis/corehr/v1/custom_fields/query,5,"[""isv"", ""custom""]",[],1736481380,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/custom_field/query
7072646559953797122,创建部门,feishu_people,corehr,v1,department,create,支持在单个接口中进行部门信息添加,包括部门基本信息、部门负责人、部门自定义字段信息等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/department/create,POST:/open-apis/corehr/v1/departments,15,"[""custom""]",[],1765434746,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/create
7072723475538821122,删除部门,feishu_people,corehr,v1,department,delete,可以通过该接口通过部门ID删除一个部门记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/department/delete,DELETE:/open-apis/corehr/v1/departments/:department_id,1725619402472,"[""custom""]",[],1725619762,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/delete
7017707615190974467,查询单个部门,feishu_people,corehr,v1,department,get,该接口支持通过部门id批量查询当天的部门详情信息,包括部门包含的名称、描述、启用状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/department/get,GET:/open-apis/corehr/v1/departments/:department_id,1725607703227,"[""isv"", ""custom""]",[],1725613225,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/get
7017707615191056387,批量查询部门,feishu_people,corehr,v1,department,list,批量查询部门信息,包括部门基本信息、自定义字段信息等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/department/list,GET:/open-apis/corehr/v1/departments,1725596655019,"[""isv"", ""custom""]",[],1725618539,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/list
7025920930581921795,更新部门,feishu_people,corehr,v1,department,patch,更新部门信息,包括基础信息、自定义字段信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/department/patch,PATCH:/open-apis/corehr/v1/departments/:department_id,1725618126734,"[""custom""]",[],1725847573,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/patch
7017707615190892547,创建人员类型,feishu_people,corehr,v1,employee_type,create,创建人员类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employee_type/create,POST:/open-apis/corehr/v1/employee_types,5,"[""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/employee_type/create
7017694651621900292,删除人员类型,feishu_people,corehr,v1,employee_type,delete,删除人员类型。删除之后查询接口不能获取到已删除的数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employee_type/delete,DELETE:/open-apis/corehr/v1/employee_types/:employee_type_id,4,"[""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/employee_type/delete
7017707615190843395,查询单个人员类型,feishu_people,corehr,v1,employee_type,get,根据 ID 查询单个人员类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employee_type/get,GET:/open-apis/corehr/v1/employee_types/:employee_type_id,2,"[""isv"", ""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/employee_type/get
7017694651622080516,批量查询人员类型,feishu_people,corehr,v1,employee_type,list,批量查询人员类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employee_type/list,GET:/open-apis/corehr/v1/employee_types,1,"[""isv"", ""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/employee_type/list
7021731966426415107,更新人员类型,feishu_people,corehr,v1,employee_type,patch,更新人员类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employee_type/patch,PATCH:/open-apis/corehr/v1/employee_types/:employee_type_id,3,"[""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/employee_type/patch
7072577767343718401,创建雇佣信息,feishu_people,corehr,v1,employment,create,创建人员的雇佣信息,需要先[创建个人信息](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/person/create)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employment/create,POST:/open-apis/corehr/v1/employments,8,"[""custom""]",[],1727165561,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/employment/create
7072588548981325826,删除雇佣信息,feishu_people,corehr,v1,employment,delete,删除人员的雇佣信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employment/delete,DELETE:/open-apis/corehr/v1/employments/:employment_id,6,"[""custom""]",[],1707186056,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/employment/delete
7072588598729981980,更新雇佣信息,feishu_people,corehr,v1,employment,patch,更新人事工作信息下的字段,如:工号、工作邮箱、雇佣类型、自定义字段等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/employment/patch,PATCH:/open-apis/corehr/v1/employments/:employment_id,7,"[""isv"", ""custom""]",[],1750141609,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/employment/patch
7223214746191708188,下载文件,feishu_people,corehr,v1,file,get,根据ID下载文件,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/file/get,GET:/open-apis/corehr/v1/files/:id,6,"[""isv"", ""custom""]",[],1707187059,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/get-2
7017707615191040003,创建职务,feishu_people,corehr,v1,job,create,该接口用于创建职务信息,创建后系统中新增一条包含职务编码、名称、描述等信息的职务记录,适用于企业新增职务类型时,HR需要创建职务信息以便分配给员工的场景,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job/create,POST:/open-apis/corehr/v1/jobs,9,"[""custom""]",[],1765434866,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job/create
7017707615191203843,删除职务,feishu_people,corehr,v1,job,delete,你可以通过该接口删除一个职务信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job/delete,DELETE:/open-apis/corehr/v1/jobs/:job_id,8,"[""custom""]",[],1751379137,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job/delete
7017694651621998596,查询单个职务,feishu_people,corehr,v1,job,get,该接口支持通过职务id批量查询当天的职务详情信息,包括职务包含的名称、描述、启用状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job/get,GET:/open-apis/corehr/v1/jobs/:job_id,1726231911638,"[""isv"", ""custom""]",[],1726231094,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job/get
7017707615191023619,批量查询职务,feishu_people,corehr,v1,job,list,批量查询职务。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job/list,GET:/open-apis/corehr/v1/jobs,1725600310074,"[""isv"", ""custom""]",[],1707186600,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job/list
7072588575270944796,更新职务,feishu_people,corehr,v1,job,patch,可以通过职务ID更新单个职务详情信息,例如职务名称、描述等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job/patch,PATCH:/open-apis/corehr/v1/jobs/:job_id,7,"[""custom""]",[],1765434866,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job/patch
7088940762189545473,发起员工异动(不推荐),feishu_people,corehr,v1,job_change,create,该接口用于发起员工异动(变更员工雇佣信息),若发起成功,会生成一条员工的异动数据,同时产生相应的事件:[异动状态变更事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_change/events/updated),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_change/create,POST:/open-apis/corehr/v1/job_changes,4,"[""custom""]",[],1734431976,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job_change/create
7017694651622047748,创建任职信息,feishu_people,corehr,v1,job_data,create,在系统中第一次创建员工任职数据,通常在员工入职或者做数据批量导入的时候使用,【任职原因】只支持填写“onboarding”。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/create,POST:/open-apis/corehr/v1/job_datas,9,"[""custom""]",[],1748347900,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/job_data/create
7017694651622031364,删除任职信息,feishu_people,corehr,v1,job_data,delete,删除人员的任职信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/delete,DELETE:/open-apis/corehr/v1/job_datas/:job_data_id,8,"[""custom""]",[],1755153694,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/job_data/delete
7017694651622014980,查询单个任职信息,feishu_people,corehr,v1,job_data,get,根据 ID 查询当前生效的主任职记录。所有主任职记录中只有一条记录版本当前生效,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/get,GET:/open-apis/corehr/v1/job_datas/:job_data_id,3,"[""isv"", ""custom""]",[],1735280066,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/job_data/get
7017707615190941699,批量查询任职信息,feishu_people,corehr,v1,job_data,list,批量查询员工的任职信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/list,GET:/open-apis/corehr/v1/job_datas,4,"[""isv"", ""custom""]",[],1735280066,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/job_data/list
7072642400195723292,更新任职信息,feishu_people,corehr,v1,job_data,patch,默认为新增一条任职记录,包括职务、职级、序列、部门等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/patch,PATCH:/open-apis/corehr/v1/job_datas/:job_data_id,7,"[""custom""]",[],1748347901,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/job_data/patch
7017707615190925315,创建序列,feishu_people,corehr,v1,job_family,create,该接口用于创建单个序列,创建后系统中新增一条包含序列编码、名称、描述等信息的序列记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_family/create,POST:/open-apis/corehr/v1/job_families,9,"[""custom""]",[],1765434826,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_family/create
7017694651621965828,删除序列,feishu_people,corehr,v1,job_family,delete,该接口支持通过序列ID删除单个序列信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_family/delete,DELETE:/open-apis/corehr/v1/job_families/:job_family_id,2,"[""custom""]",[],1751379098,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_family/delete
7017707615191007235,查询单个序列,feishu_people,corehr,v1,job_family,get,该接口通过序列ID查询单个序列详情信息,如序列名称、描述、状态等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_family/get,GET:/open-apis/corehr/v1/job_families/:job_family_id,7,"[""isv"", ""custom""]",[],1753969000,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_family/get
7017694651622146052,批量查询序列,feishu_people,corehr,v1,job_family,list,该接口支持获取租户下的所有序列信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_family/list,GET:/open-apis/corehr/v1/job_families,6,"[""isv"", ""custom""]",[],1753969000,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_family/list
7072646533586927644,更新序列,feishu_people,corehr,v1,job_family,patch,可以通过序列ID更新单个序列详情信息,例如序列名称、上级序列ID等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_family/patch,PATCH:/open-apis/corehr/v1/job_families/:job_family_id,8,"[""custom""]",[],1765434826,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_family/patch
7017707615191154691,新建职级,feishu_people,corehr,v1,job_level,create,该接口通过传入职级名称、职级数值等参数,创建单个职级对象 适用场景: - 适用于HR系统中新增职级的场景,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_level/create,POST:/open-apis/corehr/v1/job_levels,8,"[""custom""]",[],1765434827,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_level/create
7017707615191138307,删除职级,feishu_people,corehr,v1,job_level,delete,可以通过该接口通过职级ID删除一个职级对象。 - 删除对象时请确认有无在职员工、待入职单据、职务等关联此对象,如有会导致删除失败。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_level/delete,DELETE:/open-apis/corehr/v1/job_levels/:job_level_id,2,"[""custom""]",[],1751379137,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_level/delete
7017694651621916676,查询单个职级,feishu_people,corehr,v1,job_level,get,该接口通过职级id 查询单个职级详情信息,包括职级包含的名称、描述、启用状态等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_level/get,GET:/open-apis/corehr/v1/job_levels/:job_level_id,6,"[""isv"", ""custom""]",[],1753969020,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_level/get
7017694651622162436,批量查询职级,feishu_people,corehr,v1,job_level,list,获取租户下的所有职级详情,包括职级数值、编码、名称等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_level/list,GET:/open-apis/corehr/v1/job_levels,5,"[""isv"", ""custom""]",[],1753969020,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_level/list
7072714700206768130,更新单个职级,feishu_people,corehr,v1,job_level,patch,该接口通过职级ID更新单个职级信息,包括职级数值、名称等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_level/patch,PATCH:/open-apis/corehr/v1/job_levels/:job_level_id,7,"[""custom""]",[],1765434827,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job-management/job_level/patch
7412526256520724508,根据适用条件获取工作日历 ID,feishu_people,corehr,v1,leave,calendar_by_scope,根据日历的适用范围,获取工作日历 ID。适用范围包含工作地点,工时制度等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/calendar_by_scope,GET:/open-apis/corehr/v1/leaves/calendar_by_scope,6,"[""isv"", ""custom""]",[],1740107338,false,1,https://open.feishu.cn/document/corehr-v1/leave/calendar_by_scope
7126729166647869443,批量查询员工假期余额,feishu_people,corehr,v1,leave,leave_balances,批量获取员工各个假期的余额数据。对应页面为假勤管理-休假管理-[假期报表](https://example.feishu.cn/people/workforce-management/manage/leave/leave_admin/balance),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/leave_balances,GET:/open-apis/corehr/v1/leaves/leave_balances,9,"[""isv"", ""custom""]",[],1729671178,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/leave/leave_balances
7126729166647902211,批量查询员工请假记录,feishu_people,corehr,v1,leave,leave_request_history,批量获取员工的请假记录数据。对应页面为假勤管理-休假管理-[请假记录](https://example.feishu.cn/people/workforce-management/manage/leave/leave_admin/leave_request),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/leave_request_history,GET:/open-apis/corehr/v1/leaves/leave_request_history,8,"[""isv"", ""custom""]",[],1745980180,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/leave/leave_request_history
7126729166647885827,获取假期类型列表,feishu_people,corehr,v1,leave,leave_types,获取休假设置后台配置的假期类型列表(比如年假、事假、婚假等)。对应页面功能为设置-假勤设置-[假期类型](https://example.feishu.cn/people/workforce-management/setting/leave/leave_admin/leave_type),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/leave_types,GET:/open-apis/corehr/v1/leaves/leave_types,10,"[""isv"", ""custom""]",[],1724119939,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/leave/leave_types
7408403062694100995,获取工作日历,feishu_people,corehr,v1,leave,work_calendar,获取工作日历信息,如名称,状态等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/work_calendar,POST:/open-apis/corehr/v1/leaves/work_calendar,7,"[""isv"", ""custom""]",[],1764831919,false,1,https://open.feishu.cn/document/corehr-v1/leave/work_calendar
7408403062694084611,获取工作日历日期详情,feishu_people,corehr,v1,leave,work_calendar_date,获取工作日历每一天的日期详情,如日期、日期类型等,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave/work_calendar_date,POST:/open-apis/corehr/v1/leaves/work_calendar_date,5,"[""isv"", ""custom""]",[],1766405785,false,1,https://open.feishu.cn/document/corehr-v1/leave/work_calendar_date
7127187941650612227,创建假期发放记录,feishu_people,corehr,v1,leave_granting_record,create,向飞书人事休假系统写入假期发放记录。对应假勤管理-休假管理-[发放记录](https://example.feishu.cn/people/workforce-management/manage/leave/leave_admin/granting_record)的创建或者导入功能,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave_granting_record/create,POST:/open-apis/corehr/v1/leave_granting_records,12,"[""isv"", ""custom""]",[],1724119938,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/leave/create
7127187941650595843,删除假期发放记录,feishu_people,corehr,v1,leave_granting_record,delete,删除飞书人事休假系统中的发放记录,假勤管理-休假管理-[发放记录](https://example.feishu.cn/people/workforce-management/manage/leave/leave_admin/granting_record)(仅支持删除发放来源是「手动发放」或「外部系统发放」的记录)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/leave_granting_record/delete,DELETE:/open-apis/corehr/v1/leave_granting_records/:leave_granting_record_id,11,"[""isv"", ""custom""]",[],1722912175,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/leave/delete
7072646479949316098,创建地点,feishu_people,corehr,v1,location,create,在系统中第一次创建地点数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/location/create,POST:/open-apis/corehr/v1/locations,11,"[""custom""]",[],1765434768,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/location/create
7072646788637556737,删除地点,feishu_people,corehr,v1,location,delete,删除地点信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/location/delete,DELETE:/open-apis/corehr/v1/locations/:location_id,3,"[""custom""]",[],1726231005,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/location/delete
7017694651622113284,查询单个地点,feishu_people,corehr,v1,location,get,该接口用于根据地点 ID查询地点信息,信息包含地点名称、描述、地点用途、工时制度、区域设置、时区以及关联的地址信息等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/location/get,GET:/open-apis/corehr/v1/locations/:location_id,9,"[""isv"", ""custom""]",[],1733479516,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/location/get
7017707615190990851,批量分页查询地点信息,feishu_people,corehr,v1,location,list,该接口用于批量查询地点信息,信息包含地点名称、描述、地点用途、工时制度、区域设置、时区以及关联的地址信息等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/location/list,GET:/open-apis/corehr/v1/locations,5,"[""isv"", ""custom""]",[],1733479516,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/location/list
7072646286193786908,创建国家证件类型,feishu_people,corehr,v1,national_id_type,create,创建国家证件类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/national_id_type/create,POST:/open-apis/corehr/v1/national_id_types,5,"[""custom""]",[],1727072663,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/national_id_type/create
7072646256338894849,删除国家证件类型,feishu_people,corehr,v1,national_id_type,delete,删除国家证件类型,已删除的数据将无法通过查询接口获取。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/national_id_type/delete,DELETE:/open-apis/corehr/v1/national_id_types/:national_id_type_id,4,"[""custom""]",[],1727072663,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/national_id_type/delete
7017694651622178820,查询单个国家证件类型,feishu_people,corehr,v1,national_id_type,get,根据 ID 查询单个国家证件类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/national_id_type/get,GET:/open-apis/corehr/v1/national_id_types/:national_id_type_id,2,"[""isv"", ""custom""]",[],1730689770,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/national_id_type/get
7017707615191171075,批量查询国家证件类型,feishu_people,corehr,v1,national_id_type,list,批量查询国家证件类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/national_id_type/list,GET:/open-apis/corehr/v1/national_id_types,1,"[""isv"", ""custom""]",[],1730689770,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/national_id_type/list
7072648187001618433,更新国家证件类型,feishu_people,corehr,v1,national_id_type,patch,更新国家证件类型。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/national_id_type/patch,PATCH:/open-apis/corehr/v1/national_id_types/:national_id_type_id,3,"[""custom""]",[],1727072663,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/national_id_type/patch
7097044451155197956,查询员工离职原因列表,feishu_people,corehr,v1,offboarding,query,该接口用于查询[离职配置](https://people.feishu.cn/people/hr-settings/dimission/setting)> 离职原因的选项信息,包括离职原因选项的唯一标识、名称和启用状态等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/query,POST:/open-apis/corehr/v1/offboardings/query,7,"[""isv"", ""custom""]",[],1721042513,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/offboarding/query
7211423970042183684,搜索离职信息,feishu_people,corehr,v1,offboarding,search,该接口支持根据员工ID、离职审批发起时间和离职日期等字段搜索离职信息,可获取包括离职日期、离职原因、离职状态和流程审批状态等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/search,POST:/open-apis/corehr/v1/offboardings/search,2,"[""isv"", ""custom""]",[],1758704092,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/offboarding/search
7097044451155214340,操作员工离职,feishu_people,corehr,v1,offboarding,submit,该接口用于发起员工离职。若发起成功,会生成一条员工的离职数据,同时产生相应的事件。参考[离职申请状态变更](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/events/status_updated),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/submit,POST:/open-apis/corehr/v1/offboardings/submit,1731469532072,"[""custom""]",[],1729821899,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/offboarding/submit
7017707615190827011,创建个人信息,feishu_people,corehr,v1,person,create,创建人员的个人信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/person/create,POST:/open-apis/corehr/v1/persons,1693914538401,"[""custom""]",[],1715398090,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/create
7017694651621834756,删除个人信息,feishu_people,corehr,v1,person,delete,删除人员的个人信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/person/delete,DELETE:/open-apis/corehr/v1/persons/:person_id,8,"[""custom""]",[],1707187037,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/delete
7017694651622064132,查询单个个人信息,feishu_people,corehr,v1,person,get,根据 ID 查询单个人员的个人信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/person/get,GET:/open-apis/corehr/v1/persons/:person_id,1693914446463,"[""isv"", ""custom""]",[],1694136281,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/get
7021733135817670660,更新个人信息,feishu_people,corehr,v1,person,patch,更新个人信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/person/patch,PATCH:/open-apis/corehr/v1/persons/:person_id,1693914563142,"[""custom""]",[],1715398089,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/patch
7076346346946543644,上传文件,feishu_people,corehr,v1,person,upload,上传文件。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/person/upload,POST:/open-apis/corehr/v1/persons/upload,7,"[""isv"", ""custom""]",[],1720429529,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/upload
7017694651622096900,删除待入职(不推荐),feishu_people,corehr,v1,pre_hire,delete,删除待入职人员接口,本接口直接删除待入职数据,不会判断入职流程,推荐使用新接口进行删除[【删除待入职】](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/delete)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/pre_hire/delete,DELETE:/open-apis/corehr/v1/pre_hires/:pre_hire_id,1742785447242,"[""custom""]",[],1720766086,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/pre_hire/delete
7017707615191089155,查询单个待入职信息,feishu_people,corehr,v1,pre_hire,get,根据 ID 查询单个待入职人员,本接口不再推荐使用(个人信息相关数据不完整),请使用[查询待入职](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/query)接口获取更完整信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/pre_hire/get,GET:/open-apis/corehr/v1/pre_hires/:pre_hire_id,1743156735310,"[""isv"", ""custom""]",[],1721042402,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/pre_hire/get
7017707615190958083,批量查询待入职信息,feishu_people,corehr,v1,pre_hire,list,可通过本接口批量查询待入职人员信息,本接口不再推荐使用(个人信息相关数据不完整),请使用[查询待入职](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/query)接口获取更完整信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/pre_hire/list,GET:/open-apis/corehr/v1/pre_hires,1743156525165,"[""isv"", ""custom""]",[],1721042402,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/pre_hire/list
7072977543561461762,更新待入职信息(不推荐),feishu_people,corehr,v1,pre_hire,patch,更新待入职信息接口,本接口只是会更新待入职数据,不会校验数据规则,推荐使用新接口[【更新待入职信息】](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/patch)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/pre_hire/patch,PATCH:/open-apis/corehr/v1/pre_hires/:pre_hire_id,1742785455284,"[""custom""]",[],1720766086,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/pre_hire/patch
7160631114605608962,获取流程表单数据,feishu_people,corehr,v1,process.form_variable_data,get,根据流程实例 id(process_id)获取流程表单字段数据,包括表单里的业务字段和自定义字段。仅支持飞书人事、假勤相关业务流程。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/process-form_variable_data/get,GET:/open-apis/corehr/v1/processes/:process_id/form_variable_data,1714121512061,"[""isv"", ""custom""]",[],1714122838,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/process-form_variable_data/get
7088513302561128449,批量获取角色列表,feishu_people,corehr,v1,security_group,list,用于查询飞书人事中的角色列表(对应[飞书人事管理后台](https://people.feishu.cn/people/) - 设置 - 权限设置 - 角色设置中的角色列表),列表内包含角色 ID、名称、状态以及描述等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/security_group/list,GET:/open-apis/corehr/v1/security_groups,13,"[""isv"", ""custom""]",[],1722237451,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/authorization/list
7089329362222448644,查询部门 / 地点的 HRBP / 属地 BP,feishu_people,corehr,v1,security_group,query,通过部门或工作地点,查询对应的 HRBP / 属地 BP,返回的信息中包含BP的员工ID、部门ID、属地ID等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/security_group/query,POST:/open-apis/corehr/v1/security_groups/query,7,"[""isv"", ""custom""]",[],1734434037,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/authorization/query
7072978219502321665,查询单条省份/行政区信息,feishu_people,corehr,v1,subdivision,get,查询单条省份/行政区信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/subdivision/get,GET:/open-apis/corehr/v1/subdivisions/:subdivision_id,1705573479644,"[""isv"", ""custom""]",[],1689316826,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/get-2
7072977831467139073,批量查询省份/行政区信息,feishu_people,corehr,v1,subdivision,list,批量查询省份/行政区信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/subdivision/list,GET:/open-apis/corehr/v1/subdivisions,1705573511861,"[""isv"", ""custom""]",[],1689316827,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/list-2
7072978219503550465,查询单条城市/区域信息,feishu_people,corehr,v1,subregion,get,查询单条城市/区域信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/subregion/get,GET:/open-apis/corehr/v1/subregions/:subregion_id,1705573526090,"[""isv"", ""custom""]",[],1689316827,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/get-3
7072977727422562306,批量查询城市/区域信息,feishu_people,corehr,v1,subregion,list,批量查询城市/区域信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/subregion/list,GET:/open-apis/corehr/v1/subregions,1705573537057,"[""isv"", ""custom""]",[],1689316827,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/location_data/list-3
7086375306023895041,获取异动原因列表,feishu_people,corehr,v1,transfer_reason,query,获取异动原因列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/transfer_reason/query,GET:/open-apis/corehr/v1/transfer_reasons/query,7,"[""isv"", ""custom""]",[],1709799353,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job_change/query-2
7086375306023911425,获取异动类型列表,feishu_people,corehr,v1,transfer_type,query,获取异动类型列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/transfer_type/query,GET:/open-apis/corehr/v1/transfer_types/query,8,"[""isv"", ""custom""]",[],1709799353,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job_change/query
7072647640912117762,创建工时制度,feishu_people,corehr,v1,working_hours_type,create,创建工时制度。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/working_hours_type/create,POST:/open-apis/corehr/v1/working_hours_types,5,"[""custom""]",[],1735280525,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/working_hours_type/create
7072646429181034498,删除工时制度,feishu_people,corehr,v1,working_hours_type,delete,删除工时制度。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/working_hours_type/delete,DELETE:/open-apis/corehr/v1/working_hours_types/:working_hours_type_id,4,"[""custom""]",[],1735280526,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/working_hours_type/delete
7017707615190908931,查询单个工时制度,feishu_people,corehr,v1,working_hours_type,get,根据 ID 查询单个工时制度。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/working_hours_type/get,GET:/open-apis/corehr/v1/working_hours_types/:working_hours_type_id,2,"[""isv"", ""custom""]",[],1735280526,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/working_hours_type/get
7017694651621851140,批量查询工时制度,feishu_people,corehr,v1,working_hours_type,list,批量查询工时制度。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/working_hours_type/list,GET:/open-apis/corehr/v1/working_hours_types,1,"[""isv"", ""custom""]",[],1735280526,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/working_hours_type/list
7072646859794726913,更新工时制度,feishu_people,corehr,v1,working_hours_type,patch,更新工时制度。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/working_hours_type/patch,PATCH:/open-apis/corehr/v1/working_hours_types/:working_hours_type_id,3,"[""custom""]",[],1735280526,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/basic-infomation/working_hours_type/patch
7317581509003755524,根据流程 ID 查询组织架构调整记录,feishu_people,corehr,v2,approval_groups,get,用户通过『飞书人事-我的团队-组织架构』 发起一个组织架构调整会根据 审批流配置发起 一个或多个审批。 之后用户可通过流程的单据 ID, 查询到该审批进行的状态, 以及该流程中涉及到的 组织架构信息(包括部门变更、人员变更记录 ID、岗位变更记录 ID)。 如需查询具体变更详情可按需调用以下独立的接口: - 部门变更:[批量查询部门变更接口](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_position_change_list_by_ids) - 岗位变更:[批量查询岗位调整内容](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_department_change_list_by_ids) - 员工变更:[批量查询员工变更接口](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_job_change_list_by_ids),none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/get,GET:/open-apis/corehr/v2/approval_groups/:process_id,1703146065774,"[""isv"", ""custom""]",[],1760409288,false,1,https://open.feishu.cn/document/corehr-v1/approval_groups/get
7317581509003771908,批量查询部门调整内容,feishu_people,corehr,v2,approval_groups,open_query_department_change_list_by_ids,根据部门调整记录 ID 批量查询部门调整内容,如:部门调整类型、部门调整前后名称、部门调整前后角色信息 等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_department_change_list_by_ids,POST:/open-apis/corehr/v2/approval_groups/open_query_department_change_list_by_ids,1703146059604,"[""isv"", ""custom""]",[],1763528815,false,1,https://open.feishu.cn/document/corehr-v1/approval_groups/open_query_department_change_list_by_ids
7317581509003788292,批量查询人员调整内容,feishu_people,corehr,v2,approval_groups,open_query_job_change_list_by_ids,根据人员异动记录 ID 批量查询人员调整内容,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_job_change_list_by_ids,POST:/open-apis/corehr/v2/approval_groups/open_query_job_change_list_by_ids,1703146039650,"[""isv"", ""custom""]",[],1763528835,false,1,https://open.feishu.cn/document/corehr-v1/approval_groups/open_query_job_change_list_by_ids
7428890785897234433,批量查询岗位调整内容,feishu_people,corehr,v2,approval_groups,open_query_position_change_list_by_ids,根据岗位调整记录 ID 批量查询岗位调整内容,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/open_query_position_change_list_by_ids,POST:/open-apis/corehr/v2/approval_groups/open_query_position_change_list_by_ids,1727600370004,"[""isv"", ""custom""]",[],1760409278,false,1,https://open.feishu.cn/document/corehr-v1/approval_groups/open_query_position_change_list_by_ids
7426325309484040193,获取指定人员审批任务列表,feishu_people,corehr,v2,approver,list,审批任务依赖于流程节点实例存在,每一个流程节点实例可能包含有一或多个审批任务,每一个任务表明当前节点的审批人是谁,该接口可获取指定人员的审批任务列表(此功能不受数据权限范围控制)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/approver/list,GET:/open-apis/corehr/v2/approvers,4,"[""isv"", ""custom""]",[],1765507228,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/approver-task/list
7301516605753196547,查询银行信息,feishu_people,corehr,v2,basic_info.bank,search,根据银行 ID 、银行名称,查询银行信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-bank/search,POST:/open-apis/corehr/v2/basic_info/banks/search,2,"[""isv"", ""custom""]",[],1719656563,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/basic_info-bank/search
7301516605753212931,查询支行信息,feishu_people,corehr,v2,basic_info.bank_branch,search,根据银行 ID、支行 ID 、支行名称、联行号,支行状态、更新时间 查询银行信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-bank_branch/search,POST:/open-apis/corehr/v2/basic_info/bank_branchs/search,1,"[""isv"", ""custom""]",[],1736481391,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/basic_info-bank/search-2
7301516605753131011,查询城市信息,feishu_people,corehr,v2,basic_info.city,search,根据城市 ID、上级省份/主要行政区 ID ,查询城市(自治区、地区、县「美」、町、村「日」)信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-city/search,POST:/open-apis/corehr/v2/basic_info/cities/search,8,"[""isv"", ""custom""]",[],1719656494,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/location_data/search
7301516605753229315,查询国家/地区信息,feishu_people,corehr,v2,basic_info.country_region,search,根据国家/地区 ID、状态,批量查询国家/地区信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-country_region/search,POST:/open-apis/corehr/v2/basic_info/country_regions/search,10,"[""isv"", ""custom""]",[],1719656447,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/location_data/search-4
7301516605753245699,查询省份/主要行政区信息,feishu_people,corehr,v2,basic_info.country_region_subdivision,search,根据国家/地区 ID、省份/主要行政区 ID、状态,批量查询国家/地区下辖的一级行政区(如省份、直辖市、自治区、州等)数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-country_region_subdivision/search,POST:/open-apis/corehr/v2/basic_info/country_region_subdivisions/search,9,"[""isv"", ""custom""]",[],1719656470,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/location_data/search-3
7301516605753163779,查询货币信息,feishu_people,corehr,v2,basic_info.currency,search,根据货币 ID、状态查询货币信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-currency/search,POST:/open-apis/corehr/v2/basic_info/currencies/search,1699609450530,"[""isv"", ""custom""]",[],1719656609,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/currency/search
7301516605753147395,查询区/县信息,feishu_people,corehr,v2,basic_info.district,search,根据区/县 ID、上级城市 ID,查询区/县信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-district/search,POST:/open-apis/corehr/v2/basic_info/districts/search,7,"[""isv"", ""custom""]",[],1719656516,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/location_data/search-2
7424038983966425089,查询语言信息,feishu_people,corehr,v2,basic_info.language,search,根据语言 ID、状态,批量查询语言信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-language/search,POST:/open-apis/corehr/v2/basic_info/languages/search,1728540425790,"[""isv"", ""custom""]",[],1728546532,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/basic_info-language/search
7301516605753180163,查询国籍信息,feishu_people,corehr,v2,basic_info.nationality,search,根据国籍 ID、国家 ID,查询国籍信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-nationality/search,POST:/open-apis/corehr/v2/basic_info/nationalities/search,1699608633181,"[""isv"", ""custom""]",[],1719656540,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/basic_info-nationality/search
7424038983966441473,查询时区信息,feishu_people,corehr,v2,basic_info.time_zone,search,根据时区 ID、状态,批量查询时区信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/basic_info-time_zone/search,POST:/open-apis/corehr/v2/basic_info/time_zones/search,1728540839572,"[""isv"", ""custom""]",[],1729170981,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/basic_info-time_zone/search
7261860942295547906,查询部门 HRBP,feishu_people,corehr,v2,bp,get_by_department,查询部门的 HRBP 信息,包括来自上级部门的 HRBP。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/bp/get_by_department,POST:/open-apis/corehr/v2/bps/get_by_department,8,"[""isv"", ""custom""]",[],1734434079,false,1,https://open.feishu.cn/document/corehr-v1/authorization/get_by_department
7261860942295564290,获取 HRBP 列表,feishu_people,corehr,v2,bp,list,获取 HRBP 列表。列表中包含HRBP的ID以及部门ID信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/bp/list,GET:/open-apis/corehr/v2/bps,6,"[""isv"", ""custom""]",[],1720773427,false,1,https://open.feishu.cn/document/corehr-v1/authorization/list-2
7408127338960781340,启用/停用公司,feishu_people,corehr,v2,company,active,对公司进行启用或停用操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/company/active,POST:/open-apis/corehr/v2/companies/active,9,"[""isv"", ""custom""]",[],1730174761,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/company/active
7252157701853184028,通过公司 ID 批量获取公司信息,feishu_people,corehr,v2,company,batch_get,通过 ID 批量查询公司信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/company/batch_get,POST:/open-apis/corehr/v2/companies/batch_get,3,"[""isv"", ""custom""]",[],1732680232,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/company/batch_get
7428129573351817220,查询当前生效信息变更公司,feishu_people,corehr,v2,company,query_recent_change,查询指定时间范围内当前生效信息发生变更的公司,即只有公司当前生效版本的生效时间在查询时间范围内,才返回该公司id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/company/query_recent_change,GET:/open-apis/corehr/v2/companies/query_recent_change,4,"[""isv"", ""custom""]",[],1740365128,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/company/query_recent_change
7248868628551303172,搜索合同,feishu_people,corehr,v2,contract,search,该接口可用于搜索合同信息,包括合同开始时间、合同预计结束时间、合同实际结束时间、合同公司主体等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/contract/search,POST:/open-apis/corehr/v2/contracts/search,2,"[""isv"", ""custom""]",[],1736910244,false,1,https://open.feishu.cn/document/corehr-v1/contract/search
7486406573931757571,查询成本分摊,feishu_people,corehr,v2,cost_allocation,batch_query,查询成本分摊,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_allocation/batch_query,POST:/open-apis/corehr/v2/cost_allocations/batch_query,1742903274832,"[""isv"", ""custom""]",[],1745377637,false,1,https://open.feishu.cn/document/corehr-v1/employee/cost_allocation/batch_query
7486406573931741187,创建成本分摊,feishu_people,corehr,v2,cost_allocation,create_version,创建成本分摊,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_allocation/create_version,POST:/open-apis/corehr/v2/cost_allocations/create_version,1742907015361,"[""isv"", ""custom""]",[],1745377616,false,1,https://open.feishu.cn/document/corehr-v1/employee/cost_allocation/create_version
7486406573931724803,删除成本分摊,feishu_people,corehr,v2,cost_allocation,remove_version,删除成本分摊,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_allocation/remove_version,POST:/open-apis/corehr/v2/cost_allocations/remove_version,1742907148829,"[""isv"", ""custom""]",[],1745377594,false,1,https://open.feishu.cn/document/corehr-v1/employee/cost_allocation/remove_version
7486406573931708419,更新成本分摊,feishu_people,corehr,v2,cost_allocation,update_version,更新成本分摊,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_allocation/update_version,POST:/open-apis/corehr/v2/cost_allocations/update_version,1742907178647,"[""isv"", ""custom""]",[],1745377573,false,1,https://open.feishu.cn/document/corehr-v1/employee/cost_allocation/update_version
7225452763517140995,创建成本中心,feishu_people,corehr,v2,cost_center,create,单个创建成本中心;可定义成本中心的名称,父级成本中心,成本中心负责人,生效时间等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center/create,POST:/open-apis/corehr/v2/cost_centers,8,"[""isv"", ""custom""]",[],1765434806,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/create
7225452763517157379,删除成本中心,feishu_people,corehr,v2,cost_center,delete,删除成本中心记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center/delete,DELETE:/open-apis/corehr/v2/cost_centers/:cost_center_id,4,"[""isv"", ""custom""]",[],1732259877,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/delete
7225452763517206531,启用 / 停用成本中心,feishu_people,corehr,v2,cost_center,patch,该接口支持对单个成本中心进行启用和停用操作。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center/patch,PATCH:/open-apis/corehr/v2/cost_centers/:cost_center_id,7,"[""isv"", ""custom""]",[],1732259858,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/patch
7447798339566436355,查询当前生效信息发生变更的成本中心,feishu_people,corehr,v2,cost_center,query_recent_change,查询指定时间范围内当前生效信息发生变更的成本中心,即只有部门当前生效版本的生效时间在查询时间范围内,才返回该成本中心id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center/query_recent_change,GET:/open-apis/corehr/v2/cost_centers/query_recent_change,6,"[""isv"", ""custom""]",[],1736492433,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/cost_center/query_recent_change
7225452763517075459,搜索成本中心信息,feishu_people,corehr,v2,cost_center,search,搜索成本中心信息;支持通过成本中心ID,成本中心名称,成本中心编码,成本中心上级搜索成本中心的信息,有分页功能。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center/search,POST:/open-apis/corehr/v2/cost_centers/search,5,"[""isv"", ""custom""]",[],1761013937,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/search
7225452763517173763,创建成本中心版本,feishu_people,corehr,v2,cost_center.version,create,创建成本中心版本;每次调用可创建一个成本中心版本,可定义成本中心的名称,描述,上级成本,成本中心负责人,版本生效时间等信息,接口内会做相关规则的校验,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center-version/create,POST:/open-apis/corehr/v2/cost_centers/:cost_center_id/versions,3,"[""isv"", ""custom""]",[],1743059886,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/cost_center-version/create
7225452763517124611,撤销成本中心版本,feishu_people,corehr,v2,cost_center.version,delete,该接口支持通过成本中心的版本ID撤销成本中心版本信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center-version/delete,DELETE:/open-apis/corehr/v2/cost_centers/:cost_center_id/versions/:version_id,1,"[""isv"", ""custom""]",[],1732259957,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/cost_center-version/delete
7225452763517190147,更正成本中心版本,feishu_people,corehr,v2,cost_center.version,patch,对成本中心的版本记录进行更正,可更正的字段包括:名称,上级成本中心,成本中心负责人列表,成本中心的描述,生效时间,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/cost_center-version/patch,PATCH:/open-apis/corehr/v2/cost_centers/:cost_center_id/versions/:version_id,2,"[""isv"", ""custom""]",[],1736233002,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/cost_center/cost_center-version/patch
7358017162446471172,启用/停用自定义组织,feishu_people,corehr,v2,custom_org,active,对自定义组织进行启用或停用操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/active,POST:/open-apis/corehr/v2/custom_orgs/active,5,"[""isv"", ""custom""]",[],1747710068,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/active
7358017162446503940,创建自定义组织,feishu_people,corehr,v2,custom_org,create,使用指定信息创建自定义组织,接口内会做相关规则校验。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/create,POST:/open-apis/corehr/v2/custom_orgs,8,"[""isv"", ""custom""]",[],1765434816,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/create
7358017162446487556,删除自定义组织,feishu_people,corehr,v2,custom_org,delete_org,根据传入的自定义组织 ID 删除相应自定义组织,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/delete_org,POST:/open-apis/corehr/v2/custom_orgs/delete_org,2,"[""isv"", ""custom""]",[],1747710105,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/delete_org
7358017162446536708,更新自定义组织信息,feishu_people,corehr,v2,custom_org,patch,更新一个自定义组织基础信息,不支持更新自动匹配规则,如需更新自动匹配规则请使用[更新匹配规则](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/update_rule),none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/patch,PATCH:/open-apis/corehr/v2/custom_orgs/:org_id,7,"[""isv"", ""custom""]",[],1765434826,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/patch
7358017162446520324,查询自定义组织信息,feishu_people,corehr,v2,custom_org,query,根据传入的筛选条件批量查询自定义组织信息。不传任何筛选条件,默认获得该租户下所有的自定义组织数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/query,POST:/open-apis/corehr/v2/custom_orgs/query,4,"[""isv"", ""custom""]",[],1760008860,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/query
7458122701110624275,查询当前生效信息变更的自定义组织,feishu_people,corehr,v2,custom_org,query_recent_change,查询指定时间范围内当前生效信息发生变更的自定义组织,即只有部门当前生效版本的生效时间在查询时间范围内,才返回该自定义组织id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/query_recent_change,GET:/open-apis/corehr/v2/custom_orgs/query_recent_change,3,"[""isv"", ""custom""]",[],1747710093,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/query_recent_change
7358017162446553092,更新自定义组织的匹配规则,feishu_people,corehr,v2,custom_org,update_rule,更新自定义组织的匹配规则。仅开启了「为组织设置自动匹配规则」的自定义组织类型可用。如需更新自定义组织基本信息可使用[更新自定义组织](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/patch),none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/custom_org/update_rule,POST:/open-apis/corehr/v2/custom_orgs/update_rule,6,"[""isv"", ""custom""]",[],1747710056,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/custom_org/update_rule
7486406573931692035,查询默认成本中心,feishu_people,corehr,v2,default_cost_center,batch_query,查询默认成本中心,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/default_cost_center/batch_query,POST:/open-apis/corehr/v2/default_cost_centers/batch_query,1742890038581,"[""isv"", ""custom""]",[],1745377551,false,1,https://open.feishu.cn/document/corehr-v1/employee/default_cost_center/batch_query
7486406573931675651,添加默认成本中心,feishu_people,corehr,v2,default_cost_center,create_version,添加默认成本中心,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/default_cost_center/create_version,POST:/open-apis/corehr/v2/default_cost_centers/create_version,1742891804507,"[""isv"", ""custom""]",[],1745377530,false,1,https://open.feishu.cn/document/corehr-v1/employee/default_cost_center/create_version
7486406573931659267,删除默认成本中心,feishu_people,corehr,v2,default_cost_center,remove_version,删除默认成本中心,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/default_cost_center/remove_version,POST:/open-apis/corehr/v2/default_cost_centers/remove_version,1742894004252,"[""isv"", ""custom""]",[],1745377508,false,1,https://open.feishu.cn/document/corehr-v1/employee/default_cost_center/remove_version
7486406573931642883,更新默认成本中心,feishu_people,corehr,v2,default_cost_center,update_version,更新默认成本中心,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/default_cost_center/update_version,POST:/open-apis/corehr/v2/default_cost_centers/update_version,1742894944078,"[""isv"", ""custom""]",[],1745377486,false,1,https://open.feishu.cn/document/corehr-v1/employee/default_cost_center/update_version
7280432392631549953,批量查询部门,feishu_people,corehr,v2,department,batch_get,批量查询部门信息,**该接口只返回部门当前内容**。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/batch_get,POST:/open-apis/corehr/v2/departments/batch_get,12,"[""isv"", ""custom""]",[],1765434767,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/batch_get
7362022982037323779,删除部门 V2,feishu_people,corehr,v2,department,delete,可以通过该接口通过部门ID删除一个部门记录,带数据行权限判权,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/delete,DELETE:/open-apis/corehr/v2/departments/:department_id,6,"[""custom""]",[],1763528795,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/delete
7236202966714957826,获取父部门信息,feishu_people,corehr,v2,department,parents,该接口用来递归获取部门的父部门信息,并按照由子到父的顺序返回有权限的父部门信息列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/parents,POST:/open-apis/corehr/v2/departments/parents,13,"[""isv"", ""custom""]",[],1743059874,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/parents
7362022982037307395,更新部门,feishu_people,corehr,v2,department,patch,更新部门,支持数据行权限判权,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/patch,PATCH:/open-apis/corehr/v2/departments/:department_id,14,"[""custom""]",[],1765434757,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/patch
7372158581884911618,批量查询部门版本信息,feishu_people,corehr,v2,department,query_multi_timeline,根据部门ID列表,批量查询开始结束时间内的所有部门版本信息,含部门名称、部门类型、上级、编码、负责人、是否启用、描述等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/query_multi_timeline,POST:/open-apis/corehr/v2/departments/query_multi_timeline,8,"[""isv"", ""custom""]",[],1760008786,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/query_multi_timeline
7439765965024165889,批量查询部门操作日志,feishu_people,corehr,v2,department,query_operation_logs,批量查询指定时间范围内的部门操作日志,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/query_operation_logs,POST:/open-apis/corehr/v2/departments/query_operation_logs,16,"[""isv"", ""custom""]",[],1753969399,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/query_operation_logs
7414100499044646940,查询生效信息变更部门,feishu_people,corehr,v2,department,query_recent_change,查询指定时间范围内当前生效信息发生变更的部门,即只有部门当前生效版本的生效时间在查询时间范围内,才返回该部门id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/query_recent_change,GET:/open-apis/corehr/v2/departments/query_recent_change,11,"[""isv"", ""custom""]",[],1740474254,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/query_recent_change
7351676067814096900,查询指定生效日期的部门基本信息,feishu_people,corehr,v2,department,query_timeline,查询指定生效的部门基本信息,含部门名称、部门类型、上级、编码、负责人、是否启用、描述等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/query_timeline,POST:/open-apis/corehr/v2/departments/query_timeline,10,"[""isv"", ""custom""]",[],1760008767,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/query_timeline
7211423970042200068,搜索部门信息,feishu_people,corehr,v2,department,search,该接口支持通过部门id、上级部门ID、部门负责人、名称、编码字段批量搜索当天的部门详情信息,包括部门包含的名称、描述、启用状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/search,POST:/open-apis/corehr/v2/departments/search,7,"[""isv"", ""custom""]",[],1761013926,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/organization-management/department/search
7405851978397581314,查询指定生效日期的部门架构树,feishu_people,corehr,v2,department,tree,支持传入部门ID(不传默认根部门),任意日期(不传默认当前日期)。从给定部门ID开始广度遍历,每页最多返回2000行数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/department/tree,POST:/open-apis/corehr/v2/departments/tree,9,"[""isv"", ""custom""]",[],1739172479,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/department/tree
7428890785897218049,根据组织架构调整 ID 查询发起的流程信息,feishu_people,corehr,v2,draft,get,用户通过『飞书人事-我的团队/人员管理-组织架构』 发起一个组织架构调整会根据 审批流配置发起 一个或多个审批。之后用户可以通过组织架构调整 ID 查询对应的流程ID,以及审批流状态。如需查询单个审批的详情数据,可通过[根据流程 ID 查询组织架构调整记录](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/approval_groups/get)获取。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/draft/get,GET:/open-apis/corehr/v2/drafts/:draft_id,1729478762901,"[""isv"", ""custom""]",[],1760409267,false,1,https://open.feishu.cn/document/corehr-v1/approval_groups/get-2
7252969409509490692,批量查询员工信息,feishu_people,corehr,v2,employee,batch_get,通过员工 ID 、个人信息 ID、工作邮箱等筛选项批量查询员工的工作信息、个人信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employee/batch_get,POST:/open-apis/corehr/v2/employees/batch_get,16,"[""custom""]",[],1748347900,false,1,https://open.feishu.cn/document/corehr-v1/employee/batch_get
7350663854198161410,添加人员,feishu_people,corehr,v2,employee,create,支持在单个接口中进行人员全信息添加,包括人员的基本信息,雇佣信息,入职任职记录及其他分组信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employee/create,POST:/open-apis/corehr/v2/employees,14,"[""isv"", ""custom""]",[],1750141589,false,1,https://open.feishu.cn/document/corehr-v1/employee/create
7211423970042167300,搜索员工信息,feishu_people,corehr,v2,employee,search,查询员工的工作信息、个人信息等数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employee/search,POST:/open-apis/corehr/v2/employees/search,15,"[""custom""]",[],1758684092,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/search
7387981900317589506,批量查询兼职信息,feishu_people,corehr,v2,employees.additional_job,batch,批量查询兼职信息,包括开始日期、职务、序列、上级、薪资类型等信息。 支持全量遍历和筛选查询。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-additional_job/batch,POST:/open-apis/corehr/v2/employees/additional_jobs/batch,1,"[""custom""]",[],1731575565,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-additional_job/batch
7387981900317540354,创建兼职,feishu_people,corehr,v2,employees.additional_job,create,创建员工的兼职,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-additional_job/create,POST:/open-apis/corehr/v2/employees/additional_jobs,4,"[""custom""]",[],1747368251,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-additional_job/create
7387981900317573122,删除兼职,feishu_people,corehr,v2,employees.additional_job,delete,删除一条指定的员工兼职,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-additional_job/delete,DELETE:/open-apis/corehr/v2/employees/additional_jobs/:additional_job_id,2,"[""custom""]",[],1731575544,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-additional_job/delete
7387981900317556738,更新兼职,feishu_people,corehr,v2,employees.additional_job,patch,更新员工的兼职,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-additional_job/patch,PATCH:/open-apis/corehr/v2/employees/additional_jobs/:additional_job_id,3,"[""custom""]",[],1747368273,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-additional_job/patch
7261860942295580674,查询员工 HRBP / 属地 BP,feishu_people,corehr,v2,employees.bp,batch_get,查询员工的 HRBP 和属地 BP,包括来自上级部门的 HRBP 和属地 BP。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-bp/batch_get,POST:/open-apis/corehr/v2/employees/bps/batch_get,9,"[""isv"", ""custom""]",[],1734434058,false,1,https://open.feishu.cn/document/corehr-v1/authorization/batch_get
7446683431818395651,创建外派信息,feishu_people,corehr,v2,employees.international_assignment,create,为员工添加外派记录,包括外派信息、任职信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-international_assignment/create,POST:/open-apis/corehr/v2/employees/international_assignments,5,"[""custom""]",[],1749438625,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-international_assignment/create
7446683431818428419,删除外派信息,feishu_people,corehr,v2,employees.international_assignment,delete,删除某一条外派信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-international_assignment/delete,DELETE:/open-apis/corehr/v2/employees/international_assignments/:international_assignment_id,2,"[""custom""]",[],1749438651,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-international_assignment/delete
7418041559249354755,批量查询外派信息,feishu_people,corehr,v2,employees.international_assignment,list,查询员工的外派信息:外派类型、外派地点、职务、职级、上级等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-international_assignment/list,GET:/open-apis/corehr/v2/employees/international_assignments,3,"[""custom""]",[],1749438642,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-international_assignment/list
7446683431818412035,更新外派信息,feishu_people,corehr,v2,employees.international_assignment,patch,更新指定的外派信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-international_assignment/patch,PATCH:/open-apis/corehr/v2/employees/international_assignments/:international_assignment_id,4,"[""custom""]",[],1749438633,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/employees-international_assignment/patch
7262387840977223681,批量查询员工任职信息,feishu_people,corehr,v2,employees.job_data,batch_get,通过员工雇佣 ID 批量查询任职信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-job_data/batch_get,POST:/open-apis/corehr/v2/employees/job_datas/batch_get,5,"[""isv"", ""custom""]",[],1753066403,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/batch_get
7262387840977207297,获取任职信息列表,feishu_people,corehr,v2,employees.job_data,query,获取任职信息列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/employees-job_data/query,POST:/open-apis/corehr/v2/employees/job_datas/query,6,"[""isv"", ""custom""]",[],1748347922,false,1,https://open.feishu.cn/document/corehr-v1/employee/job_data/query
7457854043681603588,查询枚举信息,feishu_people,corehr,v2,enum,search,根据枚举的APIName查询枚举详细信息,用于BPM等场景获取枚举选项。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/enum/search,POST:/open-apis/corehr/v2/enums/search,1733138055180,"[""isv"", ""custom""]",[],1736481355,false,1,https://open.feishu.cn/document/corehr-v1/basic-infomation/enum/search
7525709902931836932,根据条件批量获取职务,feishu_people,corehr,v2,job,batch_get,根据传入的职务ID或职务Code批量获取当前生效版本职务信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job/batch_get,POST:/open-apis/corehr/v2/jobs/batch_get,4,"[""isv"", ""custom""]",[],1760008898,false,1,
7277403063272701954,查询单个职务,feishu_people,corehr,v2,job,get,根据 ID 查询单个职务的详细信息,如职务名称、描述等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job/get,GET:/open-apis/corehr/v2/jobs/:job_id,6,"[""isv"", ""custom""]",[],1753969039,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job/get
7277403063272718338,批量查询职务,feishu_people,corehr,v2,job,list,查询全部职务详情,包括职务编码、名称等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job/list,GET:/open-apis/corehr/v2/jobs,5,"[""isv"", ""custom""]",[],1753969058,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job/list
7473071080241577988,查询指定时间范围职务版本,feishu_people,corehr,v2,job,query_multi_timeline,- 接口支持查询出对象生效时间段在指定的start_date和end_date之间的版本(即:会查询出生效时间段和查询时间段有交集的版本) - 接口支持对象版本相关字段的查询和返回(默认返回id和version_id),none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job/query_multi_timeline,POST:/open-apis/corehr/v2/jobs/query_multi_timeline,3,"[""isv"", ""custom""]",[],1753969077,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job/query_multi_timeline
7473775676862119940,查询当前生效信息发生变更的职务,feishu_people,corehr,v2,job,query_recent_change,查询指定时间范围内当前生效信息发生变更的职务,即只有职务当前生效版本的生效时间在查询时间范围内,才返回该职务id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job/query_recent_change,GET:/open-apis/corehr/v2/jobs/query_recent_change,2,"[""isv"", ""custom""]",[],1751379212,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job/query_recent_change
7449328616456601619,发起员工异动,feishu_people,corehr,v2,job_change,create,该接口用于发起员工异动(变更员工雇佣信息),若发起成功,会生成一条员工的异动数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_change/create,POST:/open-apis/corehr/v2/job_changes,9,"[""custom""]",[],1757378612,false,1,https://open.feishu.cn/document/corehr-v1/job_change/create-2
7449328616456585235,撤销异动,feishu_people,corehr,v2,job_change,revoke,该接口用于撤销员工异动,若发起成功,会撤销一条已发起、待生效或已生效的异动数据,同时产生相应的事件:[异动状态变更事件](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_change/events/updated)。该接口无法撤销批量发起的多人异动。使用时需指定操作人,关联了流程的异动需要流程管理员和审批单管理员权限。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_change/revoke,POST:/open-apis/corehr/v2/job_changes/:job_change_id/revoke,5,"[""custom""]",[],1740109985,false,1,https://open.feishu.cn/document/corehr-v1/job_change/revoke
7211423970042150916,搜索员工异动信息,feishu_people,corehr,v2,job_change,search,搜索异动信息,该接口会按照应用拥有的「员工数据」的权限范围返回数据,请确定在「开发者后台 - 权限管理 - 数据权限」中有申请「员工资源」权限范围,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_change/search,POST:/open-apis/corehr/v2/job_changes/search,6,"[""isv"", ""custom""]",[],1757378631,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/job_change/search
7252157701853216796,根据条件批量获取序列信息,feishu_people,corehr,v2,job_family,batch_get,通过序列 ID 或序列 Code 批量查询当前生效版本序列的详情信息,包括序列名称、启用状态、上级序列等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_family/batch_get,POST:/open-apis/corehr/v2/job_families/batch_get,4,"[""isv"", ""custom""]",[],1755516861,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_family/batch_get
7473071080241561604,查询指定时间范围序列版本,feishu_people,corehr,v2,job_family,query_multi_timeline,- 接口支持查询出对象生效时间段在指定的start_date和end_date之间的版本 - 接口支持对象版本相关字段的查询和返回(默认返回id和version_id) - 适用于需要回顾某段时间内对象版本变化的场景,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_family/query_multi_timeline,POST:/open-apis/corehr/v2/job_families/query_multi_timeline,3,"[""isv"", ""custom""]",[],1753969020,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_family/query_multi_timeline
7452973109948596226,查询当前生效信息发生变更的序列,feishu_people,corehr,v2,job_family,query_recent_change,查询指定时间范围内当前生效信息发生变更的序列,即只有序列前生效版本的生效时间在查询时间范围内,才返回该序列id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_family/query_recent_change,GET:/open-apis/corehr/v2/job_families/query_recent_change,5,"[""isv"", ""custom""]",[],1751379060,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_family/query_recent_change
7422326822924582914,创建职等,feishu_people,corehr,v2,job_grade,create,创建职等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_grade/create,POST:/open-apis/corehr/v2/job_grades,6,"[""isv"", ""custom""]",[],1765434836,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_grade/create
7422326822924550146,删除职等,feishu_people,corehr,v2,job_grade,delete,删除职等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_grade/delete,DELETE:/open-apis/corehr/v2/job_grades/:job_grade_id,2,"[""isv"", ""custom""]",[],1728439409,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_grade/delete
7422326822924566530,更新职等,feishu_people,corehr,v2,job_grade,patch,更新职等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_grade/patch,PATCH:/open-apis/corehr/v2/job_grades/:job_grade_id,5,"[""isv"", ""custom""]",[],1765434846,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_grade/patch
7366602835655720964,查询职等,feishu_people,corehr,v2,job_grade,query,查询职等的详细信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_grade/query,POST:/open-apis/corehr/v2/job_grades/query,4,"[""isv"", ""custom""]",[],1728972617,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_grade/query
7452973109948628994,查询当前生效信息发生变更的职等,feishu_people,corehr,v2,job_grade,query_recent_change,查询指定时间范围内当前生效信息发生变更的职等,即只有职等当前生效版本的生效时间在查询时间范围内,才返回该地点id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_grade/query_recent_change,GET:/open-apis/corehr/v2/job_grades/query_recent_change,3,"[""isv"", ""custom""]",[],1736492468,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_grade/query_recent_change
7252157701853200412,根据条件批量获取职级信息,feishu_people,corehr,v2,job_level,batch_get,该接口支持通过职级ID或职级Code批量查询职级详情信息,包括名称、描述、启用状态等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_level/batch_get,POST:/open-apis/corehr/v2/job_levels/batch_get,3,"[""isv"", ""custom""]",[],1755516873,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_level/batch_get
7452973109948612610,查询当前生效信息发生变更的职级,feishu_people,corehr,v2,job_level,query_recent_change,查询指定时间范围内当前生效信息发生变更的职级,即只有地点当前生效版本的生效时间在查询时间范围内,才返回该职级id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/job_level/query_recent_change,GET:/open-apis/corehr/v2/job_levels/query_recent_change,4,"[""isv"", ""custom""]",[],1751379118,false,1,https://open.feishu.cn/document/corehr-v1/job-management/job_level/query_recent_change
7420421437192945667,启用/停用地点,feishu_people,corehr,v2,location,active,启用/停用地点,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location/active,POST:/open-apis/corehr/v2/locations/active,4,"[""custom""]",[],1730174695,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/active
7252157701853167644,通过地点 ID 批量获取地点信息,feishu_people,corehr,v2,location,batch_get,该接口用于根据地点 ID批量查询地点信息,信息包含地点名称、描述、地点用途、工时制度、区域设置、时区以及关联的地址信息等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location/batch_get,POST:/open-apis/corehr/v2/locations/batch_get,6,"[""isv"", ""custom""]",[],1733479516,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/batch_get
7420421437192962051,更新地点,feishu_people,corehr,v2,location,patch,更新地点,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location/patch,PATCH:/open-apis/corehr/v2/locations/:location_id,10,"[""custom""]",[],1765434777,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/patch
7447798339566419971,查询当前生效信息发生变更的地点,feishu_people,corehr,v2,location,query_recent_change,查询指定时间范围内当前生效信息发生变更的地点,即只有地点当前生效版本的生效时间在查询时间范围内,才返回该地点id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location/query_recent_change,GET:/open-apis/corehr/v2/locations/query_recent_change,8,"[""isv"", ""custom""]",[],1736492422,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/query_recent_change
7420421437192912899,添加地点地址,feishu_people,corehr,v2,location.address,create,添加地点地址,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location-address/create,POST:/open-apis/corehr/v2/locations/:location_id/addresses,1727248177513,"[""custom""]",[],1765434787,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/location-address/create
7420421437192978435,删除地点地址,feishu_people,corehr,v2,location.address,delete,删除地点地址,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location-address/delete,DELETE:/open-apis/corehr/v2/locations/:location_id/addresses/:address_id,1727248234030,"[""custom""]",[],1730174630,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/location-address/delete
7420421437192929283,更新地点地址,feishu_people,corehr,v2,location.address,patch,更新地点地址,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/location-address/patch,PATCH:/open-apis/corehr/v2/locations/:location_id/addresses/:address_id,1727248208053,"[""custom""]",[],1765183683,false,1,https://open.feishu.cn/document/corehr-v1/organization-management/location/location-address/patch
7386577676713328643,编辑离职信息,feishu_people,corehr,v2,offboarding,edit,该接口用于编辑飞书人事的[离职信息](https://people.feishu.cn/people/members/dimission/management),支持的字段包括离职日期、离职原因、离职申请发起时间和离职申请审批通过时间等等,同时也支持编辑离职的自定义字段(附件字段除外)。当接口成功提交后,会产生对应的[离职信息变更](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/events/updated)事件。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/edit,POST:/open-apis/corehr/v2/offboardings/edit,4,"[""isv"", ""custom""]",[],1767755095,false,1,https://open.feishu.cn/document/corehr-v1/offboarding/edit
7428522865559273475,撤销离职,feishu_people,corehr,v2,offboarding,revoke,通过离职ID撤销飞书人事的[离职信息](https://people.feishu.cn/people/members/dimission/management)。当接口成功提交后,会产生对应的[离职信息变更](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/events/updated)事件。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/revoke,POST:/open-apis/corehr/v2/offboardings/revoke,3,"[""custom""]",[],1767755115,false,1,https://open.feishu.cn/document/corehr-v1/offboarding/revoke
7428522865559257091,操作员工离职,feishu_people,corehr,v2,offboarding,submit_v2,该接口用于发起飞书人事的[离职信息](https://people.feishu.cn/people/members/dimission/management),支持填写离职日期、离职原因、屏蔽名单和自定义字段(附件字段除外)等。当接口成功提交后,会产生对应的[离职信息变更](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/events/updated)事件。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/offboarding/submit_v2,POST:/open-apis/corehr/v2/offboardings/submit_v2,6,"[""isv"", ""custom""]",[],1737884220,false,1,https://open.feishu.cn/document/corehr-v1/offboarding/submit_v2
7508634905587040259,启停用通道,feishu_people,corehr,v2,pathway,active,对通道进行 启用 或 停用 操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pathway/active,POST:/open-apis/corehr/v2/pathways/active,4,"[""isv"", ""custom""]",[],1753857302,false,1,
7508634905586991107,获取通道信息,feishu_people,corehr,v2,pathway,batch_get,根据通道的ID批量获取通道的名称、编码、描述信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pathway/batch_get,POST:/open-apis/corehr/v2/pathways/batch_get,3,"[""isv"", ""custom""]",[],1755516885,false,1,
7508634905586958339,创建通道,feishu_people,corehr,v2,pathway,create,创建通道,可以定义通道的名称、编码和描述信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pathway/create,POST:/open-apis/corehr/v2/pathways,7,"[""isv"", ""custom""]",[],1765434856,false,1,
7508634905586974723,删除通道,feishu_people,corehr,v2,pathway,delete,根据传入的通道 ID 删除一个相应的通道信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pathway/delete,DELETE:/open-apis/corehr/v2/pathways/:pathway_id,5,"[""isv"", ""custom""]",[],1753857289,false,1,
7508634905587023875,更新通道,feishu_people,corehr,v2,pathway,patch,更新通道,可以根据通道的ID更新通道的名称、编码、描述信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pathway/patch,PATCH:/open-apis/corehr/v2/pathways/:pathway_id,6,"[""isv"", ""custom""]",[],1765434865,false,1,
7225452763517108227,创建个人信息,feishu_people,corehr,v2,person,create,创建员工的个人信息,包括姓名、个人电话、邮箱、联系地址、政治面貌、户口信息等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/person/create,POST:/open-apis/corehr/v2/persons,12,"[""custom""]",[],1733215357,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/create-2
7225452763517091843,更新个人信息,feishu_people,corehr,v2,person,patch,更新员工的个人信息,包括姓名、个人电话、邮箱、联系地址、政治面貌、户口信息等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/person/patch,PATCH:/open-apis/corehr/v2/persons/:person_id,11,"[""custom""]",[],1733130523,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/employee/person/patch-2
7384280065851129857,启停用岗位,feishu_people,corehr,v2,position,active,对岗位进行启用或停用操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/active,POST:/open-apis/corehr/v2/positions/active,3,"[""isv"", ""custom""]",[],1760409246,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/active
7384280065851113473,创建岗位信息,feishu_people,corehr,v2,position,create,创建岗位,可定义岗位关联的职务、职级、序列,以及岗位描述等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/create,POST:/open-apis/corehr/v2/positions,7,"[""isv"", ""custom""]",[],1765434876,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/create
7384280065851097089,删除岗位,feishu_people,corehr,v2,position,del_position,删除整条岗位记录,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/del_position,POST:/open-apis/corehr/v2/positions/del_position,2,"[""isv"", ""custom""]",[],1760409256,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/del_position
7384280065851080705,更新岗位信息,feishu_people,corehr,v2,position,patch,更新岗位的版本信息,例如岗位关联的职务、职级、序列,以及岗位描述等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/patch,PATCH:/open-apis/corehr/v2/positions/:position_id,6,"[""isv"", ""custom""]",[],1765434885,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/patch
7384280065851064321,查询岗位信息,feishu_people,corehr,v2,position,query,支持通过岗位 ID、部门 ID 查询岗位的详细信息,例如岗位关联的职务、职级、序列,以及岗位描述,是否关键岗位等,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/query,POST:/open-apis/corehr/v2/positions/query,5,"[""isv"", ""custom""]",[],1760409225,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/query
7452973109948645378,查询指定时范围内当前版本信息发生变更的岗位,feishu_people,corehr,v2,position,query_recent_change,查询指定时间范围内信息发生变更的岗位,仅当岗位当前生效版本的生效时间在查询时间范围内,才返回该岗位id,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/position/query_recent_change,GET:/open-apis/corehr/v2/positions/query_recent_change,4,"[""isv"", ""custom""]",[],1760409235,false,1,https://open.feishu.cn/document/corehr-v1/job-management/position/query_recent_change
7357756972752699394,操作员工完成入职,feishu_people,corehr,v2,pre_hire,complete,操作待入职员工完成入职,正式入职建立员工和公司/组织的雇佣关系,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/complete,POST:/open-apis/corehr/v2/pre_hires/:pre_hire_id/complete,3,"[""isv"", ""custom""]",[],1721042445,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/complete
7160511371865014276,直接创建待入职,feishu_people,corehr,v2,pre_hire,create,使用指定数据创建一个待入职人员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/create,POST:/open-apis/corehr/v2/pre_hires,11,"[""custom""]",[],1764323725,false,1,https://open.feishu.cn/document/server-docs/corehr-v1/pre_hire/create
7362022982037504003,删除待入职信息,feishu_people,corehr,v2,pre_hire,delete,删除待入职人员,删除后无法搜索到待入职人员信息,请谨慎操作,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/delete,DELETE:/open-apis/corehr/v2/pre_hires/:pre_hire_id,9,"[""isv"", ""custom""]",[],1720766061,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/delete
7357756972752715778,更新待入职信息,feishu_people,corehr,v2,pre_hire,patch,通过指定系统字段和自定义字段以更新待入职数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/patch,PATCH:/open-apis/corehr/v2/pre_hires/:pre_hire_id,10,"[""custom""]",[],1756127395,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/patch
7386487948991299587,查询待入职信息,feishu_people,corehr,v2,pre_hire,query,该接口用于根据待入职人员 ID(支持批量)查询待入职人员信息,信息包含姓名、手机号等个人信息和任职信息。 - 延迟说明:数据库主从延迟 2s 以内,即:直接创建待入职后2s内调用此接口可能查询不到数据。 - 性能说明:本接口返回数据量较多,查询时请控制每批次数量(<10)和适当减少查询字段数(<50),none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/query,POST:/open-apis/corehr/v2/pre_hires/query,8,"[""isv"", ""custom""]",[],1756127417,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/query
7450056310967681026,恢复入职,feishu_people,corehr,v2,pre_hire,restore_flow_instance,通过本接口对指定已撤销的待入职员工执行恢复入职操作,对应入职管理页面恢复入职按钮,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/restore_flow_instance,POST:/open-apis/corehr/v2/pre_hires/restore_flow_instance,13,"[""isv"", ""custom""]",[],1734606436,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/restore_flow_instance
7263303427627270148,搜索待入职信息,feishu_people,corehr,v2,pre_hire,search,该接口用于根据工号/待入职人员 ID /入职地点等查询条件搜索待入职人员信息。 - 查询的待入职数量及字段越多,耗时越久,使用时建议细化指定需要的字段。 - 创建待入职后,会有5秒内的数据延迟导致搜索不到数据,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/search,POST:/open-apis/corehr/v2/pre_hires/search,7,"[""isv"", ""custom""]",[],1756127437,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/search
7525488347772682242,流转入职任务,feishu_people,corehr,v2,pre_hire,transform_onboarding_task,处于进行中的入职流程,可通过本接口实现手动开启、提交或审批入职任务 - 当任务处于「手动开启」时,可通过本接口手动开启任务,将任务状态流转到「进行中」 - 当任务处于「进行中」时,可通过本接口提交任务,将任务流转到「审批中」或「已完成」 - 当任务处于「审批中」时,可通过本接口审批任务,将任务流转到「已完成」或「已拒绝」 - 当任务处于「已拒绝」时,可通过本接口提交任务,将任务流转到「审批中」,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/transform_onboarding_task,POST:/open-apis/corehr/v2/pre_hires/transform_onboarding_task,4,"[""custom""]",[],1758722082,false,1,
7357756972752732162,流转入职任务,feishu_people,corehr,v2,pre_hire,transit_task,配置入职流程后,可通过本接口流转进行中的任务,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/transit_task,POST:/open-apis/corehr/v2/pre_hires/:pre_hire_id/transit_task,5,"[""custom""]",[],1742178924,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/transit_task
7450056310967664642,撤销入职,feishu_people,corehr,v2,pre_hire,withdraw_onboarding,通过本接口对指定待入职,入职准备就绪的员工执行撤销入职操作,对应入职管理页面撤销入职按钮,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/pre_hire/withdraw_onboarding,POST:/open-apis/corehr/v2/pre_hires/withdraw_onboarding,14,"[""isv"", ""custom""]",[],1734606425,false,1,https://open.feishu.cn/document/corehr-v1/pre_hire/withdraw_onboarding
7254814386694569986,启用/停用试用期考核功能,feishu_people,corehr,v2,probation,enable_disable_assessment,启用/停用试用期考核功能,启用后系统功能中针对试用期考核相关的字段会自动启用,并可通过接口更新试用期考核结果,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation/enable_disable_assessment,POST:/open-apis/corehr/v2/probation/enable_disable_assessment,7,"[""isv"", ""custom""]",[],1707186731,false,1,https://open.feishu.cn/document/corehr-v1/probation/enable_disable_assessment
7254814386694553602,搜索试用期信息,feishu_people,corehr,v2,probation,search,搜索试用期信息,创建试用期后立刻搜索,可能会存在 5s 左右延迟,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation/search,POST:/open-apis/corehr/v2/probation/search,5,"[""isv"", ""custom""]",[],1750836113,false,1,https://open.feishu.cn/document/corehr-v1/probation/search
7254814386694635522,发起转正,feishu_people,corehr,v2,probation,submit,通过本接口可以为员工发起转正,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation/submit,POST:/open-apis/corehr/v2/probation/submit,3,"[""isv"", ""custom""]",[],1740729735,false,1,https://open.feishu.cn/document/corehr-v1/probation/submit
7254814386694651906,撤销转正,feishu_people,corehr,v2,probation,withdraw,可通过本接口撤销对员工之前发起的转正,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation/withdraw,POST:/open-apis/corehr/v2/probation/withdraw,2,"[""isv"", ""custom""]",[],1721042511,false,1,https://open.feishu.cn/document/corehr-v1/probation/withdraw
7254814386694586370,新增试用期考核信息,feishu_people,corehr,v2,probation.assessment,create,新增员工试用期考核结果,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation-assessment/create,POST:/open-apis/corehr/v2/probation/assessments,8,"[""isv"", ""custom""]",[],1707186753,false,1,https://open.feishu.cn/document/corehr-v1/probation/create
7254814386694619138,删除试用期考核信息,feishu_people,corehr,v2,probation.assessment,delete,删除试用期的考核结果,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation-assessment/delete,DELETE:/open-apis/corehr/v2/probation/assessments/:assessment_id,4,"[""isv"", ""custom""]",[],1707186796,false,1,https://open.feishu.cn/document/corehr-v1/probation/delete
7254814386694602754,更新试用期考核信息,feishu_people,corehr,v2,probation.assessment,patch,更新试用期的考核结果,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/probation-assessment/patch,PATCH:/open-apis/corehr/v2/probation/assessments/:assessment_id,6,"[""isv"", ""custom""]",[],1707186774,false,1,https://open.feishu.cn/document/corehr-v1/probation/patch
7455284757275262995,获取流程数据,feishu_people,corehr,v2,process,flow_variable_data,根据流程实例 id(process_id)获取流程字段数据,包括业务字段和自定义字段。仅支持飞书人事、假勤相关业务流程。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process/flow_variable_data,GET:/open-apis/corehr/v2/processes/:process_id/flow_variable_data,6,"[""isv"", ""custom""]",[],1761048293,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/flow_variable_data
7296819819722588188,获取单个流程详情,feishu_people,corehr,v2,process,get,根据流程实例 id(process_id)获取单个流程详情(此功能不受数据权限范围控制)。比如流程状态、流程发起人、流程发起时间、流程摘要、流程里的所有待办、已办、抄送任务等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process/get,GET:/open-apis/corehr/v2/processes/:process_id,7,"[""isv"", ""custom""]",[],1764834931,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/get
7296819819722571804,查询流程实例列表,feishu_people,corehr,v2,process,list,本接口用于查询流程实例列表,支持通过流程定义 ID 等进行查询(此功能不受数据权限范围控制),其中: - 流程实例:是指用户在业务功能或者飞书人事的审批中心发起的具体流程,process_id 是其唯一标识。 - 流程定义:是指管理员在设置侧配置的流程,类似流程模板,flow_definition_id 是其唯一标识。用户发起的流程是按照对应的流程定义的配置生成。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process/list,GET:/open-apis/corehr/v2/processes,8,"[""isv"", ""custom""]",[],1766634493,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/list
7340625370520797187,通过/拒绝审批任务,feishu_people,corehr,v2,process.approver,update,对于单个审批任务进行通过(提交)或拒绝操作。对于多人或签节点,一个审批任务通过则整个节点通过;对于多人会签节点,所有审批任务通过则节点通过。在通过(提交)时,若表单中有必填字段,支持写入表单字段。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process-approver/update,PUT:/open-apis/corehr/v2/processes/:process_id/approvers/:approver_id,3,"[""isv"", ""custom""]",[],1750130840,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/approver-task/update
7431073872102866972,加签审批任务,feishu_people,corehr,v2,process.extra,update,给单个流程中的节点或审批任务加签,加签方式有前加签、并加签、后加签三种。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process-extra/update,PUT:/open-apis/corehr/v2/processes/:process_id/extra,2,"[""isv"", ""custom""]",[],1734523935,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/approver-task/update-3
7362022982036717571,获取流程表单数据,feishu_people,corehr,v2,process.form_variable_data,get,根据流程实例 id(process_id)获取流程表单字段数据,包括表单里的业务字段和自定义字段。仅支持飞书人事、假勤相关业务流程。 注:[旧版 API](https://open.larkoffice.com/document/server-docs/corehr-v1/process-form_variable_data/get) 文档已移动到【历史版本】目录。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process-form_variable_data/get,GET:/open-apis/corehr/v2/processes/:process_id/form_variable_data,5,"[""isv"", ""custom""]",[],1761048314,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/get-2
7431073872102883356,转交审批任务,feishu_people,corehr,v2,process.transfer,update,对于单个审批任务进行转交操作。转交后审批流程流转给被转交人。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process-transfer/update,PUT:/open-apis/corehr/v2/processes/:process_id/transfer,1,"[""isv"", ""custom""]",[],1734523946,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/approver-task/update-2
7431231062508142593,撤销流程,feishu_people,corehr,v2,process_revoke,update,撤销单个流程,状态为已完成的流程能够进行撤销,使用时需指定操作人,目前支持流程管理员和审批单管理员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process_revoke/update,PUT:/open-apis/corehr/v2/process_revoke/:process_id,2,"[""isv"", ""custom""]",[],1734434247,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/update-2
7431231062508126209,撤回流程,feishu_people,corehr,v2,process_withdraw,update,对状态为“审批中”的单个审批实例进行撤回操作,撤回后审批流程结束,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/process_withdraw/update,PUT:/open-apis/corehr/v2/process_withdraw/:process_id,1,"[""isv"", ""custom""]",[],1734523924,false,1,https://open.feishu.cn/document/corehr-v1/process-form_variable_data/process-instance/update
7446337145820053508,批量删除填报行,feishu_people,corehr,v2,report_detail_row,batchDelete,批量删除填报行后,可在【设置-编制规划设置-编制规划XXX-集中填报-查看数据】进行查看。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/report_detail_row/batchDelete,POST:/open-apis/corehr/v2/report_detail_row/batchDelete,1739969210242,"[""isv"", ""custom""]",[],1750734342,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batchDelete
7446337145820069892,批量创建/更新填报行,feishu_people,corehr,v2,report_detail_row,batchSave,批量创建/更新填报行后,可在【设置-编制规划设置-编制规划XXX-集中填报-查看数据】进行查看。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/report_detail_row/batchSave,POST:/open-apis/corehr/v2/report_detail_row/batchSave,1739969220170,"[""isv"", ""custom""]",[],1762844368,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batchSave-2
7376163028442841116,下载电子签文件,feishu_people,corehr,v2,signature_file,download,该接口用于下载电子签文件,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_file/download,POST:/open-apis/corehr/v2/signature_files/:signature_file_id/download,2,"[""isv"", ""custom""]",[],1764324042,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/download
7376163028442808348,获取电子签文件列表,feishu_people,corehr,v2,signature_file,list,该接口用于获取电子签文件列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_file/list,GET:/open-apis/corehr/v2/signature_files,7,"[""isv"", ""custom""]",[],1764323959,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/list
7398535900936847363,根据流程获取电子签文件信息,feishu_people,corehr,v2,signature_file,list_by_biz_id,该接口可以根据传入的业务类型和流程ID获取该流程中签署的电子签文件信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_file/list_by_biz_id,GET:/open-apis/corehr/v2/signature_files/list_by_biz_id,3,"[""custom""]",[],1764324021,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/list_by_biz_id
7408897731056500740,查询电子签文件详情,feishu_people,corehr,v2,signature_file,query,该接口可用于批量查询电子签文件列表,并且支持根据文件ID、更新时间范围、文件状态、模板ID等条件检索,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_file/query,POST:/open-apis/corehr/v2/signature_files/query,6,"[""custom""]",[],1764323979,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/query
7420421437193633795,终止电子签文件,feishu_people,corehr,v2,signature_file,terminate,该接口用于终止在签署流程中的电子签文件,不再执行后续的签署流程,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_file/terminate,POST:/open-apis/corehr/v2/signature_files/terminate,1727679522044,"[""custom""]",[],1764323939,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/terminate
7398535900936863747,获取文件签署节点信息,feishu_people,corehr,v2,signature_node,list_by_file_id,该接口可以通过电子签文件ID查询到该电子签文件的签署流程的各个节点信息,包括签署节点、盖章节点、审阅节点等,各个节点有对应的内容、完成时间、审阅人、盖章人等信息,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_node/list_by_file_id,GET:/open-apis/corehr/v2/signature_nodes/list_by_file_id,5,"[""custom""]",[],1764324000,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_file/list_by_file_id
7395391068203089948,获取电子签模板内容,feishu_people,corehr,v2,signature_template,search,根据多个模板ID获取电子签模板基本信息和内容列表。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_template/search,GET:/open-apis/corehr/v2/signature_templates/search,1721876072703,"[""isv"", ""custom""]",[],1764324063,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_template_info_with_thumbnail/search
7376163028442824732,获取电子签模板列表,feishu_people,corehr,v2,signature_template_info_with_thumbnail,list,该接口用于批量获取电子签模板信息,包括模板类别、用途、适用区域等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/signature_template_info_with_thumbnail/list,GET:/open-apis/corehr/v2/signature_template_info_with_thumbnails,1717384041854,"[""isv"", ""custom""]",[],1764324084,false,1,https://open.feishu.cn/document/corehr-v1/siganture/signature_template_info_with_thumbnail/list
7314710843818508289,查询编制规划方案,feishu_people,corehr,v2,workforce_plan,list,根据传入的筛选项获取编制规划的方案列表,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/workforce_plan/list,GET:/open-apis/corehr/v2/workforce_plans,1739969200540,"[""custom""]",[],1740481866,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/list
7314710843818524673,查询编制规划明细信息(不支持自定义组织),feishu_people,corehr,v2,workforce_plan_detail,batch,查询编制规划明细,包括维度信息、编制数和预估在职人数,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/workforce_plan_detail/batch,POST:/open-apis/corehr/v2/workforce_plan_details/batch,1739969193519,"[""custom""]",[],1748953000,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batch
7473343327586435100,查询编制规划明细信息(支持自定义组织),feishu_people,corehr,v2,workforce_plan_detail,batch_v2,查询编制规划明细,包括维度信息、编制数、预估在职人数、在职人数和预增/预减人数。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/workforce_plan_detail/batch_v2,POST:/open-apis/corehr/v2/workforce_plan_details/batch_v2,1739969172588,"[""custom""]",[],1748953010,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batch_v2
7446337145820086276,批量删除明细行,feishu_people,corehr,v2,workforce_plan_detail_row,batchDelete,批量删除明细行后,可在【设置-编制规划设置-编制规划XXX-编辑数据】进行查看明细行是否被删除。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/workforce_plan_detail_row/batchDelete,POST:/open-apis/corehr/v2/workforce_plan_detail_row/batchDelete,1739969229372,"[""isv"", ""custom""]",[],1750734323,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batchDelete-2
7446337145820102660,批量创建/更新明细行,feishu_people,corehr,v2,workforce_plan_detail_row,batchSave,批量创建/更新明细行后,可在【设置-编制规划设置-编制规划XXX-编辑数据】进行查看。,none,true,/document/uAjLw4CM/ukTMukTMukTM/corehr-v2/workforce_plan_detail_row/batchSave,POST:/open-apis/corehr/v2/workforce_plan_detail_row/batchSave,1739969236676,"[""isv"", ""custom""]",[],1762844357,false,1,https://open.feishu.cn/document/corehr-v1/workforce_plan/batchSave
6955768425688399875,获取客服邮箱,helpdesk,helpdesk,v1,agent,agent_email,该接口用于获取客服邮箱地址。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent/agent_email,GET:/open-apis/helpdesk/v1/agent_emails,1619427086774,"[""custom""]",[],1692084858,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent/agent_email
6974742353936842753,更新客服信息,helpdesk,helpdesk,v1,agent,patch,更新客服状态等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent/patch,PATCH:/open-apis/helpdesk/v1/agents/:agent_id,1623816536624,"[""custom""]",[],1692084858,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent/patch
6955768425688432643,删除客服工作日程,helpdesk,helpdesk,v1,agent.schedules,delete,该接口用于删除客服日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent-schedules/delete,DELETE:/open-apis/helpdesk/v1/agents/:agent_id/schedules,4,"[""custom""]",[],1709724838,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent-schedules/delete
6955768425688465411,查询指定客服工作日程,helpdesk,helpdesk,v1,agent.schedules,get,该接口用于获取客服信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent-schedules/get,GET:/open-apis/helpdesk/v1/agents/:agent_id/schedules,2,"[""custom""]",[],1692084859,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent-schedules/get
6955768425688514563,更新客服工作日程,helpdesk,helpdesk,v1,agent.schedules,patch,该接口用于更新客服的日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent-schedules/patch,PATCH:/open-apis/helpdesk/v1/agents/:agent_id/schedules,3,"[""custom""]",[],1709724838,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent-schedules/patch
6955768425688334339,创建客服工作日程,helpdesk,helpdesk,v1,agent_schedule,create,该接口用于创建客服日程。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_schedule/create,POST:/open-apis/helpdesk/v1/agent_schedules,5,"[""custom""]",[],1713162095,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent-schedules/create
6955768425688350723,查询全部客服工作日程,helpdesk,helpdesk,v1,agent_schedule,list,该接口用于获取所有客服信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_schedule/list,GET:/open-apis/helpdesk/v1/agent_schedules,1,"[""custom""]",[],1715680417,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent-schedules/list
6955768425688268803,创建客服技能,helpdesk,helpdesk,v1,agent_skill,create,该接口用于创建客服技能。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill/create,POST:/open-apis/helpdesk/v1/agent_skills,5,"[""custom""]",[],1709724838,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill/create
6955768425688367107,删除客服技能,helpdesk,helpdesk,v1,agent_skill,delete,该接口用于删除客服技能。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill/delete,DELETE:/open-apis/helpdesk/v1/agent_skills/:agent_skill_id,4,"[""custom""]",[],1709724838,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill/delete
6955768425688481795,查询指定客服技能,helpdesk,helpdesk,v1,agent_skill,get,该接口用于获取客服技能。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill/get,GET:/open-apis/helpdesk/v1/agent_skills/:agent_skill_id,2,"[""custom""]",[],1692084860,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill/get
6955768425688285187,查询全部客服技能,helpdesk,helpdesk,v1,agent_skill,list,获取全部客服技能。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill/list,GET:/open-apis/helpdesk/v1/agent_skills,1,"[""custom""]",[],1692084860,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill/list
6955768425688416259,更新客服技能,helpdesk,helpdesk,v1,agent_skill,patch,该接口用于更新客服技能。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill/patch,PATCH:/open-apis/helpdesk/v1/agent_skills/:agent_skill_id,3,"[""custom""]",[],1709724839,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill/patch
6955768425688317955,获取客服技能列表,helpdesk,helpdesk,v1,agent_skill_rule,list,该接口用于获取全部客服技能。仅支持自建应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/agent_skill_rule/list,GET:/open-apis/helpdesk/v1/agent_skill_rules,1,"[""custom""]",[],1717396586,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/agent-function/agent_skill_rule/list
7036209421748764675,服务台机器人向工单绑定的群内发送消息,helpdesk,helpdesk,v1,bot.message,create,通过服务台机器人给指定用户的服务台专属群或私聊发送消息,支持文本、富文本、卡片、图片。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/bot-message/create,POST:/open-apis/helpdesk/v1/message,2,"[""custom""]",[],1746759359,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket-message/create-2
6955768699895775234,创建知识库分类,helpdesk,helpdesk,v1,category,create,该接口用于创建知识库分类。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/category/create,POST:/open-apis/helpdesk/v1/categories,7,"[""custom""]",[],1709724839,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/category/create
6955768699895971842,删除知识库分类详情,helpdesk,helpdesk,v1,category,delete,该接口用于删除知识库分类详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/category/delete,DELETE:/open-apis/helpdesk/v1/categories/:id,4,"[""custom""]",[],1709724840,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/category/delete
6955768699896020994,获取知识库分类,helpdesk,helpdesk,v1,category,get,该接口用于获取知识库分类。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/category/get,GET:/open-apis/helpdesk/v1/categories/:id,6,"[""custom""]",[],1692084863,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/category/get
6955768699895889922,获取全部知识库分类,helpdesk,helpdesk,v1,category,list,该接口用于获取服务台知识库所有分类。,none,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/category/list-categories,GET:/open-apis/helpdesk/v1/categories,3,"[""custom""]",[],1672022718,false,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/category/list-categories
6955768699895595010,更新知识库分类详情,helpdesk,helpdesk,v1,category,patch,该接口用于更新知识库分类详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/category/patch,PATCH:/open-apis/helpdesk/v1/categories/:id,5,"[""custom""]",[],1709724839,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/category/patch
6955768699895873538,订阅服务台事件,helpdesk,helpdesk,v1,event,subscribe,本接口用于订阅服务台事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/event/subscribe,POST:/open-apis/helpdesk/v1/events/subscribe,2,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/event/subscribe
6955768699896053762,取消订阅服务台事件,helpdesk,helpdesk,v1,event,unsubscribe,本接口用于取消订阅服务台事件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/event/unsubscribe,POST:/open-apis/helpdesk/v1/events/unsubscribe,1,"[""custom""]",[],1692084865,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/event/unsubscribe
6955768699895791618,创建知识库,helpdesk,helpdesk,v1,faq,create,该接口用于创建知识库。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/create,POST:/open-apis/helpdesk/v1/faqs,7,"[""custom""]",[],1723174802,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/create
6955768699895922690,删除知识库,helpdesk,helpdesk,v1,faq,delete,该接口用于删除知识库。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/delete,DELETE:/open-apis/helpdesk/v1/faqs/:id,6,"[""custom""]",[],1709724839,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/delete
6955768699895578626,获取知识库图像,helpdesk,helpdesk,v1,faq,faq_image,该接口用于获取知识库图像。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/faq_image,GET:/open-apis/helpdesk/v1/faqs/:id/image/:image_key,2,"[""custom""]",[],1692084863,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/faq_image
6955768699895906306,获取指定知识库详情,helpdesk,helpdesk,v1,faq,get,该接口用于获取服务台知识库详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/get,GET:/open-apis/helpdesk/v1/faqs/:id,4,"[""custom""]",[],1692084862,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/get
6955768699895693314,获取全部知识库详情,helpdesk,helpdesk,v1,faq,list,该接口用于获取服务台知识库详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/list,GET:/open-apis/helpdesk/v1/faqs,3,"[""custom""]",[],1714120422,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/list
6955768699895676930,修改知识库,helpdesk,helpdesk,v1,faq,patch,该接口用于修改知识库。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/patch,PATCH:/open-apis/helpdesk/v1/faqs/:id,5,"[""custom""]",[],1719457048,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/patch
6955768699895808002,搜索知识库,helpdesk,helpdesk,v1,faq,search,该接口用于搜索服务台知识库。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/faq/search,GET:/open-apis/helpdesk/v1/faqs/search,1,"[""custom""]",[],1692084863,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/faq-management/faq/search
6999529163292524546,取消审核,helpdesk,helpdesk,v1,notification,cancel_approve,提交审核后,如果需要取消审核,则调用此接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/cancel_approve,POST:/open-apis/helpdesk/v1/notifications/:notification_id/cancel_approve,4,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/cancel_approve
6999529163292557314,取消推送,helpdesk,helpdesk,v1,notification,cancel_send,取消推送接口,审核通过后待调度可以调用,发送过程中可以调用(会撤回已发送的消息),发送完成后可以需要推送(会撤回所有已发送的消息)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/cancel_send,POST:/open-apis/helpdesk/v1/notifications/:notification_id/cancel_send,2,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/cancel_send
6999529163292639234,创建推送,helpdesk,helpdesk,v1,notification,create,调用接口创建推送,创建成功后为草稿状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/create,POST:/open-apis/helpdesk/v1/notifications,9,"[""custom""]",[],1692084863,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/create
6999529163292540930,执行推送,helpdesk,helpdesk,v1,notification,execute_send,审核通过后调用此接口设置推送时间,等待调度系统调度,发送消息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/execute_send,POST:/open-apis/helpdesk/v1/notifications/:notification_id/execute_send,3,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/execute_send
6999529163292606466,查询推送,helpdesk,helpdesk,v1,notification,get,查询推送详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/get,GET:/open-apis/helpdesk/v1/notifications/:notification_id,7,"[""custom""]",[],1741783349,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/get
6999529163292590082,更新推送,helpdesk,helpdesk,v1,notification,patch,更新推送信息,只有在草稿状态下才可以调用此接口进行更新。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/patch,PATCH:/open-apis/helpdesk/v1/notifications/:notification_id,8,"[""custom""]",[],1692084863,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/patch
6999529163292491778,预览推送,helpdesk,helpdesk,v1,notification,preview,在正式执行推送之前是可以调用此接口预览设置的推送内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/preview,POST:/open-apis/helpdesk/v1/notifications/:notification_id/preview,6,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/preview
6999529163292508162,提交审核,helpdesk,helpdesk,v1,notification,submit_approve,正常情况下调用创建推送接口后,就可以调用提交审核接口,如果创建人是服务台owner则会自动审核通过,否则会通知服务台owner审核此推送信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/notification/submit_approve,POST:/open-apis/helpdesk/v1/notifications/:notification_id/submit_approve,5,"[""custom""]",[],1692084864,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/notification/submit_approve
6955768699895988226,回复用户在工单里的提问,helpdesk,helpdesk,v1,ticket,answer_user_query,该接口用于回复用户提问结果至工单,需要工单仍处于进行中且未接入人工状态。仅支持自建应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/answer_user_query,POST:/open-apis/helpdesk/v1/tickets/:ticket_id/answer_user_query,3,"[""custom""]",[],1692084861,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/answer_user_query
6955768425688383491,获取服务台自定义字段,helpdesk,helpdesk,v1,ticket,customized_fields,该接口用于获取服务台自定义字段详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/customized_fields,GET:/open-apis/helpdesk/v1/customized_fields,2,"[""custom""]",[],1692084861,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/customized_fields
6955768699896070146,查询指定工单详情,helpdesk,helpdesk,v1,ticket,get,该接口用于获取单个服务台工单详情。仅支持自建应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/get,GET:/open-apis/helpdesk/v1/tickets/:ticket_id,7,"[""custom""]",[],1741783326,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/get
6955768699896086530,查询全部工单详情,helpdesk,helpdesk,v1,ticket,list,该接口用于获取全部工单详情。仅支持自建应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/list,GET:/open-apis/helpdesk/v1/tickets,5,"[""custom""]",[],1692084861,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/list
6955768699895726082,创建服务台对话,helpdesk,helpdesk,v1,ticket,start_service,该接口用于创建服务台对话。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/start_service,POST:/open-apis/helpdesk/v1/start_service,8,"[""isv"", ""custom""]",[],1741783325,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/start_service
6955768699895611394,获取工单内图像,helpdesk,helpdesk,v1,ticket,ticket_image,该接口用于获取服务台工单消息图象。仅支持自建应用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/ticket_image,GET:/open-apis/helpdesk/v1/ticket_images,4,"[""custom""]",[],1740053884,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/ticket_image
6955768699895824386,更新工单详情,helpdesk,helpdesk,v1,ticket,update,该接口用于更新服务台工单详情。只会更新数据,不会触发相关操作。如修改工单状态到关单,不会关闭聊天页面。仅支持自建应用。要更新的工单字段必须至少输入一项。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket/update,PUT:/open-apis/helpdesk/v1/tickets/:ticket_id,6,"[""custom""]",[],1709724839,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket/update
6955768699895758850,发送工单消息,helpdesk,helpdesk,v1,ticket.message,create,该接口用于发送工单消息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket-message/create,POST:/open-apis/helpdesk/v1/tickets/:ticket_id/messages,4,"[""custom""]",[],1692084861,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket-message/create
6955768699895840770,获取工单消息详情,helpdesk,helpdesk,v1,ticket.message,list,该接口用于获取服务台工单消息详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket-message/list,GET:/open-apis/helpdesk/v1/tickets/:ticket_id/messages,3,"[""custom""]",[],1692084861,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket-message/list
6955768699895562242,创建工单自定义字段,helpdesk,helpdesk,v1,ticket_customized_field,create,该接口用于创建自定义字段。,none,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket_customized_field/create-ticket-customized-field,POST:/open-apis/helpdesk/v1/ticket_customized_fields,10,"[""custom""]",[],1741783338,false,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket_customized_field/create-ticket-customized-field
6955768699895644162,删除工单自定义字段,helpdesk,helpdesk,v1,ticket_customized_field,delete,该接口用于删除工单自定义字段。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket_customized_field/delete,DELETE:/open-apis/helpdesk/v1/ticket_customized_fields/:ticket_customized_field_id,9,"[""custom""]",[],1709724853,true,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket_customized_field/delete
6955768699895857154,获取指定工单自定义字段,helpdesk,helpdesk,v1,ticket_customized_field,get,该接口用于获取工单自定义字段详情。,none,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket_customized_field/get-ticket-customized-field,GET:/open-apis/helpdesk/v1/ticket_customized_fields/:ticket_customized_field_id,7,"[""custom""]",[],1741783349,false,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket_customized_field/get-ticket-customized-field
6955768699895955458,获取全部工单自定义字段,helpdesk,helpdesk,v1,ticket_customized_field,list,该接口用于获取全部工单自定义字段。,none,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket_customized_field/list-ticket-customized-fields,GET:/open-apis/helpdesk/v1/ticket_customized_fields,6,"[""custom""]",[],1672022706,false,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket_customized_field/list-ticket-customized-fields
6955768699895660546,更新工单自定义字段,helpdesk,helpdesk,v1,ticket_customized_field,patch,该接口用于更新自定义字段。,none,true,/document/uAjLw4CM/ukTMukTMukTM/helpdesk-v1/ticket_customized_field/update-ticket-customized-field,PATCH:/open-apis/helpdesk/v1/ticket_customized_fields/:ticket_customized_field_id,8,"[""custom""]",[],1709724865,false,1,https://open.feishu.cn/document/server-docs/helpdesk-v1/ticket-management/ticket_customized_field/update-ticket-customized-field
7012986483075547137,发布职位广告,hire,hire,v1,advertisement,publish,支持把职位广告发布上线至招聘官网、内推平台。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/advertisement/publish,POST:/open-apis/hire/v1/advertisements/:advertisement_id/publish,4,"[""custom""]",[],1724918745,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/publish
7413697955198074884,搜索猎头供应商列表,hire,hire,v1,agency,batch_query,可根据猎头供应商 ID 列表或关键字、筛选项查询供应商信息。暂不支持获取【邀请中】的供应商列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/batch_query,POST:/open-apis/hire/v1/agencies/batch_query,2,"[""isv"", ""custom""]",[],1764573288,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/agency/batch_query
6965472560995057666,获取猎头供应商信息,hire,hire,v1,agency,get,根据猎头供应商 ID 获取有合作关系的猎头供应商信息,包含猎头供应商ID、名称、联系人等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/get,GET:/open-apis/hire/v1/agencies/:agency_id,6,"[""isv"", ""custom""]",[],1723000940,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/agency/get
7413697955198058500,查询猎头供应商下猎头列表,hire,hire,v1,agency,get_agency_account,根据猎头供应商 ID 查询该猎头供应商下的猎头列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/get_agency_account,POST:/open-apis/hire/v1/agencies/get_agency_account,3,"[""custom""]",[],1733206039,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/agency/get_agency_account
7413697955198042116,禁用/取消禁用猎头,hire,hire,v1,agency,operate_agency_account,可根据猎头 ID 对猎头执行禁用/取消禁用操作。被禁用的猎头,不能推荐候选人与被分配职位。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/operate_agency_account,POST:/open-apis/hire/v1/agencies/operate_agency_account,1,"[""custom""]",[],1733227537,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/agency/operate_agency_account
6965472560995041282,设置猎头保护期,hire,hire,v1,agency,protect,设置指定人才的猎头保护期,当「飞书招聘」内置的保护期功能不满足需求时,客户可通过此接口自定义人才的保护期。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/protect,POST:/open-apis/hire/v1/agencies/protect,7,"[""custom""]",[],1724725389,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/agency/protect
7307160083569655811,查询猎头保护期信息,hire,hire,v1,agency,protect_search,查询指定人才的猎头保护期信息列表,包含保护期起止时间、猎头供应商、猎头顾问信息等。若人才已经入职,还会返回入职时所在的保护期信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/protect_search,POST:/open-apis/hire/v1/agencies/protection_period/search,5,"[""isv"", ""custom""]",[],1724813299,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/agency/protect_search
6965472560995074050,查询猎头供应商信息,hire,hire,v1,agency,query,根据猎头供应商名称查询有合作关系的猎头供应商信息,包含猎头供应商ID、名称、联系人等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/query,GET:/open-apis/hire/v1/agencies/query,4,"[""isv"", ""custom""]",[],1723174332,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/agency/query
6989078472837152771,取消候选人入职,hire,hire,v1,application,cancel_onboard,取消待入职状态的候选人入职。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard,POST:/open-apis/hire/v1/applications/:application_id/cancel_onboard,5,"[""isv"", ""custom""]",[],1740018694,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/cancel_onboard
6964286393804816412,创建投递,hire,hire,v1,application,create,为人才在特定职位上创建投递。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/create,POST:/open-apis/hire/v1/applications,8,"[""isv"", ""custom""]",[],1749042755,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/create
6964286393804849180,获取投递信息,hire,hire,v1,application,get,根据投递 ID 获取单个投递信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/get,GET:/open-apis/hire/v1/applications/:application_id,4,"[""isv"", ""custom""]",[],1764644288,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/get
7397703144758165532,获取投递详情,hire,hire,v1,application,get_detail,根据投递 ID 获取投递信息并通过参数按需获取该投递相关的实体信息,如「职位」、「人才」、「评估」、「面试」、「Offer」、「猎头」、「内推」、「官网」等实体的信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/get_detail,GET:/open-apis/hire/v1/applications/:application_id/get_detail,1721961191960,"[""isv"", ""custom""]",[],1764644288,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/application/get_detail
6964286393804865564,获取投递列表,hire,hire,v1,application,list,获取投递列表信息。可根据「招聘流程 ID」、「招聘阶段 ID」、「人才 ID」、「职位 ID」、「投递活跃状态」以及「投递更新时间」进行条件筛选。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/list,GET:/open-apis/hire/v1/applications,3,"[""isv"", ""custom""]",[],1740106715,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/list
6964286393804914716,获取 Offer 信息,hire,hire,v1,application,offer,根据投递 ID 获取 Offer 信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/offer,GET:/open-apis/hire/v1/applications/:application_id/offer,6,"[""isv"", ""custom""]",[],1753877023,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/offer
7385067676815966212,恢复投递,hire,hire,v1,application,recover,根据投递 ID 将「已终止」投递进行恢复。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/recover,POST:/open-apis/hire/v1/applications/:application_id/recover,1719301735306,"[""isv"", ""custom""]",[],1721631237,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/application/recover
6964286393804832796,终止投递,hire,hire,v1,application,terminate,根据投递 ID 修改投递状态为「已终止」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/terminate,POST:/open-apis/hire/v1/applications/:application_id/terminate,7,"[""isv"", ""custom""]",[],1720621871,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/terminate
6964286393804800028,操作候选人入职,hire,hire,v1,application,transfer_onboard,根据投递 ID 操作候选人入职并创建员工,后续可通过 [通过员工 ID 获取入职信息](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/get) 接口获取入职信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/transfer_onboard,POST:/open-apis/hire/v1/applications/:application_id/transfer_onboard,6,"[""isv"", ""custom""]",[],1737601192,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/transfer_onboard
6989078472837136387,转移投递阶段,hire,hire,v1,application,transfer_stage,根据投递 ID 和投递阶段 ID 转移投递阶段。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/transfer_stage,POST:/open-apis/hire/v1/applications/:application_id/transfer_stage,6,"[""isv"", ""custom""]",[],1721631237,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/transfer_stage
6964286393804931100,获取面试记录列表,hire,hire,v1,application.interview,list,根据投递 ID 获取面试记录列表{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=hire&version=v1&resource=application.interview&method=list),none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application-interview/list,GET:/open-apis/hire/v1/applications/:application_id/interviews,1621420026587,"[""isv"", ""custom""]",[],1654166354,false,1,https://open.feishu.cn/document/server-docs/historic-version/hire_internal/application-interview/list
6921988678870040577,创建附件,hire,hire,v1,attachment,create,在招聘系统中上传附件文件,上传的附件为通用附件。,none,true,/document/ukTMukTMukTM/uIDN1YjLyQTN24iM0UjN/create_attachment,POST:/open-apis/hire/v1/attachments,1655096357096,"[""custom""]",[],1730692707,false,1,https://open.feishu.cn/document/server-docs/hire-v1/attachment/create_attachment
6964286393804898332,获取附件信息,hire,hire,v1,attachment,get,根据附件 ID 和附件类型获取招聘系统中附件的信息,比如附件名称、附件创建时间、附件下载地址等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/attachment/get,GET:/open-apis/hire/v1/attachments/:attachment_id,2,"[""isv"", ""custom""]",[],1728565305,false,1,https://open.feishu.cn/document/server-docs/hire-v1/attachment/get
6964631863168647171,获取附件 PDF 格式下载链接,hire,hire,v1,attachment,preview,根据人才简历附件 ID 获取该简历附件对应的 PDF 文件的下载地址。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/attachment/preview,GET:/open-apis/hire/v1/attachments/:attachment_id/preview,1,"[""custom""]",[],1720671231,false,1,https://open.feishu.cn/document/server-docs/hire-v1/attachment/preview
7413697955198107652,查询背调信息列表,hire,hire,v1,background_check_order,batch_query,可根据背调 ID 列表或投递 ID 等过滤条件查询背调订单信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/background_check_order/batch_query,POST:/open-apis/hire/v1/background_check_orders/batch_query,2,"[""isv"", ""custom""]",[],1755848662,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/background_check_order/batch_query
7049722392477958145,获取背调信息列表,hire,hire,v1,background_check_order,list,根据投递 ID 或背调更新时间批量获取背调订单信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/background_check_order/list,GET:/open-apis/hire/v1/background_check_orders,3,"[""isv"", ""custom""]",[],1755849123,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/background_check_order/list
7232192298414292993,获取申请表附加信息,hire,hire,v1,diversity_inclusion,search,获取候选人的申请表附加信息。支持通过投递 ID 或者人才 ID 进行查询。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/diversity_inclusion/search,POST:/open-apis/hire/v1/applications/diversity_inclusions/search,2,"[""isv"", ""custom""]",[],1725872263,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/search
7195815976042545154,删除账号自定义字段,hire,hire,v1,eco_account_custom_field,batch_delete,飞书招聘的背调或笔试服务商,可通过此接口删除账号自定义字段(如客户在服务商处的租户 ID、账号 ID等)。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/batch_delete,POST:/open-apis/hire/v1/eco_account_custom_fields/batch_delete,2,"[""isv"", ""custom""]",[],1723723440,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_account_custom_field/batch_delete
7195815979079434241,更新账号自定义字段,hire,hire,v1,eco_account_custom_field,batch_update,飞书招聘的背调或笔试服务商,可通过此接口更新账号自定义字段(比如客户在服务商处的租户 ID、账号 ID等)的名称和描述。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/batch_update,PATCH:/open-apis/hire/v1/eco_account_custom_fields/batch_update,3,"[""isv"", ""custom""]",[],1724825358,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_account_custom_field/batch_update
7195815979079581697,创建账号自定义字段,hire,hire,v1,eco_account_custom_field,create,飞书招聘的背调或笔试服务商,可通过此接口创建账号自定义字段,用来标识飞书招聘客户在服务商处的身份(比如客户在服务商处的租户 ID、账号 ID等字段)。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/create,POST:/open-apis/hire/v1/eco_account_custom_fields,4,"[""isv"", ""custom""]",[],1724825358,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_account_custom_field/create
7195815979079598081,终止背调订单,hire,hire,v1,eco_background_check,cancel,调用此接口将会将背调订单状态变成已终止,已终止订单将将无法通过[更新背调订单进度](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_progress)和[回传背调订单的最终结果](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_result)修改订单进度和最终结果。 调用此接口前,建议先调用[更新背调订单进度](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_progress)接口将订单进度更新为「已终止」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/cancel,POST:/open-apis/hire/v1/eco_background_checks/cancel,1698156630947,"[""isv"", ""custom""]",[],1723460587,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check/cancel
7195815979079483393,更新背调订单进度,hire,hire,v1,eco_background_check,update_progress,更新指定背调订单的进度信息和阶段性报告,进度信息将会被展示在「飞书招聘」-「投递详情页」-「背调卡片」上,告知用户目前背调订单的流转状态。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_progress,POST:/open-apis/hire/v1/eco_background_checks/update_progress,1698156645657,"[""isv"", ""custom""]",[],1723460587,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check/update_progress
7195815979079499777,回传背调订单的最终结果,hire,hire,v1,eco_background_check,update_result,回传背调的最终结果和终版报告。回传后,若租户未启用背调报告审批功能,则背调订单状态将会直接变成「已完成」。若启用背调报告审批功能,则在管理员审批通过后,订单状态流转为「已完成」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_result,POST:/open-apis/hire/v1/eco_background_checks/update_result,1698156638823,"[""isv"", ""custom""]",[],1723460587,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check/update_result
7195815979079565313,删除背调自定义字段,hire,hire,v1,eco_background_check_custom_field,batch_delete,删除用户在发起背调时展示的表单自定义字段。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/batch_delete,POST:/open-apis/hire/v1/eco_background_check_custom_fields/batch_delete,1698156673439,"[""isv"", ""custom""]",[],1722327865,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_custom_field/batch_delete
7195815976042594306,更新背调自定义字段,hire,hire,v1,eco_background_check_custom_field,batch_update,更新用户在发起背调时展示的表单自定义字段名称和描述。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/batch_update,PATCH:/open-apis/hire/v1/eco_background_check_custom_fields/batch_update,1698156679525,"[""isv"", ""custom""]",[],1723460586,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_custom_field/batch_update
7195815979079450625,创建背调自定义字段,hire,hire,v1,eco_background_check_custom_field,create,创建用户在发起背调时展示的表单自定义字段。自定义字段支持多种类型如单行文本、单选等,可以设置为必填或非必填。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/create,POST:/open-apis/hire/v1/eco_background_check_custom_fields,1698156685860,"[""isv"", ""custom""]",[],1725535721,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_custom_field/create
7195815976042528770,删除背调套餐和附加调查项,hire,hire,v1,eco_background_check_package,batch_delete,删除背调帐号下的背调套餐和附加调查项信息。删除操作不会影响已创建的背调。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/batch_delete,POST:/open-apis/hire/v1/eco_background_check_packages/batch_delete,1698156653776,"[""isv"", ""custom""]",[],1724839011,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_package/batch_delete
7195815979079548929,更新背调套餐和附加调查项,hire,hire,v1,eco_background_check_package,batch_update,更新指定背调帐号下的背调套餐和附加调查项信息。如需新增背调套餐、附加调查项请使用[创建背调套餐和附加调查项](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/create)进行添加。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/batch_update,PATCH:/open-apis/hire/v1/eco_background_check_packages/batch_update,1698156660693,"[""isv"", ""custom""]",[],1722327865,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_package/batch_update
7195815976042512386,创建背调套餐和附加调查项,hire,hire,v1,eco_background_check_package,create,在指定背调帐号下创建可用的背调套餐列表和附加调查项信息列表。该接口为增量创建,每次调用会在原有的套餐列表和附加调查项列表基础上新增。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/create,POST:/open-apis/hire/v1/eco_background_check_packages,1698156667673,"[""isv"", ""custom""]",[],1722327865,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_background_check_package/create
7195815979079401473,回传笔试安排结果,hire,hire,v1,eco_exam,login_info,飞书招聘的笔试服务商,在收到[创建笔试](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam/events/created)事件并安排笔试后,应通过本接口 回传笔试安排结果。若安排成功,须返回笔试链接;若笔试链接需要登录鉴权,则须返回登录凭证(`username`,`password`)。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam/login_info,POST:/open-apis/hire/v1/eco_exams/:exam_id/login_info,1698156892190,"[""isv"", ""custom""]",[],1724825359,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_exam/login_info
7195815979079467009,回传笔试结果,hire,hire,v1,eco_exam,update_result,飞书招聘的笔试服务商,可通过该接口回传候选人的笔试结果。回传笔试结果后,候选人在飞书招聘内的笔试状态将变为「已作答」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam/update_result,POST:/open-apis/hire/v1/eco_exams/:exam_id/update_result,1698156880067,"[""isv"", ""custom""]",[],1724825359,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_exam/update_result
7195815976042577922,删除试卷列表,hire,hire,v1,eco_exam_paper,batch_delete,飞书招聘的笔试服务商,可通过该接口删除客户笔试帐号下的试卷列表。删除操作不影响已安排的笔试,删除不存在的试卷时不会报错。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/batch_delete,POST:/open-apis/hire/v1/eco_exam_papers/batch_delete,1698156901183,"[""isv"", ""custom""]",[],1725008225,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_exam_paper/batch_delete
7195815979079532545,更新试卷列表,hire,hire,v1,eco_exam_paper,batch_update,飞书招聘的笔试服务商,可通过该接口更新客户笔试账号下的试卷列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/batch_update,PATCH:/open-apis/hire/v1/eco_exam_papers/batch_update,1698156911760,"[""isv"", ""custom""]",[],1725008225,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_exam_paper/batch_update
7195815976042561538,创建试卷列表,hire,hire,v1,eco_exam_paper,create,飞书招聘的笔试服务商,在完成[账号绑定](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account/events/created)后,可通过本接口在客户的笔试帐号下创建试卷列表。若客户的笔试账号为「未激活」、「停用」状态,则试卷创建成功后,客户的账号将变为「正常」状态,可正常安排笔试。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/create,POST:/open-apis/hire/v1/eco_exam_papers,1698156918721,"[""isv"", ""custom""]",[],1725008225,false,1,https://open.feishu.cn/document/server-docs/hire-v1/ecological-docking/eco_exam_paper/create
6992933256561426436,更新 e-HR 导入任务结果,hire,hire,v1,ehr_import_task,patch,在处理完[导入 e-HR]( /ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/event/import-ehr)事件后,可调用该接口,更新 e-HR 导入任务结果。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/ehr_import_task/patch,PATCH:/open-apis/hire/v1/ehr_import_tasks/:ehr_import_task_id,7,"[""isv"", ""custom""]",[],1720618210,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/patch-2
6959374328975884290,通过员工 ID 获取入职信息,hire,hire,v1,employee,get,通过员工 ID 获取入职信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/get,GET:/open-apis/hire/v1/employees/:employee_id,2,"[""isv"", ""custom""]",[],1725885851,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/get
6959374328975867906,通过投递 ID 获取入职信息,hire,hire,v1,employee,get_by_application,通过投递 ID 获取员工入职信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/get_by_application,GET:/open-apis/hire/v1/employees/get_by_application,3,"[""isv"", ""custom""]",[],1758780502,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/get_by_application
6959374328975900674,更新员工状态,hire,hire,v1,employee,patch,根据员工 ID 更新员工招聘系统内的转正、离职状态。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/patch,PATCH:/open-apis/hire/v1/employees/:employee_id,4,"[""isv"", ""custom""]",[],1741090779,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/onboard/patch
7062626037662892033,获取简历评估信息列表,hire,hire,v1,evaluation,list,批量获取简历评估信息,包含评估人、评估结论、评估详情等信息。支持按照投递 ID、更新时间来进行筛选。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/evaluation/list,GET:/open-apis/hire/v1/evaluations,1644377738894,"[""isv"", ""custom""]",[],1725443497,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/evaluation/list
7096308846932295682,获取简历评估任务列表,hire,hire,v1,evaluation_task,list,根据评估人ID查询评估任务列表,可以查询到的信息包括:评估ID、投递ID、任务状态等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/evaluation_task/list,GET:/open-apis/hire/v1/evaluation_tasks,1673841850749,"[""isv"", ""custom""]",[],1722311401,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/recruitment-process-follow-up/list-3
7033979950131118084,添加笔试结果,hire,hire,v1,exam,create,根据投递 ID 添加该投递下的笔试结果。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/exam/create,POST:/open-apis/hire/v1/exams,2,"[""isv"", ""custom""]",[],1721631259,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/exam/create
7096308827411120129,获取笔试阅卷任务列表,hire,hire,v1,exam_marking_task,list,根据阅卷人ID查询员工笔试阅卷任务列表,能查询到的信息包括:笔试阅卷任务ID、投递ID、任务状态等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/exam_marking_task/list,GET:/open-apis/hire/v1/exam_marking_tasks,1673841837360,"[""isv"", ""custom""]",[],1722311401,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/recruitment-process-follow-up/list-2
6992822583076388867,创建外部投递,hire,hire,v1,external_application,create,创建外部投递,可用于导入来自其他系统的投递信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/create,POST:/open-apis/hire/v1/external_applications,4,"[""custom""]",[],1725853508,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/create
7215630682033979420,删除外部投递,hire,hire,v1,external_application,delete,根据外部投递 ID 删除外部投递。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/delete,DELETE:/open-apis/hire/v1/external_applications/:external_application_id,1,"[""custom""]",[],1725853575,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/delete
7215630682033946652,查询外部投递列表,hire,hire,v1,external_application,list,可根据人才 ID 获取人才外部投递列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/list,GET:/open-apis/hire/v1/external_applications,2,"[""custom""]",[],1733130197,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/list
7215630682033963036,更新外部投递,hire,hire,v1,external_application,update,更新外部投递信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/update,PUT:/open-apis/hire/v1/external_applications/:external_application_id,3,"[""custom""]",[],1751463369,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/update-2
7407298680641028099,查询外部背调列表,hire,hire,v1,external_background_check,batch_query,可根据外部投递 ID 或外部背调 ID 列表查询外部背调信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/batch_query,POST:/open-apis/hire/v1/external_background_checks/batch_query,2,"[""custom""]",[],1733205952,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-background-info/batch_query
6992822583076372483,创建外部背调,hire,hire,v1,external_background_check,create,创建外部背调,可用于导入来自其他系统的背调信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/create,POST:/open-apis/hire/v1/external_background_checks,4,"[""custom""]",[],1725853664,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/create-2
7407298680641044483,删除外部背调,hire,hire,v1,external_background_check,delete,根据外部背调 ID 删除外部背调。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/delete,DELETE:/open-apis/hire/v1/external_background_checks/:external_background_check_id,1,"[""custom""]",[],1733205963,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-background-info/delete
7407298680640929795,更新外部背调,hire,hire,v1,external_background_check,update,更新外部背调信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/update,PUT:/open-apis/hire/v1/external_background_checks/:external_background_check_id,3,"[""custom""]",[],1733205941,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-background-info/update
7407298680640913411,查询外部面试列表,hire,hire,v1,external_interview,batch_query,可根据外部投递 ID 或外部面试 ID 列表查询外部面试信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/batch_query,POST:/open-apis/hire/v1/external_interviews/batch_query,4,"[""custom""]",[],1733205930,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-interview-info/batch_query
6992822583076339715,创建外部面试,hire,hire,v1,external_interview,create,创建外部面试,可用于导入来自其他系统的面试信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/create,POST:/open-apis/hire/v1/external_interviews,6,"[""custom""]",[],1725853575,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/create-3
7407298680640995331,删除外部面试,hire,hire,v1,external_interview,delete,根据外部面试 ID 删除外部面试。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/delete,DELETE:/open-apis/hire/v1/external_interviews/:external_interview_id,3,"[""custom""]",[],1733205919,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-interview-info/delete
7407298680641011715,更新外部面试,hire,hire,v1,external_interview,update,更新外部面试信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/update,PUT:/open-apis/hire/v1/external_interviews/:external_interview_id,5,"[""custom""]",[],1733205907,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-interview-info/update
6992822583076356099,创建外部面评,hire,hire,v1,external_interview_assessment,create,导入来自其他系统的面评信息,创建为外部面评。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview_assessment/create,POST:/open-apis/hire/v1/external_interview_assessments,2,"[""custom""]",[],1725853641,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/create-4
7270722035910328322,更新外部面评,hire,hire,v1,external_interview_assessment,patch,更新外部面评部分字段,没有填写的字段不会被更新,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview_assessment/patch,PATCH:/open-apis/hire/v1/external_interview_assessments/:external_interview_assessment_id,1,"[""custom""]",[],1725853664,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-interview-info/patch
7407298680641060867,查询外部 Offer 列表,hire,hire,v1,external_offer,batch_query,可根据外部投递 ID 或外部 Offer ID 列表查询外部 Offer 信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/batch_query,POST:/open-apis/hire/v1/external_offers/batch_query,2,"[""custom""]",[],1733205874,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-offer-info/batch_query
7407298680640946179,创建外部 Offer,hire,hire,v1,external_offer,create,创建外部 Offer,可用于导入来自其他系统的 Offer 信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/create,POST:/open-apis/hire/v1/external_offers,4,"[""custom""]",[],1764644266,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-offer-info/create
7407298680641077251,删除外部 Offer,hire,hire,v1,external_offer,delete,根据外部 Offer ID 删除外部 Offer。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/delete,DELETE:/open-apis/hire/v1/external_offers/:external_offer_id,1,"[""custom""]",[],1733205885,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-offer-info/delete
7407298680641093635,更新外部 Offer,hire,hire,v1,external_offer,update,更新外部 Offer 信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/update,PUT:/open-apis/hire/v1/external_offers/:external_offer_id,3,"[""custom""]",[],1733205896,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-offer-info/update
7325271522314584065,导入外部内推奖励,hire,hire,v1,external_referral_reward,create,支持将外部的内推奖励(积分/现金)导入到招聘的「内推账号」中,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_referral_reward/create,POST:/open-apis/hire/v1/external_referral_rewards,2,"[""custom""]",[],1731926631,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-referral-reward-info/create
7361028373559230467,删除外部内推奖励,hire,hire,v1,external_referral_reward,delete,根据外部内推奖励ID删除外部内推奖励。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_referral_reward/delete,DELETE:/open-apis/hire/v1/external_referral_rewards/:external_referral_reward_id,1,"[""custom""]",[],1725853775,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/import-external-system-information/import-external-referral-reward-info/delete
7055229817129811969,获取人才面试信息,hire,hire,v1,interview,get_by_talent,获取人才下所有面试信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview/get_by_talent,GET:/open-apis/hire/v1/interviews/get_by_talent,8,"[""isv"", ""custom""]",[],1742987786,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/interview/get_by_talent
6989078472837267459,获取面试信息,hire,hire,v1,interview,list,获取面试信息。可通过「投递 ID」、「面试 ID」以及「面试开始时间」进行条件筛选,筛选条件不能同时为空。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview/list,GET:/open-apis/hire/v1/interviews,9,"[""isv"", ""custom""]",[],1742987786,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/interview/list
7356428725080342530,获取面试评价表列表,hire,hire,v1,interview_feedback_form,list,获取面试评价表信息列表,评价表信息包括题目描述、题目选项等。可用于面试评价表展示等场景。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_feedback_form/list,GET:/open-apis/hire/v1/interview_feedback_forms,5,"[""isv"", ""custom""]",[],1754377150,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/interview-settings/list-3
6989078472837316611,获取面试评价详细信息,hire,hire,v1,interview_record,get,获取面试评价详细信息,如面试结论、面试得分和面试官等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record/get,GET:/open-apis/hire/v1/interview_records/:interview_record_id,7,"[""isv"", ""custom""]",[],1742987786,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/interview/get
7287514613653831708,批量获取面试评价详细信息,hire,hire,v1,interview_record,list,批量获取面试评价详细信息,如面试结论、面试得分和面试官等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record/list,GET:/open-apis/hire/v1/interview_records,5,"[""isv"", ""custom""]",[],1742987798,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/interview/list-3
7215583964449849372,获取面试记录附件,hire,hire,v1,interview_record.attachment,get,获取面试记录 PDF 附件,包含相关投递基本信息、面试评价信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record-attachment/get,GET:/open-apis/hire/v1/interview_records/attachments,3,"[""isv"", ""custom""]",[],1724834789,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/interview/get-2
7063273947417247745,获取面试登记表列表,hire,hire,v1,interview_registration_schema,list,获取面试登记表列表,可获取到的信息包括登记表名称、登记表模块、登记表字段,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_registration_schema/list,GET:/open-apis/hire/v1/interview_registration_schemas,3,"[""isv"", ""custom""]",[],1741868720,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/interview-settings/list-3
7098333210140082177,获取面试轮次类型列表,hire,hire,v1,interview_round_type,list,根据职位流程查询面试轮次类型列表,可以查询到的信息包括:面试轮次类型名称、启用状态、关联的面试评价表信息。可应用于更新职位设置场景:[更新职位设置](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/update_config),none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_round_type/list,GET:/open-apis/hire/v1/interview_round_types,4,"[""isv"", ""custom""]",[],1721631011,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/interview-settings/list-2
7096313950274928641,获取面试任务列表,hire,hire,v1,interview_task,list,根据面试官ID查询面试任务列表,可以查询到的信息包括:面试ID、投递ID、任务状态等,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_task/list,GET:/open-apis/hire/v1/interview_tasks,1673841826637,"[""isv"", ""custom""]",[],1722394744,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/recruitment-process-follow-up/list-4
7372229724359835649,查询面试官信息列表,hire,hire,v1,interviewer,list,分页查询面试官列表,接口只会返回执行过「更新面试官信息」用户的数据,通过接口查询不到的数据则默认为「未认证」面试官。接口默认按更新时间、user_id顺序进行顺序拉取。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interviewer/list,GET:/open-apis/hire/v1/interviewers,1716469795305,"[""isv"", ""custom""]",[],1724677715,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/interview-settings/interviewer/list
7372229724359852033,更新面试官信息,hire,hire,v1,interviewer,patch,用于更新面试官认证信息,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interviewer/patch,PATCH:/open-apis/hire/v1/interviewers/:interviewer_id,1716469742685,"[""isv"", ""custom""]",[],1743498773,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/interview-settings/interviewer/patch
7012986483075514369,关闭职位,hire,hire,v1,job,close,关闭职位后,职位所有的职位广告将同步从官网、内推、猎头渠道下线。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/close,POST:/open-apis/hire/v1/jobs/:job_id/close,7,"[""custom""]",[],1722587128,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/close
7012986483075481601,新建职位,hire,hire,v1,job,combined_create,创建一个新的职位。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/combined_create,POST:/open-apis/hire/v1/jobs/combined_create,16,"[""custom""]",[],1764644244,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/combined_create
7012986483075497985,更新职位,hire,hire,v1,job,combined_update,更新职位信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/combined_update,POST:/open-apis/hire/v1/jobs/:job_id/combined_update,15,"[""custom""]",[],1725955133,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/combined_update
7172190705011212292,获取职位设置,hire,hire,v1,job,config,获取职位设置,包含 Offer 申请表、Offer 审批流程、建议评估人列表、面试评价表、建议面试官列表、招聘需求、面试登记表、入职登记表、面试轮次类型列表、关联职位列表等设置。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/config,GET:/open-apis/hire/v1/jobs/:job_id/config,9,"[""isv"", ""custom""]",[],1740109824,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/config
6963910685080289282,获取职位信息,hire,hire,v1,job,get,根据职位 ID 获取职位信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/get,GET:/open-apis/hire/v1/jobs/:job_id,11,"[""isv"", ""custom""]",[],1733897558,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/get
7397677441935884289,获取职位详情,hire,hire,v1,job,get_detail,根据职位 ID 获取职位详情,包含职位基本信息、职位负责人、协助人、用人经理、职位地址列表、职位设置、关联招需、门店列表及标签列表等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/get_detail,GET:/open-apis/hire/v1/jobs/:job_id/get_detail,12,"[""isv"", ""custom""]",[],1733309371,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/job/get_detail
7001051759612919811,获取职位列表,hire,hire,v1,job,list,获取职位列表,仅支持获取默认字段信息,获取详细信息可调用[获取职位信息](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/get)接口。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/list,GET:/open-apis/hire/v1/jobs,8,"[""isv"", ""custom""]",[],1724822604,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/list-2
7012986483075530753,重启职位,hire,hire,v1,job,open,对于已关闭的职位,可通过本接口重启职位。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/open,POST:/open-apis/hire/v1/jobs/:job_id/open,6,"[""custom""]",[],1725008224,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/open
7254447878126878748,获取职位上的招聘人员信息,hire,hire,v1,job,recruiter,根据职位 ID 获取职位上的招聘人员信息,如招聘负责人、用人经理等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/recruiter,GET:/open-apis/hire/v1/jobs/:job_id/recruiter,10,"[""isv"", ""custom""]",[],1725597272,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/job/recruiter
7012986483075563521,更新职位设置,hire,hire,v1,job,update_config,更新职位设置,包括面试评价表、Offer 申请表等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/update_config,POST:/open-apis/hire/v1/jobs/:job_id/update_config,14,"[""custom""]",[],1735045934,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/update_config
7098334044387475484,更新职位相关人员,hire,hire,v1,job.manager,batch_update,更新职位相关人员,包含招聘负责人、招聘协助人、用人经理。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job-manager/batch_update,POST:/open-apis/hire/v1/jobs/:job_id/managers/batch_update,13,"[""custom""]",[],1724918745,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/batch_update
6963910685080305666,获取职位上的招聘人员信息,hire,hire,v1,job.manager,get,根据职位 ID 获取职位上的招聘人员信息,如招聘负责人、用人经理。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job-manager/get,GET:/open-apis/hire/v1/jobs/:job_id/managers/:manager_id,1688716600747,"[""isv"", ""custom""]",[],1689057769,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/get-2
7021031370929012739,获取职能分类列表,hire,hire,v1,job_function,list,根据page_token与page_size对职能分类进行游标分页查询,可查询到的信息包括:职能分类ID、职能分类中英文名、启用状态,可应用于职位基础信息绑定等场景,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_function/list,GET:/open-apis/hire/v1/job_functions,2,"[""isv"", ""custom""]",[],1721631010,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/list-3
6964286393804947484,获取招聘流程信息,hire,hire,v1,job_process,list,获取全部招聘流程信息。如「流程名称」、「流程类型」及流程下的「阶段名称」、「阶段类型」等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_process/list,GET:/open-apis/hire/v1/job_processes,1621426298649,"[""isv"", ""custom""]",[],1724899819,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_process/list
7098526921116745729,获取职位广告发布记录,hire,hire,v1,job_publish_record,search,根据招聘渠道 ID 获取当前渠道下曾发布过的职位广告信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_publish_record/search,POST:/open-apis/hire/v1/job_publish_records/search,3,"[""isv"", ""custom""]",[],1725955133,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/search
6989078472837283843,创建招聘需求,hire,hire,v1,job_requirement,create,创建招聘需求,可指定招聘需求部门、招聘人数、需求描述等,具体可参考「飞书招聘」-「设置」-「招聘需求字段管理」,或者参考[获取招聘需求模板](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement_schema/list)。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/create,POST:/open-apis/hire/v1/job_requirements,7,"[""custom""]",[],1751376713,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/create
6989078472837201923,删除招聘需求,hire,hire,v1,job_requirement,delete,删除指定的招聘需求,请注意:若该招聘需求已经关联到职位上,则需先接触关联后,才能删除招聘需求。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/delete,DELETE:/open-apis/hire/v1/job_requirements/:job_requirement_id,2,"[""custom""]",[],1744857852,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/delete
6989078472837218307,获取招聘需求列表,hire,hire,v1,job_requirement,list,获取招聘需求列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/list,GET:/open-apis/hire/v1/job_requirements,4,"[""isv"", ""custom""]",[],1740553772,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/list-2
7218888199548633092,获取招聘需求信息,hire,hire,v1,job_requirement,list_by_id,根据「招聘需求ID」获取招聘需求信息,支持批量查询,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/list_by_id,POST:/open-apis/hire/v1/job_requirements/search,5,"[""isv"", ""custom""]",[],1740553771,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/list_by_id
6989078472837169155,更新招聘需求,hire,hire,v1,job_requirement,update,更新指定招聘需求的信息,包含招聘需求的名称、状态、需求人数等。(审批中的招聘需求无法更新),none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/update,PUT:/open-apis/hire/v1/job_requirements/:job_requirement_id,6,"[""custom""]",[],1751376713,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/update
6989078472837234691,获取招聘需求模板列表,hire,hire,v1,job_requirement_schema,list,获取招聘需求模板列表,包含需求模板ID,以及模板里的字段定义等。招聘需求模板可参考「飞书招聘」-「设置」-「招聘需求字段管理」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement_schema/list,GET:/open-apis/hire/v1/job_requirement_schemas,1,"[""isv"", ""custom""]",[],1725854028,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job_requirement/list
6989078472837251075,获取职位模板,hire,hire,v1,job_schema,list,获取社招、校招职位模板中的职位字段,返回结果包括系统默认字段和自定义字段。招聘管理员可在「飞书招聘」-「设置」-「职位管理」-「职位字段管理」中修改职位模板。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_schema/list,GET:/open-apis/hire/v1/job_schemas,5,"[""isv"", ""custom""]",[],1724839011,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/job/list
7287407243900895234,获取职位类别列表,hire,hire,v1,job_type,list,获取招聘系统预置的职位类别列表,可用于操作职位(如[新建职位](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/combined_create)),操作招聘需求(如[创建招聘需求](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/create))时回填职位类别字段。返回列表默认按创建时间升序排序,且包含节点的层级关系(节点的父节点 ID),可在获取全量数据后自行构建职位类别树。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_type/list,GET:/open-apis/hire/v1/job_types,1,"[""isv"", ""custom""]",[],1724839011,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/job/list-4
6990661791098683395,获取地址列表,hire,hire,v1,location,list,获取地址列表,可查询到的信息包括地址与地点信息,可应用在职位地点、面试地点、人才意向工作城市等场景。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/location/list,GET:/open-apis/hire/v1/locations,1627565772412,"[""isv"", ""custom""]",[],1724999548,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/location/list
7385067676815949828,查询地点列表,hire,hire,v1,location,query,根据地点类型和地点码查询地点列表,获取地点名称信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/location/query,POST:/open-apis/hire/v1/locations/query,1719304136769,"[""isv"", ""custom""]",[],1720776337,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/location/query
7397616200375304220,获取面试速记明细,hire,hire,v1,minutes,get,获取指定面试的面试速记明细记录,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/minutes/get,GET:/open-apis/hire/v1/minutes,2,"[""isv"", ""custom""]",[],1724677760,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/interview/get-4
6950213983267274756,创建备注,hire,hire,v1,note,create,为人才创建备注信息,支持在备注中@其他用户。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/create,POST:/open-apis/hire/v1/notes,5,"[""custom""]",[],1720621988,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/note/create
7380199635317932035,删除备注,hire,hire,v1,note,delete,根据备注 ID 删除备注。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/delete,DELETE:/open-apis/hire/v1/notes/:note_id,1,"[""custom""]",[],1720622012,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/note/delete
6950644745484386331,获取备注,hire,hire,v1,note,get,根据备注 ID 查询人才备注信息,包括备注内容、人才 ID、投递 ID 等。可用于人才备注信息展示等场景。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/get,GET:/open-apis/hire/v1/notes/:note_id,3,"[""isv"", ""custom""]",[],1720779550,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/note/get
6950644745484419099,获取备注列表,hire,hire,v1,note,list,根据人才ID获取备注列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/list,GET:/open-apis/hire/v1/notes,2,"[""isv"", ""custom""]",[],1720621989,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/note/list
6950644745484402715,更新备注,hire,hire,v1,note,patch,根据备注 ID 更新备注信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/patch,PATCH:/open-apis/hire/v1/notes/:note_id,4,"[""custom""]",[],1720621988,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/note/patch
7085174536488697857,创建 Offer,hire,hire,v1,offer,create,传入 Offer 基本信息,创建 Offer。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/create,POST:/open-apis/hire/v1/offers,8,"[""custom""]",[],1767869960,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/create
7036562575123873793,获取 Offer 详情,hire,hire,v1,offer,get,根据 Offer ID 获取 Offer 详细信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/get,GET:/open-apis/hire/v1/offers/:offer_id,5,"[""isv"", ""custom""]",[],1764644288,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/get
7143222622736957442,更新实习 Offer 入/离职状态,hire,hire,v1,offer,intern_offer_status,对「实习待入职」状态的实习 Offer 确认入职、放弃入职,或对「实习已入职」状态的实习 Offer 操作离职。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/intern_offer_status,POST:/open-apis/hire/v1/offers/:offer_id/intern_offer_status,2,"[""custom""]",[],1720669861,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/intern_offer_status
7054010541106921473,获取 Offer 列表,hire,hire,v1,offer,list,根据人才 ID 获取 Offer 列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/list,GET:/open-apis/hire/v1/offers,4,"[""isv"", ""custom""]",[],1750651200,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/list
7219143467641487363,更新 Offer 状态,hire,hire,v1,offer,offer_status,通过 Offer ID 更新候选人 Offer 的「Offer 审批状态」或 「Offer 发送和接受状态」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/offer_status,PATCH:/open-apis/hire/v1/offers/:offer_id/offer_status,3,"[""custom""]",[],1725526529,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/offer_status
7085174522588348418,更新 Offer 信息,hire,hire,v1,offer,update,更新 Offer 信息,包含基本信息、薪资信息、自定义信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/update,PUT:/open-apis/hire/v1/offers/:offer_id,7,"[""custom""]",[],1753877023,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/offer/update
7081627245290651652,获取 Offer 申请表信息,hire,hire,v1,offer_application_form,get,根据 Offer 申请表 ID 获取 Offer 申请表信息,可获取到的信息包括申请表名称、申请表模块、申请表字段等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_application_form/get,GET:/open-apis/hire/v1/offer_application_forms/:offer_application_form_id,1648625703165,"[""isv"", ""custom""]",[],1751544666,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/offer-settings/offer_application_form/get
7002055120885219331,获取 Offer 申请表列表,hire,hire,v1,offer_application_form,list,获取 Offer 申请表列表,可获取的信息包括申请表名称、创建时间等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_application_form/list,GET:/open-apis/hire/v1/offer_application_forms,1629949996139,"[""isv"", ""custom""]",[],1729853701,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/offer-settings/offer_application_form/list
7002055120885235715,获取 Offer 审批流列表,hire,hire,v1,offer_approval_template,list,获取飞书招聘系统中默认和自定义 Offer 审批流列表。Offer 审批流可以在「飞书招聘」-「设置」-「Offer 设置」-「Offer 审批设置」中维护。可在职位设置的「Offer 审批流程」中使用。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_approval_template/list,GET:/open-apis/hire/v1/offer_approval_templates,1629958944188,"[""isv"", ""custom""]",[],1755587738,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/offer-settings/offer_approval_template/list
7109767413990866947,更新 Offer 申请表自定义字段,hire,hire,v1,offer_custom_field,update,本接口支持修改 Offer 申请表的自定义字段,Offer 申请表的定义可参考「飞书招聘」-「设置」-「Offer 设置」-「Offer 申请表设置」中的内容。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_custom_field/update,PUT:/open-apis/hire/v1/offer_custom_fields/:offer_custom_field_id,1655263386467,"[""custom""]",[],1723086407,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/offer-settings/offer_application_form/update
6964286393804881948,获取 Offer 申请表详细信息,hire,hire,v1,offer_schema,get,根据 Offer 申请表 ID,获取 Offer 申请表的详细信息{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=hire&version=v1&resource=offer_schema&method=get),none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_schema/get,GET:/open-apis/hire/v1/offer_schemas/:offer_schema_id,1629961067885,"[""isv"", ""custom""]",[],1621859616,false,1,https://open.feishu.cn/document/server-docs/historic-version/hire_internal/offer/get
7451965544983871516,获取申请表模板列表,hire,hire,v1,portal_apply_schema,list,获取招聘官网申请表模板列表,在官网申请职位时,申请表需按照官网申请表模板的格式进行填写。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/portal_apply_schema/list,GET:/open-apis/hire/v1/portal_apply_schemas,1734529469292,"[""isv"", ""custom""]",[],1755250026,false,1,https://open.feishu.cn/document/hire-v1/portal_apply_schema/list
7039624673445920771,获取面试满意度问卷列表,hire,hire,v1,questionnaire,list,批量获取面试满意度问卷信息,包含问卷完成情况、问卷题目及问卷题目作答内容等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/questionnaire/list,GET:/open-apis/hire/v1/questionnaires,1,"[""isv"", ""custom""]",[],1726136066,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/interview/list-2
6964264269274595330,获取内推信息,hire,hire,v1,referral,get_by_application,根据投递 ID 获取内推信息,包含内推人信息、内推创建时间等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral/get_by_application,GET:/open-apis/hire/v1/referrals/get_by_application,2,"[""isv"", ""custom""]",[],1724725376,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/referral/get_by_application
7307160083569704963,查询人才内推信息,hire,hire,v1,referral,search,根据人才查询内推信息列表,包含内推人信息、内推时间、投递 ID等,按内推投递的`创建时间`从小到大排序返回。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral/search,POST:/open-apis/hire/v1/referrals/search,5,"[""isv"", ""custom""]",[],1724816500,false,1,https://open.feishu.cn/document/hire-v1/get-candidates/referral/search
7252281835550932994,注册内推账户,hire,hire,v1,referral_account,create,通过内推人的手机号或邮箱注册「内推奖励账户」。注册后,可通过[查询内推账户](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/get_account_assets)接口获取内推账户 ID、积分余额、现金余额等,可通过[「全额提取内推账号余额」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/withdraw)接口提取账户余额,可通过[启动内推账户](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/enable)、[「停用内推账户」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/deactivate)接口启/停用账户。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/create,POST:/open-apis/hire/v1/referral_account,4,"[""isv"", ""custom""]",[],1727331890,false,1,https://open.feishu.cn/document/hire-v1/referral_account/create
7252281835550867458,停用内推账户,hire,hire,v1,referral_account,deactivate,停用内推账户,停用后,将不再发送[「内推账户余额变更事件」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/events/assets_update),也无法通过[「提取内推账号余额」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/withdraw)提取。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/deactivate,POST:/open-apis/hire/v1/referral_account/:referral_account_id/deactivate,3,"[""isv"", ""custom""]",[],1727331902,false,1,https://open.feishu.cn/document/hire-v1/referral_account/deactivate
7418831232862584833,启用内推账户,hire,hire,v1,referral_account,enable,根据账户 ID 启用账户,启用后可通过[「内推账户余额变更事件」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/events/assets_update)监听余额变更、通过[「全额提取内推账户余额」](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/withdraw)提取余额。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/enable,POST:/open-apis/hire/v1/referral_account/enable,1727098344280,"[""isv"", ""custom""]",[],1733205974,false,1,https://open.feishu.cn/document/hire-v1/referral_account/enable
7418831232862601217,查询内推账户,hire,hire,v1,referral_account,get_account_assets,根据账户 ID 查询内推账户信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/get_account_assets,GET:/open-apis/hire/v1/referral_account/get_account_assets,1727098246234,"[""isv"", ""custom""]",[],1733205985,false,1,https://open.feishu.cn/document/hire-v1/referral_account/get_account_assets
7252281835550900226,内推账户提现数据对账,hire,hire,v1,referral_account,reconciliation,对一段时间内的内推账户积分提现数据进行对账,调用方需传入调用方系统的内推账户积分变动信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/reconciliation,POST:/open-apis/hire/v1/referral_account/reconciliation,1,"[""isv"", ""custom""]",[],1722570779,false,1,https://open.feishu.cn/document/hire-v1/referral_account/reconciliation
7252281835550883842,全额提取内推账户余额,hire,hire,v1,referral_account,withdraw,通过账户 ID 全额提取内推账户下的积分/现金。全额提现后,内推人在飞书招聘系统中的积分/现金余额会变为 0,对应的积分/现金奖励状态也会变为「已发放」。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/withdraw,POST:/open-apis/hire/v1/referral_account/:referral_account_id/withdraw,2,"[""isv"", ""custom""]",[],1727331915,false,1,https://open.feishu.cn/document/hire-v1/referral_account/withdraw
7204730827112185860,获取内推官网下职位广告详情,hire,hire,v1,referral_website.job_post,get,根据职位广告 ID 获取内推官网下的职位广告详情,包含职位广告 ID 以及职位信息等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_website-job_post/get,GET:/open-apis/hire/v1/referral_websites/job_posts/:job_post_id,3,"[""custom""]",[],1724813287,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/referral/get
7204730827112202244,获取内推官网下职位广告列表,hire,hire,v1,referral_website.job_post,list,获取内推官网下的职位列表,包含职位广告ID、职位广告名称、职位信息等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_website-job_post/list,GET:/open-apis/hire/v1/referral_websites/job_posts,4,"[""custom""]",[],1724813286,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/referral/list
7259225956346232860,获取信息登记表列表,hire,hire,v1,registration_schema,list,根据适用场景获取信息登记表列表,可获取到的信息包括登记表名称、登记表模块、登记表字段等,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/registration_schema/list,GET:/open-apis/hire/v1/registration_schemas,1689845422580,"[""isv"", ""custom""]",[],1755242686,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/application/list
6964264269274578946,获取简历来源列表,hire,hire,v1,resume_source,list,获取简历来源列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/resume_source/list,GET:/open-apis/hire/v1/resume_sources,1621416854906,"[""isv"", ""custom""]",[],1721358049,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/resume_source/list
7351241605105090564,获取角色详情,hire,hire,v1,role,get,可通过此接口获取角色详情信息,包括名称、描述、权限列表等,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/role/get,GET:/open-apis/hire/v1/roles/:role_id,1711456333483,"[""isv"", ""custom""]",[],1730873717,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/auth/get
7044465181343449090,获取角色列表,hire,hire,v1,role,list,根据 page_token 与 page_size 对权限角色进行游标分页查询,可查询到的信息包括:权限角色ID、角色名、角色描述。可应用于权限判断等鉴权场景。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/role/list,GET:/open-apis/hire/v1/roles,3,"[""isv"", ""custom""]",[],1720602031,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/auth/list
7002055120885202947,获取项目列表,hire,hire,v1,subject,list,获取项目列表(概念上一批集体启动和管理的职位可以定义为一个项目,例如 「2012 秋招项目」)。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/subject/list,GET:/open-apis/hire/v1/subjects,1629959289873,"[""isv"", ""custom""]",[],1763541103,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/subject/list
7044465232156999708,将人才加入指定文件夹,hire,hire,v1,talent,add_to_folder,根据人才 ID 列表将人才加入指定文件夹。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/add_to_folder,POST:/open-apis/hire/v1/talents/add_to_folder,14,"[""custom""]",[],1733294817,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/add_to_folder
7125370772851458076,批量获取人才ID,hire,hire,v1,talent,batch_get_id,通过手机号、邮箱、证件号,批量查询人才ID,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/batch_get_id,POST:/open-apis/hire/v1/talents/batch_get_id,11,"[""isv"", ""custom""]",[],1725615241,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/batch_get_id
7034053377010991105,创建人才,hire,hire,v1,talent,combined_create,用于在企业内创建一个人才。支持自定义字段数据,可配合[获取人才字段](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query) 接口获取自定义字段信息使用。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/combined_create,POST:/open-apis/hire/v1/talents/combined_create,16,"[""custom""]",[],1747310970,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/combined_create
7034053347989487644,更新人才,hire,hire,v1,talent,combined_update,用于在企业内更新一个人才。支持自定义字段数据,可配合[获取人才字段](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query) 接口获取自定义字段信息使用。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/combined_update,POST:/open-apis/hire/v1/talents/combined_update,15,"[""custom""]",[],1763541104,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/combined_update
6964264269274611714,获取人才信息,hire,hire,v1,talent,get,根据人才 ID 获取人才信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/get,GET:/open-apis/hire/v1/talents/:talent_id,8,"[""isv"", ""custom""]",[],1764644266,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/get
7001051759612936195,获取人才列表,hire,hire,v1,talent,list,批量获取人才摘要信息,包括人才 ID、人才基信息、教育经历、工作经历等。若需要获取人才详细信息请使用[获取人才详情](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/hire-v2/talent/get)接口。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/list,GET:/open-apis/hire/v1/talents,10,"[""isv"", ""custom""]",[],1724834750,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/list
7236665938900877340,更新人才在职状态,hire,hire,v1,talent,onboard_status,更新人才的在职状态,可进行的操作包括入职与离职。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/onboard_status,POST:/open-apis/hire/v1/talents/:talent_id/onboard_status,3,"[""custom""]",[],1749037826,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/onboard_status
7418831232862617601,将人才从指定文件夹移除,hire,hire,v1,talent,remove_to_folder,根据人才 ID 列表将人才从指定文件夹移除。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/remove_to_folder,POST:/open-apis/hire/v1/talents/remove_to_folder,13,"[""custom""]",[],1733294829,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/talent/remove_to_folder
7404770953199730690,操作人才标签,hire,hire,v1,talent,tag,可为人才新增、删除标签。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/tag,POST:/open-apis/hire/v1/talents/:talent_id/tag,18,"[""custom""]",[],1745460689,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/talent/tag
7045099225022185474,创建人才外部信息,hire,hire,v1,talent.external_info,create,创建外部人才,可将已存在人才标记为外部人才,并写入外部系统创建时间。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent-external_info/create,POST:/open-apis/hire/v1/talents/:talent_id/external_info,4,"[""custom""]",[],1725853462,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/create-5
7045100014603550721,更新人才外部信息,hire,hire,v1,talent.external_info,update,更新人才外部信息,包含外部系统创建时间。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent-external_info/update,PUT:/open-apis/hire/v1/talents/:talent_id/external_info,3,"[""custom""]",[],1725853462,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/import-external-system-information/update
7413697955198091268,加入/移除屏蔽名单,hire,hire,v1,talent_blocklist,change_talent_block,根据人才 ID 将人才加入或移除屏蔽名单。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_blocklist/change_talent_block,POST:/open-apis/hire/v1/talent_blocklist/change_talent_block,2,"[""custom""]",[],1733294817,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/talent/change_talent_block
7054018845564796956,获取人才文件夹列表,hire,hire,v1,talent_folder,list,获取招聘系统中人才文件夹信息列表,包括文件夹 ID、文件夹名称、文件夹所有者 ID。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_folder/list,GET:/open-apis/hire/v1/talent_folders,12,"[""isv"", ""custom""]",[],1719546975,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/list-2
6989078472837185539,获取人才字段,hire,hire,v1,talent_object,query,获取全部人才字段详细信息,包含字段名称、字段描述、字段类型、启用状态等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query,GET:/open-apis/hire/v1/talent_objects/query,9,"[""isv"", ""custom""]",[],1747361704,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/query
7098526921012936706,查询人才操作记录,hire,hire,v1,talent_operation_log,search,根据操作人和操作类型查询人才的操作记录。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/talent_operation_log/search,POST:/open-apis/hire/v1/talent_operation_logs/search,1734615109088,"[""isv"", ""custom""]",[],1724383049,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/search
7397677441913028636,批量加入/移除人才库中人才,hire,hire,v1,talent_pool,batch_change_talent_pool,对于同一个人才库,可批量执行人才加入或移除操作 - 执行加入操作:当传入不存在人才 ID 时,接口会报错返回不存在人才 ID 列表。 当人才已在人才库中时,接口静默处理。 - 执行移除操作:当传入不存在人才 ID 时,接口会报错返回不存在人才 ID 列表。 当人才未在人才库中时,接口静默处理。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/batch_change_talent_pool,POST:/open-apis/hire/v1/talent_pools/:talent_pool_id/batch_change_talent_pool,1721963277241,"[""custom""]",[],1733206006,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/talent_pool/batch_change_talent_pool
7218853190452445188,将人才加入人才库,hire,hire,v1,talent_pool,move_talent,将人才加入人才库。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/move_talent,POST:/open-apis/hire/v1/talent_pools/:talent_pool_id/talent_relationship,1680751135812,"[""custom""]",[],1724834871,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent_pool/move_talent
7218853190452428804,获取人才库列表,hire,hire,v1,talent_pool,search,获取人才库列表,可获取的信息包括人才库 ID、人才库名称等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/search,GET:/open-apis/hire/v1/talent_pools/,1680751188695,"[""isv"", ""custom""]",[],1725350473,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent_pool/search
7404770953199714306,获取人才标签信息列表,hire,hire,v1,talent_tag,list,可通过关键词、ID 列表、标签类型、停用状态等获取人才标签信息列表,结果按照创建时间倒序排序。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_tag/list,GET:/open-apis/hire/v1/talent_tags,1729222621076,"[""isv"", ""custom""]",[],1733897571,false,1,https://open.feishu.cn/document/hire-v1/recruitment-related-configuration/application/list-2
7036934321795039234,获取终止投递原因,hire,hire,v1,termination_reason,list,获取系统中默认的投递终止原因以及用户配置的自定义投递终止原因。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/termination_reason/list,GET:/open-apis/hire/v1/termination_reasons,5,"[""isv"", ""custom""]",[],1719285362,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/application/list-2
7127207246887796740,获取笔试列表,hire,hire,v1,test,search,批量获取人才在投递流程中的笔试信息。如作答状态、笔试得分等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/test/search,POST:/open-apis/hire/v1/tests/search,1,"[""isv"", ""custom""]",[],1735216886,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/delivery-process-management/exam/search
7096463887449325596,批量获取待办事项,hire,hire,v1,todo,list,批量获取当前用户的待办事项信息,包含评估待办事项、面试待办事项、笔试待办事项和 Offer 待办事项。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/todo/list,GET:/open-apis/hire/v1/todos,1673841882370,"[""custom""]",[],1724999547,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/recruitment-process-follow-up/list
7307160083569623043,创建三方协议,hire,hire,v1,tripartite_agreement,create,在校招投递上创建三方协议。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/create,POST:/open-apis/hire/v1/tripartite_agreements,1701229732278,"[""isv"", ""custom""]",[],1724834802,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/tripartite_agreement/create
7307160083569639427,删除三方协议,hire,hire,v1,tripartite_agreement,delete,删除投递的三方协议。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/delete,DELETE:/open-apis/hire/v1/tripartite_agreements/:tripartite_agreement_id,1701229605930,"[""isv"", ""custom""]",[],1724834839,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/tripartite_agreement/delete
7307160083569672195,获取三方协议,hire,hire,v1,tripartite_agreement,list,根据三方协议 ID 或投递 ID 获取三方协议信息,如三方协议状态、创建时间等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/list,GET:/open-apis/hire/v1/tripartite_agreements,1701229701344,"[""isv"", ""custom""]",[],1724834814,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/tripartite_agreement/list
7307160083569688579,更新三方协议,hire,hire,v1,tripartite_agreement,update,更新三方协议的状态及修改时间信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/update,PUT:/open-apis/hire/v1/tripartite_agreements/:tripartite_agreement_id,1701229640258,"[""isv"", ""custom""]",[],1745502615,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/tripartite_agreement/update
7044464966434390044,获取用户角色列表,hire,hire,v1,user_role,list,通过用户ID、角色ID等筛选条件获取用户角色列表,可获取的信息包括用户ID、角色ID、角色姓名、业务管理范围等,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/user_role/list,GET:/open-apis/hire/v1/user_roles,1,"[""isv"", ""custom""]",[],1724985067,false,1,https://open.feishu.cn/document/server-docs/hire-v1/recruitment-related-configuration/auth/list-2
6990661791098699779,获取招聘官网列表,hire,hire,v1,website,list,获取招聘官网列表,返回信息包括官网名称、官网ID、招聘渠道ID等。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website/list,GET:/open-apis/hire/v1/websites,1,"[""isv"", ""custom""]",[],1722568753,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/list
7097130725263474689,新建招聘官网推广渠道,hire,hire,v1,website.channel,create,新建指定官网的推广渠道。每个官网可以新建多个推广渠道,每个推广渠道具有不同的推广链接和推广码。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/create,POST:/open-apis/hire/v1/websites/:website_id/channels,12,"[""custom""]",[],1722568751,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/create-2
7097130725263458305,删除招聘官网推广渠道,hire,hire,v1,website.channel,delete,根据招聘官网 ID 和推广渠道 ID 删除推广渠道。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/delete,DELETE:/open-apis/hire/v1/websites/:website_id/channels/:channel_id,11,"[""custom""]",[],1722568751,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/delete
7097130725263441921,获取招聘官网推广渠道列表,hire,hire,v1,website.channel,list,根据官网 ID 获取推广渠道列表,支持分页查询。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/list,GET:/open-apis/hire/v1/websites/:website_id/channels,9,"[""isv"", ""custom""]",[],1722568751,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/list-3
7097130725263491073,更新招聘官网推广渠道,hire,hire,v1,website.channel,update,根据招聘官网 ID 和推广渠道 ID 更改推广渠道,仅支持修改推广渠道名称。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/update,PUT:/open-apis/hire/v1/websites/:website_id/channels/:channel_id,10,"[""custom""]",[],1722568751,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/update
7097131869725179905,根据简历附件创建招聘官网投递任务,hire,hire,v1,website.delivery,create_by_attachment,根据简历附件创建招聘官网投递任务,创建投递的最终结果请通过[获取招聘官网投递任务结果](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery_task/get)获取。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment,POST:/open-apis/hire/v1/websites/:website_id/deliveries/create_by_attachment,3,"[""custom""]",[],1722579550,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/create_by_attachment
6990661791098716163,新建招聘官网投递,hire,hire,v1,website.delivery,create_by_resume,新建招聘官网投递。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_resume,POST:/open-apis/hire/v1/websites/:website_id/deliveries/create_by_resume,4,"[""custom""]",[],1722571011,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/create_by_resume
7097130726429179906,获取招聘官网投递任务结果,hire,hire,v1,website.delivery_task,get,通过[根据简历附件创建招聘官网投递](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment)接口创建的投递任务,可通过本接口获取投递任务结果。如果获取到的数据 data 为空,可继续轮询(正常情况下不会超过1分钟)直到获取到的 data 不为空。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery_task/get,GET:/open-apis/hire/v1/websites/:website_id/delivery_tasks/:delivery_task_id,2,"[""isv"", ""custom""]",[],1722568752,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/get-2
6990661791098650627,获取招聘官网下职位广告详情,hire,hire,v1,website.job_post,get,获取招聘官网下的职位广告详情,包含职位广告 ID、名称、关联职位 ID、关联职位编码等信息。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/get,GET:/open-apis/hire/v1/websites/:website_id/job_posts/:job_post_id,7,"[""isv"", ""custom""]",[],1725538280,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/get
6990661791098667011,获取招聘官网下的职位广告列表,hire,hire,v1,website.job_post,list,获取招聘官网下的职位信息列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/list,GET:/open-apis/hire/v1/websites/:website_id/job_posts,5,"[""isv"", ""custom""]",[],1733897571,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/list-2
7021042393814450179,搜索招聘官网下的职位广告列表,hire,hire,v1,website.job_post,search,搜索招聘官网下的职位列表。,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/search,POST:/open-apis/hire/v1/websites/:website_id/job_posts/search,6,"[""isv"", ""custom""]",[],1733897571,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/search
6990661791098634243,新建招聘官网用户,hire,hire,v1,website.site_user,create,注册指定招聘官网的用户,注册完成后,可通过[根据简历附件创建招聘官网投递任务](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment)创建官网投递任务,或通过[新建招聘官网投递](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_resume)创建官网投递,none,true,/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-site_user/create,POST:/open-apis/hire/v1/websites/:website_id/site_users,8,"[""custom""]",[],1722571010,false,1,https://open.feishu.cn/document/server-docs/hire-v1/get-candidates/website/create
7356428725080358914,获取面试评价详细信息(新版),hire,hire,v2,interview_record,get,获取面试评价详细信息,如面试结论、面试得分和面试官等信息(含模块评价)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/hire-v2/interview_record/get,GET:/open-apis/hire/v2/interview_records/:interview_record_id,6,"[""isv"", ""custom""]",[],1765445656,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/interview/get-3
7356428725080375298,批量获取面试评价详细信息(新版),hire,hire,v2,interview_record,list,批量获取面试评价详细信息,如面试结论、面试得分和面试官等信息(含模块评价)。,none,true,/document/uAjLw4CM/ukTMukTMukTM/hire-v2/interview_record/list,GET:/open-apis/hire/v2/interview_records,4,"[""isv"", ""custom""]",[],1765445666,false,1,https://open.feishu.cn/document/hire-v1/candidate-management/delivery-process-management/interview/list-4
7177216475677474820,获取人才详情,hire,hire,v2,talent,get,根据人才 ID 获取人才详情,包含人才加入文件夹列表、标签、人才库、备注以及屏蔽名单等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/hire-v2/talent/get,GET:/open-apis/hire/v2/talents/:talent_id,7,"[""isv"", ""custom""]",[],1764644267,false,1,https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/get-2
6940461543747289116,裁剪人脸图片,human_authentication,face_verify,old,default,v1/crop_face_image,无源人脸比对流程,开发者后台通过调用此接口对基准图片做规范校验及处理。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/human_authentication-v1/face/facial-image-cropping,POST:/open-apis/face_verify/v1/crop_face_image,2,[],[],1730444423,false,1,https://open.feishu.cn/document/server-docs/human_authentication-v1/facial-image-cropping
6940461543747256348,查询人脸认证结果,human_authentication,face_verify,old,default,v1/query_auth_result,人脸比对流程,开发者后台调用此接口请求飞书后台,对本次活体比对结果做校验,支持查询有源认证与无源认证结果。,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/human_authentication-v1/face/query-recognition-result,GET:/open-apis/face_verify/v1/query_auth_result,1,[],[],1730444445,false,1,https://open.feishu.cn/document/server-docs/human_authentication-v1/query-recognition-result
6940461543747272732,上传人脸基准图片,human_authentication,face_verify,old,default,v1/upload_face_image,无源人脸比对流程,开发者后台通过调用此接口将基准图片上传到飞书后台,做检测时的对比使用。 ::: note 无源人脸比对接入需申请白名单,接入前请联系飞书开放平台工作人员,邮箱:open-platform@bytedance.com。 :::,none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/human_authentication-v1/face/upload-facial-reference-image,POST:/open-apis/face_verify/v1/upload_face_image,3,[],[],1730444402,false,1,https://open.feishu.cn/document/server-docs/human_authentication-v1/upload-facial-reference-image
6940461543747305500,录入身份信息,human_authentication,human_authentication,v1,identity,create,该接口用于录入实名认证的身份信息,在唤起有源活体认证前,需要使用该接口进行实名认证。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/human_authentication-v1/identity/create,POST:/open-apis/human_authentication/v1/identities,4,"[""isv"", ""custom""]",[],1730444380,true,1,https://open.feishu.cn/document/server-docs/human_authentication-v1/create
6907568030018469890,延时更新消息卡片,im,card,old,default,v1/card/update,用户点击卡片进行交互、你的服务端在收到并响应卡片的回调请求后,可调用该接口延时更新卡片。,none,true,/document/ukTMukTMukTM/uMDO1YjLzgTN24yM4UjN,POST:/open-apis/interactive/v1/card/update,4,"[""isv"", ""custom""]",[],1757496852,false,1,https://open.feishu.cn/document/server-docs/im-v1/message-card/delay-update-message-card
7021850211959291932,批量撤回消息,im,im,v1,batch_message,delete,该接口用于撤回通过[批量发送消息](/ssl:ttdoc/ukTMukTMukTM/ucDO1EjL3gTNx4yN4UTM)接口发送的消息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/batch_message/delete,DELETE:/open-apis/im/v1/batch_messages/:batch_message_id,3,"[""isv"", ""custom""]",[],1735820030,true,1,https://open.feishu.cn/document/server-docs/im-v1/batch_message/delete
7039583318606217220,查询批量消息整体进度,im,im,v1,batch_message,get_progress,[批量发送消息](/ssl:ttdoc/ukTMukTMukTM/ucDO1EjL3gTNx4yN4UTM)或者[批量撤回消息](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/batch_message/delete)后,可通过该接口查询消息的发送进度和撤回进度。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/batch_message/get_progress,GET:/open-apis/im/v1/batch_messages/:batch_message_id/get_progress,1,"[""isv"", ""custom""]",[],1736756542,true,1,https://open.feishu.cn/document/server-docs/im-v1/batch_message/get_progress
7021850211959275548,查询批量消息推送和阅读人数,im,im,v1,batch_message,read_user,[批量发送消息](/ssl:ttdoc/ukTMukTMukTM/ucDO1EjL3gTNx4yN4UTM)后,可通过该接口查询消息推送的总人数以及消息已读人数。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/batch_message/read_user,GET:/open-apis/im/v1/batch_messages/:batch_message_id/read_user,2,"[""isv"", ""custom""]",[],1735820030,true,1,https://open.feishu.cn/document/server-docs/im-v1/batch_message/read_user
6946222931479379969,创建群,im,im,v1,chat,create,创建群聊,创建时支持设置群头像、群名称、群主以及群类型等配置,同时支持邀请群成员、群机器人入群。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/create,POST:/open-apis/im/v1/chats,12,"[""isv"", ""custom""]",[],1732502476,true,1,https://open.feishu.cn/document/server-docs/group/chat/create
6946222931479396353,解散群,im,im,v1,chat,delete,通过 chat_id 解散指定群组。通过 API 解散群组后,群聊天记录将不会保存。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/delete,DELETE:/open-apis/im/v1/chats/:chat_id,11,"[""isv"", ""custom""]",[],1734503081,true,1,https://open.feishu.cn/document/server-docs/group/chat/delete
6946222931479478273,获取群信息,im,im,v1,chat,get,获取指定群的基本信息,包括群名称、群描述、群头像、群主 ID 以及群权限配置等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/get,GET:/open-apis/im/v1/chats/:chat_id,8,"[""isv"", ""custom""]",[],1739946856,true,1,https://open.feishu.cn/document/server-docs/group/chat/get-2
7139929321426386972,获取群分享链接,im,im,v1,chat,link,获取指定群的分享链接,他人点击分享链接后可加入群组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/link,POST:/open-apis/im/v1/chats/:chat_id/link,2,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat/link
6946222931479412737,获取用户或机器人所在的群列表,im,im,v1,chat,list,获取 [access_token](/ssl:ttdoc/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-choose-which-type-of-token-to-use) 所代表的用户或者机器人所在的群列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/list,GET:/open-apis/im/v1/chats,5,"[""isv"", ""custom""]",[],1730257051,true,1,https://open.feishu.cn/document/server-docs/group/chat/list
6946222929790648348,搜索对用户或机器人可见的群列表,im,im,v1,chat,search,获取当前身份(用户或机器人)可见的群列表,包括当前身份所在的群、对当前身份公开的群。支持关键词搜索、分页搜索。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/search,GET:/open-apis/im/v1/chats/search,4,"[""isv"", ""custom""]",[],1743074388,true,1,https://open.feishu.cn/document/server-docs/group/chat/search
6946222931479592961,更新群信息,im,im,v1,chat,update,更新指定群的信息,包括群头像、群名称、群描述、群配置以及群主等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat/update,PUT:/open-apis/im/v1/chats/:chat_id,10,"[""isv"", ""custom""]",[],1730257051,true,1,https://open.feishu.cn/document/server-docs/group/chat/update-2
6946222929790435356,获取群公告信息,im,im,v1,chat.announcement,get,获取指定群组中的群公告信息,公告信息格式与[旧版云文档](https://open.feishu.cn/document/ukTMukTMukTM/uAzM5YjLwMTO24CMzkjN)格式相同。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-announcement/get,GET:/open-apis/im/v1/chats/:chat_id/announcement,1,"[""isv"", ""custom""]",[],1748248144,true,1,https://open.feishu.cn/document/server-docs/group/chat-announcement/get
6946222931479511041,更新群公告信息,im,im,v1,chat.announcement,patch,更新指定群组中的群公告信息。更新的公告内容格式和更新[旧版云文档](https://open.feishu.cn/document/ukTMukTMukTM/uAzM5YjLwMTO24CMzkjN)的格式相同,不支持新版云文档格式。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-announcement/patch,PATCH:/open-apis/im/v1/chats/:chat_id/announcement,2,"[""isv"", ""custom""]",[],1748248144,true,1,https://open.feishu.cn/document/server-docs/group/chat-announcement/patch
6995085510524698625,指定群管理员,im,im,v1,chat.managers,add_managers,指定群组,将群内指定的用户或者机器人设置为群管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-managers/add_managers,POST:/open-apis/im/v1/chats/:chat_id/managers/add_managers,8,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/add_managers
6995085510524715009,删除群管理员,im,im,v1,chat.managers,delete_managers,指定群组,删除群组内指定的管理员,包括用户类型的管理员和机器人类型的管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-managers/delete_managers,POST:/open-apis/im/v1/chats/:chat_id/managers/delete_managers,7,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/delete_managers
6946222931479609345,将用户或机器人拉入群聊,im,im,v1,chat.members,create,把指定的用户或机器人拉入指定群聊内。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-members/create,POST:/open-apis/im/v1/chats/:chat_id/members,6,"[""isv"", ""custom""]",[],1741868620,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/create
6946222929790468124,将用户或机器人移出群聊,im,im,v1,chat.members,delete,将指定的用户或机器人从群聊中移出。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-members/delete,DELETE:/open-apis/im/v1/chats/:chat_id/members,4,"[""isv"", ""custom""]",[],1741868619,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/delete
6946222929790550044,获取群成员列表,im,im,v1,chat.members,get,获取指定群组的成员信息,包括成员名字与 ID。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-members/get,GET:/open-apis/im/v1/chats/:chat_id/members,3,"[""isv"", ""custom""]",[],1730257096,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/get
6946222929790418972,判断用户或机器人是否在群里,im,im,v1,chat.members,is_in_chat,根据使用的 access_token 判断对应的用户或者机器人是否在指定的群里。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-members/is_in_chat,GET:/open-apis/im/v1/chats/:chat_id/members/is_in_chat,2,"[""isv"", ""custom""]",[],1735820031,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/is_in_chat
6946222929790631964,用户或机器人主动加入群聊,im,im,v1,chat.members,me_join,将当前调用接口的操作者(用户或机器人)加入指定群聊。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-members/me_join,PATCH:/open-apis/im/v1/chats/:chat_id/members/me_join,5,"[""isv"", ""custom""]",[],1737081995,true,1,https://open.feishu.cn/document/server-docs/group/chat-member/me_join
7174746098262704132,修改群菜单元信息,im,im,v1,chat.menu_item,patch,修改指定群组内的某个一级菜单或者二级菜单的元信息,包括图标、名称、国际化名称和跳转链接。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-menu_item/patch,PATCH:/open-apis/im/v1/chats/:chat_id/menu_items/:menu_item_id,3,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-menu_tree/patch
7174746098262638596,添加群菜单,im,im,v1,chat.menu_tree,create,在指定群组中添加一个或多个群菜单。成功调用后接口会返回当前群组内所有群菜单信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-menu_tree/create,POST:/open-apis/im/v1/chats/:chat_id/menu_tree,5,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-menu_tree/create
7174746098262654980,删除群菜单,im,im,v1,chat.menu_tree,delete,删除指定群内的一级菜单。成功调用后接口会返回群组内最新的群菜单信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-menu_tree/delete,DELETE:/open-apis/im/v1/chats/:chat_id/menu_tree,4,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-menu_tree/delete
7174746098262671364,获取群菜单,im,im,v1,chat.menu_tree,get,获取指定群组内的群菜单信息,包括所有一级或二级菜单的名称、跳转链接、图标等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-menu_tree/get,GET:/open-apis/im/v1/chats/:chat_id/menu_tree,1,"[""isv"", ""custom""]",[],1748248144,true,1,https://open.feishu.cn/document/server-docs/group/chat-menu_tree/get
7174746098262687748,排序群菜单,im,im,v1,chat.menu_tree,sort,调整指定群组内的群菜单排列顺序,成功调用后接口会返回群组内所有群菜单信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-menu_tree/sort,POST:/open-apis/im/v1/chats/:chat_id/menu_tree/sort,2,"[""isv"", ""custom""]",[],1748248143,true,1,https://open.feishu.cn/document/server-docs/group/chat-menu_tree/sort
6951292665602883586,获取群成员发言权限,im,im,v1,chat.moderation,get,获取指定群组的发言模式、可发言用户名单等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-moderation/get,GET:/open-apis/im/v1/chats/:chat_id/moderation,3,"[""isv"", ""custom""]",[],1734503081,true,1,https://open.feishu.cn/document/server-docs/group/chat/get
6951292665602899970,更新群发言权限,im,im,v1,chat.moderation,update,更新指定群组的发言权限,可设置为所有群成员可发言、仅群主或管理员可发言、指定群成员可发言。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-moderation/update,PUT:/open-apis/im/v1/chats/:chat_id/moderation,9,"[""isv"", ""custom""]",[],1734503081,true,1,https://open.feishu.cn/document/server-docs/group/chat/update
7111246605500563457,添加会话标签页,im,im,v1,chat.tab,create,在指定会话内添加自定义会话标签页,仅支持添加文档类型(doc)或 URL (url)类型的标签页。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-tab/create,POST:/open-apis/im/v1/chats/:chat_id/chat_tabs,5,"[""isv"", ""custom""]",[],1754898941,true,1,https://open.feishu.cn/document/server-docs/group/chat-tab/create
7111246605500579841,删除会话标签页,im,im,v1,chat.tab,delete_tabs,删除指定会话内的一个或多个会话标签页。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-tab/delete_tabs,DELETE:/open-apis/im/v1/chats/:chat_id/chat_tabs/delete_tabs,4,"[""isv"", ""custom""]",[],1748248144,true,1,https://open.feishu.cn/document/server-docs/group/chat-tab/delete_tabs
7111246605500596225,拉取会话标签页,im,im,v1,chat.tab,list_tabs,获取指定会话内的会话标签页信息,包括 ID、名称、类型以及内容等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-tab/list_tabs,GET:/open-apis/im/v1/chats/:chat_id/chat_tabs/list_tabs,1,"[""isv"", ""custom""]",[],1748248145,true,1,https://open.feishu.cn/document/server-docs/group/chat-tab/list_tabs
7111246605500628993,会话标签页排序,im,im,v1,chat.tab,sort_tabs,调整指定会话内的多个会话标签页排列顺序。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-tab/sort_tabs,POST:/open-apis/im/v1/chats/:chat_id/chat_tabs/sort_tabs,2,"[""isv"", ""custom""]",[],1748248145,true,1,https://open.feishu.cn/document/server-docs/group/chat-tab/sort_tabs
7111246605500612609,更新会话标签页,im,im,v1,chat.tab,update_tabs,更新指定的会话标签页信息,包括名称、类型以及内容等。仅支持更新文档类型(doc)或 URL (url)类型的标签页。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-tab/update_tabs,POST:/open-apis/im/v1/chats/:chat_id/chat_tabs/update_tabs,3,"[""isv"", ""custom""]",[],1754898941,true,1,https://open.feishu.cn/document/server-docs/group/chat-tab/update_tabs
7043624153760759810,撤销群置顶,im,im,v1,chat.top_notice,delete_top_notice,撤销指定群组中的置顶消息或群公告。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-top_notice/delete_top_notice,POST:/open-apis/im/v1/chats/:chat_id/top_notice/delete_top_notice,6,"[""isv"", ""custom""]",[],1734503081,true,1,https://open.feishu.cn/document/server-docs/group/chat/delete_top_notice
7043611687799816193,更新群置顶,im,im,v1,chat.top_notice,put_top_notice,更新群组中的群置顶信息,可以将群中的某一条消息,或群公告置顶展示。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/chat-top_notice/put_top_notice,POST:/open-apis/im/v1/chats/:chat_id/top_notice/put_top_notice,7,"[""isv"", ""custom""]",[],1734503081,true,1,https://open.feishu.cn/document/server-docs/group/chat/put_top_notice
6946222931479461889,上传文件,im,im,v1,file,create,调用该接口将本地文件上传至开放平台,支持上传音频、视频、文档等文件类型。上传后接口会返回文件的 Key,使用该 Key 值可以调用其他 OpenAPI。例如,调用[发送消息](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/create)接口,发送文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/file/create,POST:/open-apis/im/v1/files,1615546043389,"[""isv"", ""custom""]",[],1724222424,true,1,https://open.feishu.cn/document/server-docs/im-v1/file/create
6946222929790517276,下载文件,im,im,v1,file,get,通过已上传文件的 Key 下载文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/file/get,GET:/open-apis/im/v1/files/:file_key,1615546028932,"[""isv"", ""custom""]",[],1724222424,true,1,https://open.feishu.cn/document/server-docs/im-v1/file/get
6946222931479445505,上传图片,im,im,v1,image,create,调用本接口将图片上传至飞书开放平台,支持上传 JPG、JPEG、PNG、WEBP、GIF、BMP、ICO、TIFF、HEIC 格式的图片,但需要注意 TIFF、HEIC 上传后会被转为 JPG 格式。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/image/create,POST:/open-apis/im/v1/images,1615545741520,"[""isv"", ""custom""]",[],1724222423,true,1,https://open.feishu.cn/document/server-docs/im-v1/image/create
6946222929790582812,下载图片,im,im,v1,image,get,通过已上传图片的 Key 值下载图片。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/image/get,GET:/open-apis/im/v1/images/:image_key,1615545599161,"[""isv"", ""custom""]",[],1735820030,true,1,https://open.feishu.cn/document/server-docs/im-v1/image/get
6946222931479527425,发送消息,im,im,v1,message,create,调用该接口向指定用户或者群聊发送消息。支持发送的消息类型包括文本、富文本、卡片、群名片、个人名片、图片、视频、音频、文件以及表情包等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/create,POST:/open-apis/im/v1/messages,13,"[""isv"", ""custom""]",[],1754987700,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/create
6946222929790681116,撤回消息,im,im,v1,message,delete,调用该接口撤回指定消息。调用接口的身份不同(身份通过 Authorization 请求头参数指定),可实现的效果不同: - 机器人可以撤回该机器人自己发送的消息。 - 群聊的群主可以撤回群内指定的消息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/delete,DELETE:/open-apis/im/v1/messages/:message_id,7,"[""isv"", ""custom""]",[],1733886820,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/delete
7210967154035621891,转发消息,im,im,v1,message,forward,调用该接口将一条指定的消息转发给用户、群聊或话题。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/forward,POST:/open-apis/im/v1/messages/:message_id/forward,10,"[""isv"", ""custom""]",[],1733886820,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/forward
6946222929790451740,获取指定消息的内容,im,im,v1,message,get,调用该接口通过消息的 `message_id` 查询消息内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/get,GET:/open-apis/im/v1/messages/:message_id,2,"[""isv"", ""custom""]",[],1749830573,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/get
6946222931479560193,获取会话历史消息,im,im,v1,message,list,获取指定会话(包括单聊、群组)内的历史消息(即聊天记录)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/list,GET:/open-apis/im/v1/messages,4,"[""isv"", ""custom""]",[],1747710110,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/list
7210967154035638275,合并转发消息,im,im,v1,message,merge_forward,将来自同一个会话内的多条消息,合并转发给指定的用户、群聊或话题。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/merge_forward,POST:/open-apis/im/v1/messages/merge_forward,9,"[""isv"", ""custom""]",[],1733886820,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/merge_forward
6946222931479543809,更新已发送的消息卡片,im,im,v1,message,patch,通过消息 ID(message_id)更新已发送的消息卡片的内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/patch,PATCH:/open-apis/im/v1/messages/:message_id,5,"[""isv"", ""custom""]",[],1752581152,true,1,https://open.feishu.cn/document/server-docs/im-v1/message-card/patch
7377650885165268995,添加跟随气泡,im,im,v1,message,push_follow_up,调用该接口在最新一条消息下方添加气泡样式的内容,当消息接收者点击气泡或者新消息到达后,气泡消失。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/push_follow_up,POST:/open-apis/im/v1/messages/:message_id/push_follow_up,6,"[""isv"", ""custom""]",[],1726300643,true,1,https://open.feishu.cn/document/im-v1/message/push_follow_up
6946222929790386204,查询消息已读信息,im,im,v1,message,read_users,查询指定消息是否已读。接口只返回已读用户的信息,不返回未读用户的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/read_users,GET:/open-apis/im/v1/messages/:message_id/read_users,5,"[""isv"", ""custom""]",[],1735820030,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/read_users
6946222929790500892,回复消息,im,im,v1,message,reply,调用该接口回复指定消息。回复的内容支持文本、富文本、卡片、群名片、个人名片、图片、视频、文件等多种类型。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/reply,POST:/open-apis/im/v1/messages/:message_id/reply,12,"[""isv"", ""custom""]",[],1747830821,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/reply
7239186075281358852,编辑消息,im,im,v1,message,update,调用该接口编辑已发送的消息内容,支持编辑文本、富文本消息。如需编辑卡片消息,请使用[更新应用发送的消息卡片](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/patch)接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/update,PUT:/open-apis/im/v1/messages/:message_id,11,"[""isv"", ""custom""]",[],1727235577,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/update
6948245234036621340,发送应用内加急,im,im,v1,message,urgent_app,调用该接口把指定消息加急给目标用户,加急仅在飞书客户端内通知。了解加急可参见[加急功能](https://www.feishu.cn/hc/zh-CN/articles/360024757913)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/urgent_app,PATCH:/open-apis/im/v1/messages/:message_id/urgent_app,5,"[""isv"", ""custom""]",[],1727245979,true,1,https://open.feishu.cn/document/server-docs/im-v1/buzz-messages/urgent_app
6948245234036654108,发送电话加急,im,im,v1,message,urgent_phone,调用该接口把指定消息加急给目标用户,加急将通过飞书客户端和电话进行通知。了解加急可参见[加急功能](https://www.feishu.cn/hc/zh-CN/articles/360024757913)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/urgent_phone,PATCH:/open-apis/im/v1/messages/:message_id/urgent_phone,3,"[""isv"", ""custom""]",[],1727245980,true,1,https://open.feishu.cn/document/server-docs/im-v1/buzz-messages/urgent_phone
6948245234036637724,发送短信加急,im,im,v1,message,urgent_sms,调用该接口把指定消息加急给目标用户,加急将通过飞书客户端和短信进行通知。了解加急可参见[加急功能](https://www.feishu.cn/hc/zh-CN/articles/360024757913)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message/urgent_sms,PATCH:/open-apis/im/v1/messages/:message_id/urgent_sms,4,"[""isv"", ""custom""]",[],1727245979,true,1,https://open.feishu.cn/document/server-docs/im-v1/buzz-messages/urgent_sms
6990603997012312066,添加消息表情回复,im,im,v1,message.reaction,create,给指定消息添加指定类型的表情回复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message-reaction/create,POST:/open-apis/im/v1/messages/:message_id/reactions,4,"[""isv"", ""custom""]",[],1732700102,true,1,https://open.feishu.cn/document/server-docs/im-v1/message-reaction/create
6990603997012295682,删除消息表情回复,im,im,v1,message.reaction,delete,删除指定消息的某一表情回复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message-reaction/delete,DELETE:/open-apis/im/v1/messages/:message_id/reactions/:reaction_id,2,"[""isv"", ""custom""]",[],1732700103,true,1,https://open.feishu.cn/document/server-docs/im-v1/message-reaction/delete
6990603997012279298,获取消息表情回复,im,im,v1,message.reaction,list,获取指定消息内的表情回复列表,支持仅获取特定类型的表情回复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message-reaction/list,GET:/open-apis/im/v1/messages/:message_id/reactions,3,"[""isv"", ""custom""]",[],1724222390,true,1,https://open.feishu.cn/document/server-docs/im-v1/message-reaction/list
6946222931479576577,获取消息中的资源文件,im,im,v1,message.resource,get,获取指定消息内包含的资源文件,包括音频、视频、图片和文件。成功调用后,返回二进制文件流下载文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/message-resource/get,GET:/open-apis/im/v1/messages/:message_id/resources/:file_key,3,"[""isv"", ""custom""]",[],1748920697,true,1,https://open.feishu.cn/document/server-docs/im-v1/message/get-2
7138313270488858626,Pin 消息,im,im,v1,pin,create,Pin 一条指定的消息。Pin 消息的效果可参见[Pin 消息概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/im-v1/pin/pin-overview)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/pin/create,POST:/open-apis/im/v1/pins,3,"[""isv"", ""custom""]",[],1733886821,true,1,https://open.feishu.cn/document/server-docs/im-v1/pin/create
7138313270488875010,移除 Pin 消息,im,im,v1,pin,delete,移除一条指定消息的 Pin。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/pin/delete,DELETE:/open-apis/im/v1/pins/:message_id,2,"[""isv"", ""custom""]",[],1733886822,true,1,https://open.feishu.cn/document/server-docs/im-v1/pin/delete
7138313270488891394,获取群内 Pin 消息,im,im,v1,pin,list,获取指定群、指定时间范围内的所有 Pin 消息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/pin/list,GET:/open-apis/im/v1/pins,1,"[""isv"", ""custom""]",[],1733886822,true,1,https://open.feishu.cn/document/server-docs/im-v1/pin/list
7322036039857700865,转发话题,im,im,v1,thread,forward,调用该接口将话题转发至指定的用户、群聊或话题。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/thread/forward,POST:/open-apis/im/v1/threads/:thread_id/forward,8,"[""isv"", ""custom""]",[],1727235601,true,1,https://open.feishu.cn/document/im-v1/message/forward-2
7302258202712522780,创建应用消息流卡片,im,im,v2,app_feed_card,create,应用消息流卡片是飞书为应用提供的消息触达能力,让应用可以直接在消息流发送消息,重要消息能更快触达用户。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/app_feed_card/create,POST:/open-apis/im/v2/app_feed_card,3,"[""isv"", ""custom""]",[],1745288466,true,1,https://open.feishu.cn/document/im-v2/app_feed_card/create
7302258202712490012,删除应用消息流卡片,im,im,v2,app_feed_card.batch,delete,该接口用于删除应用消息流卡片,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/app_feed_card-batch/delete,DELETE:/open-apis/im/v2/app_feed_card/batch,1,"[""isv"", ""custom""]",[],1724931947,true,1,https://open.feishu.cn/document/im-v2/app_feed_card/delete
7302258202712473628,更新应用消息流卡片,im,im,v2,app_feed_card.batch,update,该接口用于更新消息流卡片的头像、标题、预览、标签状态、按钮等信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/app_feed_card-batch/update,PUT:/open-apis/im/v2/app_feed_card/batch,2,"[""isv"", ""custom""]",[],1724931925,true,1,https://open.feishu.cn/document/im-v2/app_feed_card/update
7315032956271329284,绑定标签到群,im,im,v2,biz_entity_tag_relation,create,绑定标签到业务实体。目前支持给会话打标签。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/biz_entity_tag_relation/create,POST:/open-apis/im/v2/biz_entity_tag_relation,2,"[""isv"", ""custom""]",[],1712631395,true,1,https://open.feishu.cn/document/tenant-tag/create-2
7350335258430816257,查询实体与标签的绑定关系,im,im,v2,biz_entity_tag_relation,get,查询实体与标签的绑定关系,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/biz_entity_tag_relation/get,GET:/open-apis/im/v2/biz_entity_tag_relation,1711370386940,"[""isv"", ""custom""]",[],1712631346,true,1,https://open.feishu.cn/document/tenant-tag/get
7315032956271263748,解绑标签与群,im,im,v2,biz_entity_tag_relation,update,从业务实体上解绑标签。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/biz_entity_tag_relation/update,PUT:/open-apis/im/v2/biz_entity_tag_relation,1,"[""isv"", ""custom""]",[],1712631407,true,1,https://open.feishu.cn/document/tenant-tag/update
7302258202712506396,更新消息流卡片按钮,im,im,v2,chat_button,update,为群组消息、机器人消息的消息流卡片添加、更新、删除快捷操作按钮。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/chat_button/update,PUT:/open-apis/im/v2/chat_button,1708499685113,"[""isv"", ""custom""]",[],1724931991,true,1,https://open.feishu.cn/document/im-v2/groups-bots/update
7350335258430799873,机器人单聊即时提醒,im,im,v2,feed_card,bot_time_sentive,可将机器人对话在消息列表中置顶展示,打开飞书首页即可处理重要任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/feed_card/bot_time_sentive,PATCH:/open-apis/im/v2/feed_cards/bot_time_sentive,1711371164148,"[""isv"", ""custom""]",[],1724931969,true,1,https://open.feishu.cn/document/im-v2/groups-bots/bot_time_sentive
7291232621641039875,即时提醒,im,im,v2,feed_card,patch,即时提醒能力是飞书在消息列表中提供的强提醒能力,当有重要通知或任务需要及时触达用户,可将群组或机器人对话在消息列表中置顶展示,打开飞书首页即可处理重要任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/feed_card/patch,PATCH:/open-apis/im/v2/feed_cards/:feed_card_id,1708499676474,"[""isv"", ""custom""]",[],1724932013,true,1,https://open.feishu.cn/document/im-v2/groups-bots/patch
7315032956271280132,创建标签,im,im,v2,tag,create,创建标签并返回标签 ID。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/tag/create,POST:/open-apis/im/v2/tags,1711370358121,"[""isv"", ""custom""]",[],1712631358,true,1,https://open.feishu.cn/document/tenant-tag/create
7315032956271296516,修改标签,im,im,v2,tag,patch,修改标签在各个语言下的名称。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/tag/patch,PATCH:/open-apis/im/v2/tags/:tag_id,4,"[""isv"", ""custom""]",[],1712631371,true,1,https://open.feishu.cn/document/tenant-tag/patch
7358413940747862020,更新 URL 预览,im,im,v2,url_preview,batch_update,该接口用于主动更新 [URL 预览](/ssl:ttdoc/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide),调用后会重新触发一次客户端拉取,需要回调服务返回更新后的数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update,POST:/open-apis/im/v2/url_previews/batch_update,1713253476142,"[""isv"", ""custom""]",[],1724405575,true,1,https://open.feishu.cn/document/im-v1/url_preview/batch_update
6907569742384316418,删除仅特定人可见的消息卡片,im,im_ephemeral,old,default,v1/delete,当发送的仅特定人可见的卡片消息已交互完成,可调用本接口删除该卡片。删除后将不会在对应设备上留下任何痕迹。,none,true,/document/ukTMukTMukTM/uITOyYjLykjM24iM5IjN,POST:/open-apis/ephemeral/v1/delete,2,"[""isv"", ""custom""]",[],1724222505,false,1,https://open.feishu.cn/document/server-docs/im-v1/message-card/delete-message-cards-that-are-only-visible-to-certain-people
6907569523177078785,发送仅特定人可见的消息卡片,im,im_ephemeral,old,default,v1/send,调用该接口,可以使应用机器人在指定群聊中发送仅指定用户可见的卡片消息。卡片上将展示 **仅对你可见** 标识,如下图所示。,none,true,/document/ukTMukTMukTM/uETOyYjLxkjM24SM5IjN,POST:/open-apis/ephemeral/v1/send,3,"[""isv"", ""custom""]",[],1754399895,false,1,https://open.feishu.cn/document/server-docs/im-v1/message-card/send-message-cards-that-are-only-visible-to-certain-people
6907569743419555842,批量发送消息,im,im_message,old,default,v4/batch_send/,给多个用户或者多个部门中的成员发送消息。,basic,true,/document/ukTMukTMukTM/ucDO1EjL3gTNx4yN4UTM,POST:/open-apis/message/v4/batch_send/,4,"[""isv"", ""custom""]",[],1732013221,true,1,https://open.feishu.cn/document/server-docs/im-v1/batch_message/send-messages-in-batches
6954915601882857475,创建邮件组,mail,mail,v1,mailgroup,create,创建一个邮件组,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/create,POST:/open-apis/mail/v1/mailgroups,6,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/create
6954915601882775555,删除邮件组,mail,mail,v1,mailgroup,delete,删除一个邮件组,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id,5,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/delete
6954915601882759171,查询指定邮件组,mail,mail,v1,mailgroup,get,获取特定邮件组信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/get,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id,2,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/get
6954915601882988547,批量获取邮件组,mail,mail,v1,mailgroup,list,分页批量获取邮件组,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/list,GET:/open-apis/mail/v1/mailgroups,1,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/list
6954915601882710019,修改邮件组部分信息,mail,mail,v1,mailgroup,patch,更新邮件组部分字段,没有填写的字段不会被更新。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/patch,PATCH:/open-apis/mail/v1/mailgroups/:mailgroup_id,4,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/patch
6954915601882791939,修改邮件组全部信息,mail,mail,v1,mailgroup,update,更新邮件组所有信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup/update,PUT:/open-apis/mail/v1/mailgroups/:mailgroup_id,3,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup/update
6993201646486536194,创建邮件组别名,mail,mail,v1,mailgroup.alias,create,创建邮件组别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-alias/create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/aliases,3,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-alias/create
6993201646486552578,删除邮件组别名,mail,mail,v1,mailgroup.alias,delete,删除邮件组别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-alias/delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id/aliases/:alias_id,2,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-alias/delete
6993152083270172673,获取邮件组所有别名,mail,mail,v1,mailgroup.alias,list,获取邮件组所有别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-alias/list,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/aliases,1,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-alias/list
7172379500607684612,批量创建邮件组管理员,mail,mail,v1,mailgroup.manager,batch_create,批量创建邮件组管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-manager/batch_create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/managers/batch_create,3,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-manager/batch_create
7172379500607700996,批量删除邮件组管理员,mail,mail,v1,mailgroup.manager,batch_delete,批量删除邮件组管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-manager/batch_delete,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/managers/batch_delete,2,"[""custom""]",[],1745841705,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-manager/batch_delete
7172379500607668228,批量获取邮件组管理员,mail,mail,v1,mailgroup.manager,list,批量获取邮件组管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-manager/list,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/managers,1,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-manager/list
7187647376462954500,批量创建邮件组成员,mail,mail,v1,mailgroup.member,batch_create,一次请求可以给一个邮件组添加多个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/batch_create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/members/batch_create,2,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/batch_create
7187647376462872580,批量删除邮件组成员,mail,mail,v1,mailgroup.member,batch_delete,一次请求可以删除一个邮件组中的多个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/batch_delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id/members/batch_delete,1,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/batch_delete
6954915601883037699,创建邮件组成员,mail,mail,v1,mailgroup.member,create,向邮件组添加单个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/members,6,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/create
6954915601882906627,删除邮件组成员,mail,mail,v1,mailgroup.member,delete,删除邮件组单个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id/members/:member_id,5,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/delete
6954915601882726403,查询指定邮件组成员,mail,mail,v1,mailgroup.member,get,获取邮件组单个成员信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/get,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/members/:member_id,4,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/get
6954915601882972163,获取所有邮件组成员,mail,mail,v1,mailgroup.member,list,分页批量获取邮件组成员列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-member/list,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/members,3,"[""custom""]",[],1745841706,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-member/list
7187647376462888964,批量创建邮件组权限成员,mail,mail,v1,mailgroup.permission_member,batch_create,一次请求可以给一个邮件组添加多个权限成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/batch_create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members/batch_create,2,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/batch_create
7187647376462905348,批量删除邮件组权限成员,mail,mail,v1,mailgroup.permission_member,batch_delete,一次请求可以删除一个邮件组中的多个权限成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/batch_delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members/batch_delete,1,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/batch_delete
6954915601882923011,创建邮件组权限成员,mail,mail,v1,mailgroup.permission_member,create,向邮件组添加单个自定义权限成员,添加后该成员可发送邮件到该邮件组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/create,POST:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members,6,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/create
6954915601882939395,删除邮件组权限成员,mail,mail,v1,mailgroup.permission_member,delete,从自定义成员中删除单个成员,删除后该成员无法发送邮件到该邮件组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/delete,DELETE:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members/:permission_member_id,5,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/delete
6954915601883054083,获取邮件组权限成员,mail,mail,v1,mailgroup.permission_member,get,获取邮件组单个权限成员信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/get,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members/:permission_member_id,4,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/get
6954915601882808323,批量获取邮件组权限成员,mail,mail,v1,mailgroup.permission_member,list,分页批量获取邮件组权限成员列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/mailgroup-permission_member/list,GET:/open-apis/mail/v1/mailgroups/:mailgroup_id/permission_members,3,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/mail-group/mailgroup-permission_member/list
6954915601882677251,创建公共邮箱,mail,mail,v1,public_mailbox,create,创建一个公共邮箱。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/create,POST:/open-apis/mail/v1/public_mailboxes,7,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/create
7018723423930286082,永久删除公共邮箱,mail,mail,v1,public_mailbox,delete,该接口会永久删除公共邮箱地址。可用于释放邮箱回收站的公共邮箱地址,一旦删除,该邮箱地址将无法恢复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/delete,DELETE:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id,1,"[""custom""]",[],1745841719,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/delete
6954915601883119619,查询指定公共邮箱,mail,mail,v1,public_mailbox,get,获取公共邮箱信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/get,GET:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id,4,"[""custom""]",[],1745841708,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/get
6954915601882955779,查询所有公共邮箱,mail,mail,v1,public_mailbox,list,分页批量获取公共邮箱列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/list,GET:/open-apis/mail/v1/public_mailboxes,3,"[""custom""]",[],1745841708,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/list
6954915601883136003,修改公共邮箱部分信息,mail,mail,v1,public_mailbox,patch,更新公共邮箱部分字段,没有填写的字段不会被更新。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/patch,PATCH:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id,6,"[""custom""]",[],1745841707,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/patch
7296319822873673730,将公共邮箱移至回收站,mail,mail,v1,public_mailbox,remove_to_recycle_bin,将公共邮箱移至回收站,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/remove_to_recycle_bin,DELETE:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/remove_to_recycle_bin,2,"[""custom""]",[],1745841719,true,1,https://open.feishu.cn/document/mail-v1/public-mailbox/public_mailbox/remove_to_recycle_bin
6954915601883021315,修改公共邮箱全部信息,mail,mail,v1,public_mailbox,update,更新公共邮箱所有信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox/update,PUT:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id,5,"[""custom""]",[],1745841708,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox/update
6993201646486470658,创建公共邮箱别名,mail,mail,v1,public_mailbox.alias,create,创建公共邮箱别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-alias/create,POST:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/aliases,3,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-alias/create
6993201646486585346,删除公共邮箱别名,mail,mail,v1,public_mailbox.alias,delete,删除公共邮箱别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-alias/delete,DELETE:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/aliases/:alias_id,2,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-alias/delete
6993201646486487042,查询公共邮箱的所有别名,mail,mail,v1,public_mailbox.alias,list,获取所有公共邮箱别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-alias/list,GET:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/aliases,1,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-alias/list
7187647376462921732,批量添加公共邮箱成员,mail,mail,v1,public_mailbox.member,batch_create,一次请求可以给一个公共邮箱添加多个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/batch_create,POST:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members/batch_create,2,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/batch_create
7187647376462938116,批量删除公共邮箱成员,mail,mail,v1,public_mailbox.member,batch_delete,一次请求可以删除一个公共邮箱中的多个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/batch_delete,DELETE:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members/batch_delete,1,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/batch_delete
6954915601882824707,删除公共邮箱所有成员,mail,mail,v1,public_mailbox.member,clear,删除公共邮箱所有成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/clear,POST:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members/clear,5,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/clear
6954915601883103235,添加公共邮箱成员,mail,mail,v1,public_mailbox.member,create,向公共邮箱添加单个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/create,POST:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members,7,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/create
6954915601882742787,删除公共邮箱单个成员,mail,mail,v1,public_mailbox.member,delete,删除公共邮箱单个成员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/delete,DELETE:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members/:member_id,6,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/delete
6954915601882693635,查询指定公共邮箱成员信息,mail,mail,v1,public_mailbox.member,get,获取公共邮箱单个成员信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/get,GET:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members/:member_id,4,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/get
6954915601883004931,查询所有公共邮箱成员信息,mail,mail,v1,public_mailbox.member,list,分页批量获取公共邮箱成员列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/public_mailbox-member/list,GET:/open-apis/mail/v1/public_mailboxes/:public_mailbox_id/members,3,"[""custom""]",[],1745841720,true,1,https://open.feishu.cn/document/server-docs/mail-v1/public-mailbox/public_mailbox-member/list
7055500003323379713,查询邮箱地址状态,mail,mail,v1,user,query,使用邮箱状态查询接口,可以输入邮箱地址,查询出该邮箱地址对应的类型以及状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user/query,POST:/open-apis/mail/v1/users/query,1642736990781,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user/query
7018723423930269698,从回收站删除用户邮箱地址,mail,mail,v1,user_mailbox,delete,该接口会永久删除用户邮箱地址。可用于删除位于邮箱回收站中的用户邮箱地址,一旦删除,将无法恢复。该接口支持邮件的转移,可以将被释放邮箱的邮件转移到另外一个可以使用的邮箱中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox/delete,DELETE:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id,4,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user_mailbox-alias/delete
7034854712587763714,创建用户邮箱别名,mail,mail,v1,user_mailbox.alias,create,创建用户邮箱别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-alias/create,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/aliases,3,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user_mailbox-alias/create
7034854712587796482,删除用户邮箱别名,mail,mail,v1,user_mailbox.alias,delete,删除用户邮箱别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-alias/delete,DELETE:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/aliases/:alias_id,2,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user_mailbox-alias/delete-2
7034854712587780098,获取用户邮箱所有别名,mail,mail,v1,user_mailbox.alias,list,获取用户邮箱所有别名。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-alias/list,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/aliases,1,"[""custom""]",[],1745841721,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user_mailbox-alias/list
7275929163676155907,订阅事件,mail,mail,v1,user_mailbox.event,subscribe,订阅事件,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-event/subscribe,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/event/subscribe,4,"[""custom""]",[],1745841579,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-event/subscribe
7275929163676237827,获取订阅状态,mail,mail,v1,user_mailbox.event,subscription,获取订阅状态,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-event/subscription,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/event/subscription,3,"[""custom""]",[],1745841591,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-event/subscription
7275929163676254211,取消订阅,mail,mail,v1,user_mailbox.event,unsubscribe,取消订阅,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-event/unsubscribe,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/event/unsubscribe,2,"[""custom""]",[],1745841602,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-event/unsubscribe
7275929163676090371,创建邮箱文件夹,mail,mail,v1,user_mailbox.folder,create,创建邮箱文件夹,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-folder/create,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/folders,4,"[""custom""]",[],1745841488,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-folder/create
7275929163676106755,删除邮箱文件夹,mail,mail,v1,user_mailbox.folder,delete,删除邮箱文件夹,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-folder/delete,DELETE:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/folders/:folder_id,3,"[""custom""]",[],1745841499,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-folder/delete
7275929163676123139,列出邮箱文件夹,mail,mail,v1,user_mailbox.folder,list,列出邮箱文件夹,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-folder/list,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/folders,1,"[""custom""]",[],1745841523,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-folder/list
7275929163676205059,修改邮箱文件夹,mail,mail,v1,user_mailbox.folder,patch,修改邮箱文件夹,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-folder/patch,PATCH:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/folders/:folder_id,2,"[""custom""]",[],1745841511,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-folder/patch
7270360193791868929,创建邮箱联系人,mail,mail,v1,user_mailbox.mail_contact,create,创建一个邮箱联系人,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-mail_contact/create,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/mail_contacts,4,"[""custom""]",[],1745841670,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-mail_contact/create
7270360193791885313,删除邮箱联系人,mail,mail,v1,user_mailbox.mail_contact,delete,删除一个邮箱联系人,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-mail_contact/delete,DELETE:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/mail_contacts/:mail_contact_id,3,"[""custom""]",[],1745841682,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-mail_contact/delete
7270360193791918081,列出邮箱联系人,mail,mail,v1,user_mailbox.mail_contact,list,列出邮箱联系人列表,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-mail_contact/list,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/mail_contacts,1,"[""custom""]",[],1745841704,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-mail_contact/list
7270360193791901697,修改邮箱联系人信息,mail,mail,v1,user_mailbox.mail_contact,patch,修改一个邮箱联系人的信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-mail_contact/patch,PATCH:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/mail_contacts/:mail_contact_id,2,"[""custom""]",[],1745841693,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-mail_contact/patch
7275929163676139523,获取邮件详情,mail,mail,v1,user_mailbox.message,get,获取邮件详情,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-message/get,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/messages/:message_id,3,"[""custom""]",[],1755223456,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-message/get
7447350647756800004,获取邮件卡片的邮件列表,mail,mail,v1,user_mailbox.message,get_by_card,获取邮件卡片下的邮件列表,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-message/get_by_card,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/messages/get_by_card,1733918501650,"[""custom""]",[],1745841534,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-message/get_by_card
7275929163676221443,列出邮件,mail,mail,v1,user_mailbox.message,list,列出邮件,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-message/list,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/messages,4,"[""custom""]",[],1745841546,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-message/list
7205136193486356481,发送邮件,mail,mail,v1,user_mailbox.message,send,发送邮件,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-message/send,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/messages/send,2,"[""custom""]",[],1755077627,true,1,https://open.feishu.cn/document/server-docs/mail-v1/user_mailbox-message/send
7296319822873657346,获取附件下载链接,mail,mail,v1,user_mailbox.message.attachment,download_url,获取附件下载链接,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-message-attachment/download_url,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/messages/:message_id/attachments/download_url,1698816219356,"[""isv"", ""custom""]",[],1745841568,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-message/user_mailbox-message-attachment/download_url
7275929163676172291,创建收信规则,mail,mail,v1,user_mailbox.rule,create,创建收信规则,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-rule/create,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/rules,6,"[""custom""]",[],1745841614,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-rule/create
7275929163676057603,删除收信规则,mail,mail,v1,user_mailbox.rule,delete,删除收信规则,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-rule/delete,DELETE:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/rules/:rule_id,5,"[""custom""]",[],1745841625,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-rule/delete
7275929163676073987,列出收信规则,mail,mail,v1,user_mailbox.rule,list,列出收信规则,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-rule/list,GET:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/rules,3,"[""custom""]",[],1745841647,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-rule/list
7275929163676188675,对收信规则进行排序,mail,mail,v1,user_mailbox.rule,reorder,对收信规则进行排序,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-rule/reorder,POST:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/rules/reorder,1,"[""custom""]",[],1745841659,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-rule/reorder
7275929163676270595,更新收信规则,mail,mail,v1,user_mailbox.rule,update,更新收信规则,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/mail-v1/user_mailbox-rule/update,PUT:/open-apis/mail/v1/user_mailboxes/:user_mailbox_id/rules/:rule_id,4,"[""custom""]",[],1745841636,true,1,https://open.feishu.cn/document/mail-v1/user_mailbox-rule/update
7120547953915510787,用户数据维度绑定,mdm,mdm,v1,user_auth_data_relation,bind,通过该接口,可为指定应用下的用户绑定一类数据维度,支持批量给多个用户同时增量授权。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/bind,POST:/open-apis/mdm/v1/user_auth_data_relations/bind,2,"[""isv"", ""custom""]",[],1688988417,true,1,https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/bind
7120547953915527171,用户数据维度解绑,mdm,mdm,v1,user_auth_data_relation,unbind,通过该接口,可为指定应用下的指定用户解除一类数据维度。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/unbind,POST:/open-apis/mdm/v1/user_auth_data_relations/unbind,1,"[""isv"", ""custom""]",[],1688988418,true,1,https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/unbind
7359131293821452290,根据主数据编码批量查询国家/地区,mdm,mdm,v3,batch_country_region,get,通过mdmcode批量查询国家/地区信息。资源介绍请参考[概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/mdm-v3/country_region/resource-definition)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/mdm-v3/batch_country_region/get,GET:/open-apis/mdm/v3/batch_country_region,1712560155203,"[""isv"", ""custom""]",[],1747972348,true,1,https://open.feishu.cn/document/mdm-v1/mdm-v3/country_region/get
7359131293821468674,分页批量查询国家/地区,mdm,mdm,v3,country_region,list,分页批量查询国家/地区。资源介绍请参考[概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/mdm-v3/country_region/resource-definition)。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/mdm-v3/country_region/list,GET:/open-apis/mdm/v3/country_regions,1712543960634,"[""isv"", ""custom""]",[],1747972359,true,1,https://open.feishu.cn/document/mdm-v1/mdm-v3/country_region/list
6907569523177635841,查询建筑物详情,meeting_room,vc_meeting,old,default,building/batch_get,该接口用于获取指定建筑物的详细信息。,none,true,/document/ukTMukTMukTM/ukzNyUjL5cjM14SO3ITN,GET:/open-apis/meeting_room/building/batch_get,1608293272852,"[""isv"", ""custom""]",[],1658308198,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/query-building-details
6907569745299374082,查询建筑物ID,meeting_room,vc_meeting,old,default,building/batch_get_id,该接口用于根据租户自定义建筑 ID 查询建筑 ID。,none,true,/document/ukTMukTMukTM/uQzMxYjL0MTM24CNzEjN,GET:/open-apis/meeting_room/building/batch_get_id,1608293272844,"[""isv"", ""custom""]",[],1658308249,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-building-id
6907569524099760129,创建建筑物,meeting_room,vc_meeting,old,default,building/create,该接口对应管理后台的添加建筑,添加楼层的功能,可用于创建建筑物和建筑物的楼层信息。,none,true,/document/ukTMukTMukTM/uATNwYjLwUDM24CM1AjN,POST:/open-apis/meeting_room/building/create,1608293272847,"[""custom""]",[],1658308224,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/create-building
6907569742384005122,删除建筑物,meeting_room,vc_meeting,old,default,building/delete,该接口用于删除建筑物(办公大楼)。,none,true,/document/ukTMukTMukTM/uMzMxYjLzMTM24yMzEjN,POST:/open-apis/meeting_room/building/delete,1608293272845,"[""custom""]",[],1658308241,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/delete-building
6907569523176636417,获取建筑物列表,meeting_room,vc_meeting,old,default,building/list,该接口用于获取本企业下的建筑物(办公大楼)。,none,true,/document/ukTMukTMukTM/ugzNyUjL4cjM14CO3ITN,GET:/open-apis/meeting_room/building/list,1608293272853,"[""isv"", ""custom""]",[],1658308189,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-building-list
6907569744330932225,更新建筑物,meeting_room,vc_meeting,old,default,building/update,该接口用于编辑建筑信息,添加楼层,删除楼层,编辑楼层信息。,none,true,/document/ukTMukTMukTM/uETNwYjLxUDM24SM1AjN,POST:/open-apis/meeting_room/building/update,1608293272846,"[""custom""]",[],1658308233,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/update-building
6907569524100808705,获取国家地区列表,meeting_room,vc_meeting,old,default,country/list,新建建筑时需要标明所处国家/地区,该接口用于获得系统预先提供的可供选择的国家 /地区列表。,none,true,/document/ukTMukTMukTM/uQTNwYjL0UDM24CN1AjN,GET:/open-apis/meeting_room/country/list,1608293272839,"[""isv"", ""custom""]",[],1658308293,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-country/region-list
6907569523176947713,获取城市列表,meeting_room,vc_meeting,old,default,district/list,新建建筑时需要选择所处国家/地区,该接口用于获得系统预先提供的可供选择的城市列表。,none,true,/document/ukTMukTMukTM/uUTNwYjL1UDM24SN1AjN,GET:/open-apis/meeting_room/district/list,1608293272838,"[""isv"", ""custom""]",[],1658308301,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-city-list
6907569524100956161,查询会议室忙闲,meeting_room,vc_meeting,old,default,freebusy/batch_get,调用该接口获取指定会议室的忙碌、空闲日程信息。,none,true,/document/ukTMukTMukTM/uIDOyUjLygjM14iM4ITN,GET:/open-apis/meeting_room/freebusy/batch_get,1669206394542,"[""isv"", ""custom""]",[],1748414883,false,1,https://open.feishu.cn/document/server-docs/calendar-v4/meeting-room-event/query-room-availability
6907569745299226626,回复会议室日程实例,meeting_room,vc_meeting,old,default,instance/reply,调用该接口用于回复会议室日程实例,支持回复未签到释放、提前结束释放、被管理员置为接受、被管理员置为拒绝。,none,true,/document/ukTMukTMukTM/uYzN4UjL2cDO14iN3gTN,POST:/open-apis/meeting_room/instance/reply,1669206342426,"[""isv"", ""custom""]",[],1714445591,false,1,https://open.feishu.cn/document/server-docs/calendar-v4/meeting-room-event/reply-meeting-room-event-instance
6907569523177766913,查询会议室详情,meeting_room,vc_meeting,old,default,room/batch_get,该接口用于获取指定会议室的详细信息。,none,true,/document/ukTMukTMukTM/uEDOyUjLxgjM14SM4ITN,GET:/open-apis/meeting_room/room/batch_get,1608293272850,"[""isv"", ""custom""]",[],1658308216,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/query-meeting-room-details
6907569745299767298,查询会议室ID,meeting_room,vc_meeting,old,default,room/batch_get_id,该接口用于根据租户自定义会议室ID查询会议室ID。,none,true,/document/ukTMukTMukTM/uYzMxYjL2MTM24iNzEjN,GET:/open-apis/meeting_room/room/batch_get_id,1608293272840,"[""isv"", ""custom""]",[],1658308284,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-meeting-room-id
6907569523177799681,创建会议室,meeting_room,vc_meeting,old,default,room/create,该接口用于创建会议室。,none,true,/document/ukTMukTMukTM/uITNwYjLyUDM24iM1AjN,POST:/open-apis/meeting_room/room/create,1608293272843,"[""custom""]",[],1658308258,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/create-meeting-room
6907569523177750529,删除会议室,meeting_room,vc_meeting,old,default,room/delete,该接口用于删除会议室。,none,true,/document/ukTMukTMukTM/uUzMxYjL1MTM24SNzEjN,POST:/open-apis/meeting_room/room/delete,1608293272841,"[""custom""]",[],1658308275,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/delete-meeting-room
6907569742384889858,获取会议室列表,meeting_room,vc_meeting,old,default,room/list,该接口用于获取指定建筑下的会议室。,none,true,/document/ukTMukTMukTM/uADOyUjLwgjM14CM4ITN,GET:/open-apis/meeting_room/room/list,1608293272851,"[""isv"", ""custom""]",[],1658308207,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/obtain-meeting-room-list
6907569524100694017,更新会议室,meeting_room,vc_meeting,old,default,room/update,该接口用于更新会议室。,none,true,/document/ukTMukTMukTM/uMTNwYjLzUDM24yM1AjN,POST:/open-apis/meeting_room/room/update,1608293272842,"[""custom""]",[],1658308267,false,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/api-reference/update-meeting-room
6922096654371831836,查询会议室日程主题和会议详情,meeting_room,vc_meeting,old,default,summary/batch_get,调用该接口使用日程的 Uid 和 Original time 查询会议室日程主题与详情。,none,true,/document/ukTMukTMukTM/uIjM5UjLyITO14iMykTN/,POST:/open-apis/meeting_room/summary/batch_get,1669206438105,"[""custom""]",[],1712716406,false,1,https://open.feishu.cn/document/server-docs/calendar-v4/meeting-room-event/
7181729161035628545,获取妙记信息,minutes,minutes,v1,minute,get,通过这个接口,可以得到一篇妙记的基础概述信息,包含 `owner_id`、`create_time`、标题、封面、时长和 URL。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/minutes-v1/minute/get,GET:/open-apis/minutes/v1/minutes/:minute_token,1671771899290,"[""isv"", ""custom""]",[],1750217062,true,1,https://open.feishu.cn/document/server-docs/minutes-v1/minute/get
7289369210564345884,下载妙记音视频文件,minutes,minutes,v1,minute.media,get,获取妙记的音视频文件,basic,true,/document/uAjLw4CM/ukTMukTMukTM/minutes-v1/minute-media/get,GET:/open-apis/minutes/v1/minutes/:minute_token/media,1697443219641,"[""isv"", ""custom""]",[],1750217053,true,1,https://open.feishu.cn/document/minutes-v1/minute-media/get
7181729161035612161,获取妙记统计数据,minutes,minutes,v1,minute.statistics,get,通过这个接口,可以获得妙记的访问情况统计,包含PV、UV、访问过的 user id、访问过的 user timestamp。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/minutes-v1/minute-statistics/get,GET:/open-apis/minutes/v1/minutes/:minute_token/statistics,1671767940731,"[""isv"", ""custom""]",[],1750217062,true,1,https://open.feishu.cn/document/server-docs/minutes-v1/minute-statistics/get
7289369210564329500,导出妙记文字记录,minutes,minutes,v1,minute.transcript,get,获取妙记的对话文本,basic,true,/document/uAjLw4CM/ukTMukTMukTM/minutes-v1/minute-transcript/get,GET:/open-apis/minutes/v1/minutes/:minute_token/transcript,1697443255304,"[""isv"", ""custom""]",[],1750217062,true,1,https://open.feishu.cn/document/minutes-v1/minute-transcript/get
7270433540692639747,查询帖子信息,moments,moments,v1,post,get,通过 ID 查询帖子实体数据信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/moments-v1/post/get,GET:/open-apis/moments/v1/posts/:post_id,1691033438138,"[""isv"", ""custom""]",[],1732608437,true,1,https://open.feishu.cn/document/moments-v1/post/get
7047048928294174722,上传进展记录图片,okr,okr,v1,image,upload,上传图片,以获取在进展记录富文本中使用的 token。成功调用该接口后,你可继续调用[创建 OKR 进展记录](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/create)或[更新 OKR 进展记录](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/update),将返回的 `url`参数和`file_token` 参数传入 `imageList` 参数中。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/image/upload,POST:/open-apis/okr/v1/images/upload,1,"[""custom""]",[],1753428958,true,1,https://open.feishu.cn/document/server-docs/okr-v1/progress_record/upload
6961663213280722945,批量获取 OKR,okr,okr,v1,okr,batch_get,根据 OKR id 批量获取 OKR。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/okr/batch_get,GET:/open-apis/okr/v1/okrs/batch_get,1620462399322,"[""isv"", ""custom""]",[],1704766578,true,1,https://open.feishu.cn/document/server-docs/okr-v1/okr/batch_get
7177567881395716124,创建 OKR 周期,okr,okr,v1,period,create,根据周期规则创建一个 OKR 周期。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/period/create,POST:/open-apis/okr/v1/periods,3,"[""custom""]",[],1704766577,true,1,https://open.feishu.cn/document/server-docs/okr-v1/period/create
6961663213280706561,获取 OKR 周期列表,okr,okr,v1,period,list,获取 OKR 周期列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/period/list,GET:/open-apis/okr/v1/periods,1,"[""isv"", ""custom""]",[],1688380954,true,1,https://open.feishu.cn/document/server-docs/okr-v1/period/list
7177567881395732508,修改 OKR 周期状态,okr,okr,v1,period,patch,修改某个 OKR 周期的状态为「正常」、「失效」或「隐藏」,对租户所有人生效,请谨慎操作,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/period/patch,PATCH:/open-apis/okr/v1/periods/:period_id,2,"[""custom""]",[],1704766577,true,1,https://open.feishu.cn/document/server-docs/okr-v1/period/patch
7177567881395699740,获取 OKR 周期规则,okr,okr,v1,period_rule,list,获取租户的周期规则列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/period_rule/list,GET:/open-apis/okr/v1/period_rules,1671099970158,"[""isv"", ""custom""]",[],1704766577,true,1,https://open.feishu.cn/document/server-docs/okr-v1/period_rule/list
7047048928294944770,创建 OKR 进展记录,okr,okr,v1,progress_record,create,创建 OKR 进展记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/create,POST:/open-apis/okr/v1/progress_records,5,"[""custom""]",[],1753428957,true,1,https://open.feishu.cn/document/server-docs/okr-v1/progress_record/create
7047056455665532929,删除 OKR 进展记录,okr,okr,v1,progress_record,delete,根据 ID 删除 OKR 进展记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/delete,DELETE:/open-apis/okr/v1/progress_records/:progress_id,4,"[""custom""]",[],1753428958,true,1,https://open.feishu.cn/document/server-docs/okr-v1/progress_record/delete
7047056455665926145,获取 OKR 进展记录,okr,okr,v1,progress_record,get,根据 ID 获取 OKR 进展记录详情,接口返回进展记录的内容、更新时间以及进展百分比和状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/get,GET:/open-apis/okr/v1/progress_records/:progress_id,2,"[""isv"", ""custom""]",[],1753428958,true,1,https://open.feishu.cn/document/server-docs/okr-v1/progress_record/get
7047052132604870684,更新 OKR 进展记录,okr,okr,v1,progress_record,update,根据 OKR 进展记录 ID 更新进展详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/progress_record/update,PUT:/open-apis/okr/v1/progress_records/:progress_id,3,"[""custom""]",[],1753428958,true,1,https://open.feishu.cn/document/server-docs/okr-v1/progress_record/update
7078206296554274820,查询复盘信息,okr,okr,v1,review,query,根据周期和用户查询复盘信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/review/query,GET:/open-apis/okr/v1/reviews/query,1647934388464,"[""isv"", ""custom""]",[],1712650627,true,1,https://open.feishu.cn/document/server-docs/okr-v1/review/query
6961663213280739329,获取用户的 OKR 列表,okr,okr,v1,user.okr,list,根据用户的 id 获取 OKR 列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/okr-v1/user-okr/list,GET:/open-apis/okr/v1/users/:user_id/okrs,1671691714441,"[""isv"", ""custom""]",[],1714017377,true,1,https://open.feishu.cn/document/server-docs/okr-v1/okr/list
7419242474898472963,退出登录,passport,passport,v1,session,logout,该接口用于退出用户的登录态,basic,true,/document/uAjLw4CM/ukTMukTMukTM/passport-v1/session/logout,POST:/open-apis/passport/v1/sessions/logout,1,"[""custom""]",[],1730259319,true,1,https://open.feishu.cn/document/authentication-management/login-state-management/logout
7096084771490578433,批量获取脱敏的用户登录信息,passport,passport,v1,session,query,该接口用于查询用户的登录信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/passport-v1/session/query,POST:/open-apis/passport/v1/sessions/query,2,"[""custom""]",[],1728613186,true,1,https://open.feishu.cn/document/server-docs/authentication-management/login-state-management/query
6907569742384037890,查询订单详情,pay,pay,old,default,v1/order/get,该接口用于查询某个订单的具体信息,none,true,/document/ukTMukTMukTM/uITNwUjLyUDM14iM1ATN,GET:/open-apis/pay/v1/order/get,1608293272852,[],[],1760946510,false,1,https://open.feishu.cn/document/server-docs/application-v6/appstore-paid-info/query-order-information
6907569742384988162,查询租户购买的付费方案,pay,pay,old,default,v1/order/list,该接口用于分页查询应用租户下的已付费订单,每次购买对应一个唯一的订单,订单会记录购买的套餐的相关信息,业务方需要自行处理套餐的有效期和付费方案的升级。 > 备注:免费模式的应用不会产生订单,仅收费应用会产生订单 (含免费版)。,none,true,/document/ukTMukTMukTM/uETNwUjLxUDM14SM1ATN,GET:/open-apis/pay/v1/order/list,1608293272853,[],[],1652672694,false,1,https://open.feishu.cn/document/server-docs/application-v6/appstore-paid-info/query-an-app-tenant’s-paid-orders
6907569742384087042,查询用户是否在应用开通范围,pay,pay,old,default,v1/paid_scope/check_user,当付费套餐是按人数收费 或者 限制最大使用人数时,开放平台会引导企业管理员设置“付费功能开通范围”。 但是受开通范围限制,部分用户就无法使用对应的付费功能。 可以通过此接口,在付费功能点入口判断是否允许某个用户进入使用。,none,true,/document/ukTMukTMukTM/uATNwUjLwUDM14CM1ATN,GET:/open-apis/pay/v1/paid_scope/check_user,1608293272854,[],[],1683253601,false,1,https://open.feishu.cn/document/server-docs/application-v6/appstore-paid-info/query-a-user's-app-access
7387360801748402177,批量查询算薪项,payroll,payroll,v1,acct_item,list,批量查询算薪项,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/acct_item/list,GET:/open-apis/payroll/v1/acct_items,1720004149476,"[""isv"", ""custom""]",[],1734575043,true,1,https://open.feishu.cn/document/payroll-v1/acct_item/list
7387360801748418561,查询成本分摊报表明细,payroll,payroll,v1,cost_allocation_detail,list,根据报表方案、期间、和报表类型获取成本分摊明细数据。调用接口前,需打开「财务过账」开关,并且完成发布成本分摊报表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/cost_allocation_detail/list,GET:/open-apis/payroll/v1/cost_allocation_details,1720004298491,"[""isv"", ""custom""]",[],1765505824,true,1,https://open.feishu.cn/document/payroll-v1/cost_allocation_detail/list
7319164056023269404,批量查询成本分摊方案,payroll,payroll,v1,cost_allocation_plan,list,根据期间分页批量查询成本分摊方案,仅返回期间内生效的方案列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/cost_allocation_plan/list,GET:/open-apis/payroll/v1/cost_allocation_plans,1704167368575,"[""isv"", ""custom""]",[],1747796936,true,1,https://open.feishu.cn/document/payroll-v1/cost_allocation_plan/list
7319164056023253020,查询成本分摊报表汇总数据,payroll,payroll,v1,cost_allocation_report,list,根据算薪期间和成本分摊方案id获取成本分摊汇总数据。调用接口前,需在payroll 系统中打开「财务过账」开关,并且完成发布成本分摊报表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/cost_allocation_report/list,GET:/open-apis/payroll/v1/cost_allocation_reports,1704167551440,"[""isv"", ""custom""]",[],1765505834,true,1,https://open.feishu.cn/document/payroll-v1/cost_allocation_report/list
7411366924142493698,获取外部数据源配置信息,payroll,payroll,v1,datasource,list,批量查询飞书人事后台:设置->算薪数据设置->外部数据源设置 中的数据源设置列表,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/datasource/list,GET:/open-apis/payroll/v1/datasources,1725599945181,"[""isv"", ""custom""]",[],1747821620,true,1,https://open.feishu.cn/document/payroll-v1/datasource/list
7411366924142477314,批量查询外部算薪数据记录,payroll,payroll,v1,datasource_record,query,1. 支持通过payroll_period(必传)、employment_id(可选)这两个预置字段,批量查询指定数据源下的数据记录列表。 2. 数据源配置信息可从[获取外部数据源配置信息](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/payroll-v1/datasource/list)或者 「飞书人事后台-设置-算薪数据设置-外部数据源配置」页面 获取,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/datasource_record/query,POST:/open-apis/payroll/v1/datasource_records/query,1725600201200,"[""isv"", ""custom""]",[],1747821608,true,1,https://open.feishu.cn/document/payroll-v1/datasource_record/query
7411366924142460930,创建 / 更新外部算薪数据,payroll,payroll,v1,datasource_record,save,参照数据源配置字段格式,批量保存(创建或更新)数据记录。 1. 记录的唯一标志通过业务主键判断(employment_id + payroll_period) 2. 若不存在数据记录,则本次保存会插入1条记录。 3. 若已存在数据记录,则本次保存会覆盖更新已有记录(只更新传入字段的值,未传入字段值不更新),如果传入的数据记录没有任何变化,则不更新。 4. 若更新或者插入成功,会返回产生数据变更的记录条数。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/datasource_record/save,POST:/open-apis/payroll/v1/datasource_records/save,1725600235067,"[""isv"", ""custom""]",[],1747821596,true,1,https://open.feishu.cn/document/payroll-v1/datasource_record/save
7405412186246627329,获取薪资组基本信息,payroll,payroll,v1,paygroup,list,- 薪资组是按薪酬管理的纬度创建的组,组内的员工由相同的HR处理薪酬相关工作,通过薪资组可实现对薪资组人员的管理和在薪酬计算发放等环节的人员权限范围控制 - 本接口返回所有薪资组的基本信息,包括薪资组ID、薪资组名称、薪资组编码、薪资组状态等,不含薪资组下的员工信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/paygroup/list,GET:/open-apis/payroll/v1/paygroups,1724146909321,"[""isv"", ""custom""]",[],1732781087,true,1,https://open.feishu.cn/document/payroll-v1/paygroup/list
7441890276475142147,封存发薪活动,payroll,payroll,v1,payment_activity,archive,根据发薪活动ID对发薪活动进行封存。注意:仅当发薪活动状态为审批通过时,方可进行封存。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/payment_activity/archive,POST:/open-apis/payroll/v1/payment_activitys/archive,1732000416636,"[""isv"", ""custom""]",[],1741609560,true,1,https://open.feishu.cn/document/payroll-v1/payment_activity/archive
7411460155089518595,查询发薪活动列表,payroll,payroll,v1,payment_activity,list,根据「发薪日起止范围」、「发薪活动状态」和「分页参数」查询发薪活动列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/payment_activity/list,GET:/open-apis/payroll/v1/payment_activitys,1725610362274,"[""isv"", ""custom""]",[],1741609549,true,1,https://open.feishu.cn/document/payroll-v1/payment_activity/list
7411460155089502211,查询发薪活动明细列表,payroll,payroll,v1,payment_activity_detail,list,根据「发薪活动 ID 」和「分页参数」查询发薪活动明细列表和关联的算薪明细分段数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/payment_activity_detail/list,GET:/open-apis/payroll/v1/payment_activity_details,1741586433534,"[""isv"", ""custom""]",[],1741609527,true,1,https://open.feishu.cn/document/payroll-v1/payment_detail/list
7431973248228638722,批量查询发薪明细,payroll,payroll,v1,payment_detail,query,根据 __发薪活动 ID 列表__ 、__发薪日起止时间__ 和 __飞书人事雇佣 ID 列表__ 分页查询发薪明细列表和关联的算薪明细分段数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/payroll-v1/payment_detail/query,POST:/open-apis/payroll/v1/payment_detail/query,1730185854711,"[""isv"", ""custom""]",[],1741609538,true,1,https://open.feishu.cn/document/payroll-v1/payment_detail/query
7000193886257725441,获取绩效结果,performance,performance,v1,review_data,query,获取被评估人在指定周期、指定项目中各个环节的评估结果信息,包含绩效所在的周期、项目、评估项、评估模版以及各环节评估数据等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v1/review_data/query,POST:/open-apis/performance/v1/review_datas/query,5,"[""isv"", ""custom""]",[],1741090280,false,1,https://open.feishu.cn/document/server-docs/performance-v1/query
7275544940596789251,获取周期列表,performance,performance,v1,semester,list,批量获取周期的基本信息,如周期的名称、类型等信息。支持根据时间段、周期年份、周期类型等过滤条件进行筛选。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v1/semester/list,GET:/open-apis/performance/v1/semesters,3,"[""isv"", ""custom""]",[],1727332864,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/semester/list
7275704938197237762,获取周期任务(全部用户),performance,performance,v1,stage_task,find_by_page,批量获取周期下所有用户的任务信息。支持传入任务分类、任务截止时间参数删选周期内任务数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v1/stage_task/find_by_page,POST:/open-apis/performance/v1/stage_tasks/find_by_page,2,"[""isv"", ""custom""]",[],1722592435,false,1,https://open.feishu.cn/document/performance-v1/stage_task/find_by_page
7275704938197221378,获取周期任务(指定用户),performance,performance,v1,stage_task,find_by_user_list,根据用户 ID 批量获取指定周期的任务信息。支持传入任务分类、任务截止时间参数删选周期内任务数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v1/stage_task/find_by_user_list,POST:/open-apis/performance/v1/stage_tasks/find_by_user_list,3,"[""isv"", ""custom""]",[],1722592412,false,1,https://open.feishu.cn/document/performance-v1/stage_task/find_by_user_list
7351374599659765764,获取项目列表,performance,performance,v2,activity,query,批量获取项目的配置信息,如项目名称、项目模式等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/activity/query,POST:/open-apis/performance/v2/activity/query,1711624749921,"[""isv"", ""custom""]",[],1729567628,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/activity/query
7371009404255633412,批量导入补充信息,performance,performance,v2,additional_information,import,批量导入被评估人的补充信息作为绩效评估的参考,如补充信息的事项、时间以及具体描述等。该接口支持创建和更新补充信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/additional_information/import,POST:/open-apis/performance/v2/additional_informations/import,2,"[""isv"", ""custom""]",[],1751526502,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/additional_information/import
7371009404255617028,批量查询补充信息,performance,performance,v2,additional_information,query,批量查询被评估人的补充信息,如补充信息的事项、时间以及具体描述等。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/additional_information/query,POST:/open-apis/performance/v2/additional_informations/query,3,"[""isv"", ""custom""]",[],1724835667,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/additional_information/query
7371009404255600644,批量删除补充信息,performance,performance,v2,additional_informations.batch,delete,批量删除被评估人的补充信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/additional_informations-batch/delete,DELETE:/open-apis/performance/v2/additional_informations/batch,1,"[""isv"", ""custom""]",[],1729567670,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/additional_information/delete
7351374599659798532,获取评估项列表,performance,performance,v2,indicator,query,批量获取评估项信息,如评估项名称、评估项类型、评估项等级配置等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/indicator/query,POST:/open-apis/performance/v2/indicators/query,2,"[""isv"", ""custom""]",[],1722592320,false,1,https://open.feishu.cn/document/performance-v1/review_config/review_template/query-3
7380276358332694529,录入被评估人关键指标数据,performance,performance,v2,metric_detail,import,批量录入指定周期中被评估人的关键指标数据。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_detail/import,POST:/open-apis/performance/v2/metric_details/import,1718336730626,"[""isv"", ""custom""]",[],1750859223,false,1,https://open.feishu.cn/document/performance-v1/metric_detail/import
7380276358332743681,获取被评估人关键指标结果,performance,performance,v2,metric_detail,query,批量获取指定周期中被评估人的关键指标结果。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_detail/query,POST:/open-apis/performance/v2/metric_details/query,1718336767536,"[""isv"", ""custom""]",[],1751255911,false,1,https://open.feishu.cn/document/performance-v1/metric_detail/query
7380276358332727297,获取指标字段列表,performance,performance,v2,metric_field,query,批量获取指标的字段基础信息,如指标字段名称、指标字段类型等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_field/query,POST:/open-apis/performance/v2/metric_fields/query,2,"[""isv"", ""custom""]",[],1732870069,false,1,https://open.feishu.cn/document/performance-v1/review_config/metric_template/query-2
7380276358332661761,获取指标列表,performance,performance,v2,metric_lib,query,获取指标库中的指标信息,如指标名称、指标类型、指标标签和指标字段等信息。可通过指标启用状态、指标类型、指标可用范围等筛选条件获取指定范围的指标信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_lib/query,POST:/open-apis/performance/v2/metric_libs/query,4,"[""isv"", ""custom""]",[],1751255886,false,1,https://open.feishu.cn/document/performance-v1/review_config/metric_template/query-3
7397354450872991745,获取指标标签列表,performance,performance,v2,metric_tag,list,批量获取指标的标签信息,如标签名称、创建时间等信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_tag/list,GET:/open-apis/performance/v2/metric_tags,1,"[""isv"", ""custom""]",[],1724395974,false,1,https://open.feishu.cn/document/performance-v1/review_config/metric_template/list
7380276358332710913,获取指标模板列表,performance,performance,v2,metric_template,query,批量获取指标模板的信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/metric_template/query,POST:/open-apis/performance/v2/metric_templates/query,3,"[""isv"", ""custom""]",[],1751255899,false,1,https://open.feishu.cn/document/performance-v1/review_config/metric_template/query
7351374599659814916,获取标签填写题配置,performance,performance,v2,question,query,获取标签填写题配置信息,包括标签填写题名称、标签列表等,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/question/query,POST:/open-apis/performance/v2/questions/query,1,"[""isv"", ""custom""]",[],1720620515,false,1,https://open.feishu.cn/document/performance-v1/review_config/review_template/query-2
7351374599659847684,获取绩效详情数据,performance,performance,v2,review_data,query,获取被评估人各环节的绩效评估详情(不包含校准环节),如环节评估数据、环节提交状态等,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/review_data/query,POST:/open-apis/performance/v2/review_datas/query,4,"[""isv"", ""custom""]",[],1758627919,false,1,https://open.feishu.cn/document/performance-v1/review_data/query-2
7351374599659782148,获取绩效模板配置,performance,performance,v2,review_template,query,获取绩效模板信息,包括模版名称、执行角色、填写项类型等,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/review_template/query,POST:/open-apis/performance/v2/review_templates/query,3,"[""isv"", ""custom""]",[],1765192283,false,1,https://open.feishu.cn/document/performance-v1/review_config/review_template/query
7380276358332678145,获取被评估人信息,performance,performance,v2,reviewee,query,获取绩效周期中被圈定到项目中的被评估人信息,包括未启动的项目。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/reviewee/query,POST:/open-apis/performance/v2/reviewees/query,2,"[""isv"", ""custom""]",[],1727332890,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/reviewee/query
7381506957100875778,更新人员组成员,performance,performance,v2,user_group_user_rel,write,更新指定人员组成员。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/user_group_user_rel/write,POST:/open-apis/performance/v2/user_group_user_rels/write,1718679627480,"[""isv"", ""custom""]",[],1728559346,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/user_group_user_rel/write
7477768482569650178,获取绩效周期的人员信息,performance,performance,v2,user_info,query,获取指定绩效周期下,被评估人在评估时的部门、序列、职级等人员信息。,none,true,/document/uAjLw4CM/ukTMukTMukTM/performance-v2/user_info/query,POST:/open-apis/performance/v2/user_info/query,1,"[""isv"", ""custom""]",[],1768271834,false,1,https://open.feishu.cn/document/performance-v1/review_config/semester_activity/reviewee/query-2
7161608966368788483,批量关闭系统状态,personal_settings,personal_settings,v1,system_status,batch_close,批量关闭用户系统状态可用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/batch_close,POST:/open-apis/personal_settings/v1/system_statuses/:system_status_id/batch_close,1666680822621,"[""custom""]",[],1689134249,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/batch_close
7161608966368772099,批量开启系统状态,personal_settings,personal_settings,v1,system_status,batch_open,批量开启用户系统状态可用。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/batch_open,POST:/open-apis/personal_settings/v1/system_statuses/:system_status_id/batch_open,1666680954371,"[""custom""]",[],1689134249,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/batch_open
7161608966368821251,创建系统状态,personal_settings,personal_settings,v1,system_status,create,创建租户维度的系统状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/create,POST:/open-apis/personal_settings/v1/system_statuses,1666682270356,"[""custom""]",[],1689134248,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/create
7161608966368837635,删除系统状态,personal_settings,personal_settings,v1,system_status,delete,删除租户维度的系统状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/delete,DELETE:/open-apis/personal_settings/v1/system_statuses/:system_status_id,1666682208674,"[""custom""]",[],1689134249,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/delete
7161608966368755715,获取系统状态,personal_settings,personal_settings,v1,system_status,list,获取租户下所有系统状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/list,GET:/open-apis/personal_settings/v1/system_statuses,1666682141444,"[""custom""]",[],1689134249,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/list
7161608966368739331,修改系统状态,personal_settings,personal_settings,v1,system_status,patch,修改租户维度系统状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/personal_settings-v1/system_status/patch,PATCH:/open-apis/personal_settings/v1/system_statuses/:system_status_id,1666682172802,"[""custom""]",[],1717663408,true,1,https://open.feishu.cn/document/server-docs/personal_settings-v1/system_status/patch
6969187588792385564,查询规则,report,report,v1,rule,query,查询规则。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/report/report-v1/rule/query,GET:/open-apis/report/v1/rules/query,1622426638232,"[""isv"", ""custom""]",[],1704195335,true,1,https://open.feishu.cn/document/server-docs/report-v1/rule/query
6993276991760056323,移除规则看板,report,report,v1,rule.view,remove,移除规则看板,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/report/report-v1/rule-view/remove,POST:/open-apis/report/v1/rules/:rule_id/views/remove,1628476651138,"[""custom""]",[],1704195335,true,1,https://open.feishu.cn/document/server-docs/report-v1/rule-view/remove
6969187588792369180,查询任务,report,report,v1,task,query,查询任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/report/report-v1/task/query,POST:/open-apis/report/v1/tasks/query,1622426591443,"[""isv"", ""custom""]",[],1727319723,true,1,https://open.feishu.cn/document/server-docs/report-v1/task/query
7208771563588075523,搜索应用,search,search,v2,app,create,用户可以通过关键字搜索到可见应用,应用可见性与套件内搜索一致。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/app/create,POST:/open-apis/search/v2/app,1,"[""isv"", ""custom""]",[],1701053675,true,1,https://open.feishu.cn/document/server-docs/search-v2/suite-search/create-2
6953505452630212611,创建数据源,search,search,v2,data_source,create,创建一个数据源。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source&method=create),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source/create,POST:/open-apis/search/v2/data_sources,5,"[""isv"", ""custom""]",[],1680147707,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source/create
6953505452630245379,删除数据源,search,search,v2,data_source,delete,删除一个已存在的数据源。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source&method=delete),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source/delete,DELETE:/open-apis/search/v2/data_sources/:data_source_id,4,"[""isv"", ""custom""]",[],1672744592,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source/delete
6953505452630196227,获取数据源,search,search,v2,data_source,get,获取已经创建的数据源。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source&method=get),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source/get,GET:/open-apis/search/v2/data_sources/:data_source_id,2,"[""isv"", ""custom""]",[],1677552937,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source/get
6953505452630261763,批量获取数据源,search,search,v2,data_source,list,批量获取创建的数据源信息。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source&method=list),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source/list,GET:/open-apis/search/v2/data_sources,1,"[""isv"", ""custom""]",[],1677552937,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source/list
6953505452630179843,修改数据源,search,search,v2,data_source,patch,更新一个已经存在的数据源。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source&method=patch),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source/patch,PATCH:/open-apis/search/v2/data_sources/:data_source_id,3,"[""isv"", ""custom""]",[],1680147707,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source/patch
6953505452630163459,为指定数据项创建索引,search,search,v2,data_source.item,create,索引一条数据记录。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source.item&method=create),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source-item/create,POST:/open-apis/search/v2/data_sources/:data_source_id/items,4,"[""isv"", ""custom""]",[],1680147707,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source-item/create
6953505452630278147,删除数据项,search,search,v2,data_source.item,delete,删除数据项。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=data_source.item&method=delete),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source-item/delete,DELETE:/open-apis/search/v2/data_sources/:data_source_id/items/:item_id,2,"[""isv"", ""custom""]",[],1672744603,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source-item/delete
6953505452630228995,查询指定数据项,search,search,v2,data_source.item,get,获取单个数据记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/data_source-item/get,GET:/open-apis/search/v2/data_sources/:data_source_id/items/:item_id,1,"[""isv"", ""custom""]",[],1725591032,true,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/data_source-item/get
7589313298248600535,搜索文档,search,search,v2,doc_wiki,search,该接口用于根据搜索关键词(query)对当前用户可见的云文档进行搜索,basic,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/doc_wiki/search,POST:/open-apis/search/v2/doc_wiki/search,1767617846047,"[""isv"", ""custom""]",[],1768294173,true,1,
7208771563588059139,搜索消息,search,search,v2,message,create,用户可以通过关键字搜索可见消息,可见性和套件内搜索一致。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/message/create,POST:/open-apis/search/v2/message,2,"[""isv"", ""custom""]",[],1701053675,true,1,https://open.feishu.cn/document/server-docs/search-v2/suite-search/create
7100866111462195228,创建数据范式,search,search,v2,schema,create,创建一个数据范式。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=schema&method=create),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/schema/create,POST:/open-apis/search/v2/schemas,4,"[""isv"", ""custom""]",[],1680147722,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/schema/create
7100866111462162460,删除数据范式,search,search,v2,schema,delete,删除已存在的数据范式。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=schema&method=delete),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/schema/delete,DELETE:/open-apis/search/v2/schemas/:schema_id,3,"[""isv"", ""custom""]",[],1672744603,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/schema/delete
7100866111462178844,获取数据范式,search,search,v2,schema,get,获取单个数据范式。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=schema&method=get),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/schema/get,GET:/open-apis/search/v2/schemas/:schema_id,1,"[""isv"", ""custom""]",[],1680147723,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/schema/get
7100866111462211612,修改数据范式,search,search,v2,schema,patch,修改数据范式。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=search&version=v2&resource=schema&method=patch),none,true,/document/uAjLw4CM/ukTMukTMukTM/search-v2/schema/patch,PATCH:/open-apis/search/v2/schemas/:schema_id,2,"[""isv"", ""custom""]",[],1680147723,false,1,https://open.feishu.cn/document/server-docs/search-v2/open-search/schema/patch
7283168587871223810,获取OpenAPI审计日志数据,security_and_compliance,security_and_compliance,v1,openapi_log,list_data,该接口用于获取OpenAPI审计日志数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v1/openapi_log/list_data,POST:/open-apis/security_and_compliance/v1/openapi_logs/list_data,1694592422118,"[""custom""]",[],1714121397,true,1,https://open.feishu.cn/document/security_and_compliance-v1/openapi_log/list_data
7430737008881582082,审批设备申报,security_and_compliance,security_and_compliance,v2,device_apply_record,update,使用该接口在设备管理中通过或驳回一条成员自主申报申请,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_apply_record/update,PUT:/open-apis/security_and_compliance/v2/device_apply_records/:device_apply_record_id,1729588192976,"[""isv"", ""custom""]",[],1761026685,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_apply_record/update
7430737008881614850,新增设备,security_and_compliance,security_and_compliance,v2,device_record,create,使用该接口在设备管理中新增一台设备。新增设备的类型为管理员导入,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/create,POST:/open-apis/security_and_compliance/v2/device_records,1729585034131,"[""isv"", ""custom""]",[],1761026626,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_record/create
7430737008881680386,删除设备,security_and_compliance,security_and_compliance,v2,device_record,delete,使用该接口在设备管理中删除一台设备,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/delete,DELETE:/open-apis/security_and_compliance/v2/device_records/:device_record_id,1729584473565,"[""isv"", ""custom""]",[],1761026673,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_record/delete
7430737008881647618,获取设备信息,security_and_compliance,security_and_compliance,v2,device_record,get,使用该接口在设备管理中获取设备的设备参数、设备归属、设备状态等信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/get,GET:/open-apis/security_and_compliance/v2/device_records/:device_record_id,1729585018442,"[""isv"", ""custom""]",[],1762917914,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_record/get
7430737008881631234,查询设备信息,security_and_compliance,security_and_compliance,v2,device_record,list,使用该接口可分页查询设备列表信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/list,GET:/open-apis/security_and_compliance/v2/device_records,1729585025292,"[""isv"", ""custom""]",[],1762917903,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_record/list
7563551656446263298,获取客户端设备认证信息,security_and_compliance,security_and_compliance,v2,device_record,mine,通过客户端授权信息获取对应设备认证信息,包含设备归属、可信状态等,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/mine,GET:/open-apis/security_and_compliance/v2/device_records/mine,1760964761812,"[""isv"", ""custom""]",[],1761028215,true,1,
7430737008881664002,更新设备,security_and_compliance,security_and_compliance,v2,device_record,update,使用该接口在设备管理中修改一台设备的设备归属、设备状态等信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/security_and_compliance-v2/device_record/update,PUT:/open-apis/security_and_compliance/v2/device_records/:device_record_id,1729584746837,"[""isv"", ""custom""]",[],1761026661,true,1,https://open.feishu.cn/document/security_and_compliance-v1/security_and_compliance-v2/device_record/update
7118952533649244163,批量删除执行者,task,task,v1,task,batch_delete_collaborator,该接口用于批量删除执行者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/batch_delete_collaborator,POST:/open-apis/task/v1/tasks/:task_id/batch_delete_collaborator,2,"[""isv"", ""custom""]",[],1713178781,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-collaborator/batch_delete_collaborator
7118952533649227779,批量删除关注人,task,task,v1,task,batch_delete_follower,该接口用于批量删除关注人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/batch_delete_follower,POST:/open-apis/task/v1/tasks/:task_id/batch_delete_follower,2,"[""isv"", ""custom""]",[],1689215607,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-follower/batch_delete_follower
6985127383322329090,完成任务,task,task,v1,task,complete,该接口用于将任务状态修改为“已完成”。 完成任务是指整个任务全部完成,而不支持执行者分别完成任务,执行成功后,任务对所有关联用户都变为完成状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/complete,POST:/open-apis/task/v1/tasks/:task_id/complete,5,"[""isv"", ""custom""]",[],1689215604,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/complete
6985127383322296322,创建任务,task,task,v1,task,create,该接口可以创建一个任务,支持填写任务的基本信息,包括任务的标题,描述及协作者等。 在此基础上,创建任务时可以设置截止时间和重复规则,将任务设置为定期执行的重复任务。通过添加协作者,则可以让其他用户协同完成该任务。 此外,接口也提供了一些支持自定义内容的字段,调用方可以实现定制化效果,如完成任务后跳转到指定结束界面。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/create,POST:/open-apis/task/v1/tasks,8,"[""isv"", ""custom""]",[],1713178779,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/create
6985127383322279938,删除任务,task,task,v1,task,delete,该接口用于删除任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/delete,DELETE:/open-apis/task/v1/tasks/:task_id,7,"[""isv"", ""custom""]",[],1689215604,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/delete
6985127383322263554,查询指定任务,task,task,v1,task,get,该接口用于获取任务详情,包括任务标题、描述、时间、来源等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/get,GET:/open-apis/task/v1/tasks/:task_id,3,"[""isv"", ""custom""]",[],1713178780,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/get
7044355281854070812,查询所有任务,task,task,v1,task,list,以分页的方式获取任务列表。当使用user_access_token时,获取与该用户身份相关的所有任务。当使用tenant_access_token时,获取以该应用身份通过“创建任务“接口创建的所有任务(并非获取该应用所在租户下所有用户创建的任务)。 本接口支持通过任务创建时间以及任务的完成状态对任务进行过滤。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/list,GET:/open-apis/task/v1/tasks,2,"[""isv"", ""custom""]",[],1713178780,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/list
6985127383322378242,更新任务,task,task,v1,task,patch,该接口用于修改任务的标题、描述、时间、来源等相关信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/patch,PATCH:/open-apis/task/v1/tasks/:task_id,6,"[""isv"", ""custom""]",[],1713178780,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/patch
6985127383322247170,取消完成任务,task,task,v1,task,uncomplete,该接口用于取消任务的已完成状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task/uncomplete,POST:/open-apis/task/v1/tasks/:task_id/uncomplete,4,"[""isv"", ""custom""]",[],1689215604,true,1,https://open.feishu.cn/document/server-docs/task-v1/task/uncomplete
6985127383322198018,新增执行者,task,task,v1,task.collaborator,create,该接口用于新增任务执行者,一次性可以添加多个执行者。 只有任务的创建者和执行者才能添加执行者,关注人无权限添加。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-collaborator/create,POST:/open-apis/task/v1/tasks/:task_id/collaborators,4,"[""isv"", ""custom""]",[],1713178780,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-collaborator/create
6985127383322361858,删除指定执行者,task,task,v1,task.collaborator,delete,该接口用于删除任务执行者。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-collaborator/delete,DELETE:/open-apis/task/v1/tasks/:task_id/collaborators/:collaborator_id,3,"[""isv"", ""custom""]",[],1689215607,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-collaborator/delete
6985127383322230786,获取执行者列表,task,task,v1,task.collaborator,list,该接口用于查询任务执行者列表,支持分页,最大值为50。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-collaborator/list,GET:/open-apis/task/v1/tasks/:task_id/collaborators,1,"[""isv"", ""custom""]",[],1713178781,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-collaborator/list
6999599891686293506,创建评论,task,task,v1,task.comment,create,该接口用于创建和回复任务的评论。当parent_id字段为0时,为创建评论;当parent_id不为0时,为回复某条评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/create,POST:/open-apis/task/v1/tasks/:task_id/comments,6,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-comment/create
6999599891686309890,删除评论,task,task,v1,task.comment,delete,该接口用于通过评论ID删除评论。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/delete,DELETE:/open-apis/task/v1/tasks/:task_id/comments/:comment_id,5,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-comment/delete
6999599891686244354,获取评论详情,task,task,v1,task.comment,get,该接口用于通过评论ID获取评论详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/get,GET:/open-apis/task/v1/tasks/:task_id/comments/:comment_id,3,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-comment/get
7104611925149581315,获取评论列表,task,task,v1,task.comment,list,该接口用于查询任务评论列表,支持分页,最大值为100。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/list,GET:/open-apis/task/v1/tasks/:task_id/comments,2,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-comment/list
6999599891686227970,更新评论,task,task,v1,task.comment,update,该接口用于更新评论内容。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/update,PUT:/open-apis/task/v1/tasks/:task_id/comments/:comment_id,4,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-comment/update
6985127383322181634,新增关注人,task,task,v1,task.follower,create,该接口用于新增任务关注人。可以一次性添加多位关注人。关注人ID要使用表示用户的ID。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-follower/create,POST:/open-apis/task/v1/tasks/:task_id/followers,4,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-follower/create
6985127383322345474,删除指定关注人,task,task,v1,task.follower,delete,该接口用于删除任务关注人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-follower/delete,DELETE:/open-apis/task/v1/tasks/:task_id/followers/:follower_id,3,"[""isv"", ""custom""]",[],1689215606,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-follower/delete
6985127383322165250,获取关注人列表,task,task,v1,task.follower,list,该接口用于查询任务关注人列表,支持分页,最大值为50。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=task&version=v1&resource=task.follower&method=list),none,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-follower/list,GET:/open-apis/task/v1/tasks/:task_id/followers,1,"[""isv"", ""custom""]",[],1671785901,false,1,https://open.feishu.cn/document/server-docs/task-v1/task-follower/list
6985127383322312706,新增提醒时间,task,task,v1,task.reminder,create,该接口用于创建任务的提醒时间。提醒时间在截止时间基础上做偏移,但是偏移后的结果不能早于当前时间。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-reminder/create,POST:/open-apis/task/v1/tasks/:task_id/reminders,3,"[""isv"", ""custom""]",[],1689215605,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-reminder/create
6985127383322214402,删除提醒时间,task,task,v1,task.reminder,delete,删除提醒时间,返回结果状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-reminder/delete,DELETE:/open-apis/task/v1/tasks/:task_id/reminders/:reminder_id,2,"[""isv"", ""custom""]",[],1689215605,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-reminder/delete
6985127383322394626,查询提醒时间列表,task,task,v1,task.reminder,list,返回提醒时间列表,支持分页,最大值为50。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-reminder/list,GET:/open-apis/task/v1/tasks/:task_id/reminders,1,"[""isv"", ""custom""]",[],1689215605,true,1,https://open.feishu.cn/document/server-docs/task-v1/task-reminder/list
7297183031634509827,删除附件,task,task,v2,attachment,delete,提供一个附件GUID,删除该附件。删除后该附件不可再恢复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/attachment/delete,DELETE:/open-apis/task/v2/attachments/:attachment_guid,1,"[""isv"", ""custom""]",[],1699248351,true,1,https://open.feishu.cn/document/task-v2/attachment/delete
7297183031634493443,获取附件,task,task,v2,attachment,get,提供一个附件GUID,返回附件的详细信息,包括GUID,名称,大小,上传时间,临时可下载链接等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/attachment/get,GET:/open-apis/task/v2/attachments/:attachment_guid,2,"[""isv"", ""custom""]",[],1699248329,true,1,https://open.feishu.cn/document/task-v2/attachment/get
7297183031634477059,列取附件,task,task,v2,attachment,list,列取一个资源的所有附件。返回的附件列表支持分页,按照附件上传时间排序。 每个附件会返回一个可供下载的临时url,有效期为3分钟,最多可以支持3次下载。如果超过使用限制,需要通过本接口获取新的临时url。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/attachment/list,GET:/open-apis/task/v2/attachments,3,"[""isv"", ""custom""]",[],1699248308,true,1,https://open.feishu.cn/document/task-v2/attachment/list
7297183031634460675,上传附件,task,task,v2,attachment,upload,"为特定资源上传附件。本接口可以支持一次上传多个附件,最多5个。每个附件尺寸不超过50MB,格式不限。 上传请求体的格式为""form-data""。若希望上传多个附件,则提供多个""file""字段即可。返回的附件顺序将会与输入的file顺序保持一致。 目前资源类型仅支持""task"", `resource_id`需要填写任务的GUID。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/attachment/upload,POST:/open-apis/task/v2/attachments/upload,4,"[""isv"", ""custom""]",[],1699252091,true,1,https://open.feishu.cn/document/task-v2/attachment/upload
7255580838154616860,创建评论,task,task,v2,comment,create,为一个任务创建评论,或者回复该任务的某个评论。 若要创建一个回复评论,需要在创建时设置`reply_to_comment_id`字段。被回复的评论和新建的评论必须属于同一个任务。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/comment/create,POST:/open-apis/task/v2/comments,5,"[""isv"", ""custom""]",[],1691401975,true,1,https://open.feishu.cn/document/task-v2/comment/create
7255580838154731548,删除评论,task,task,v2,comment,delete,删除一条评论。 评论被删除后,将无法进行任何操作,也无法恢复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/comment/delete,DELETE:/open-apis/task/v2/comments/:comment_id,2,"[""isv"", ""custom""]",[],1689560292,true,1,https://open.feishu.cn/document/task-v2/comment/delete
7255580838154387484,获取评论详情,task,task,v2,comment,get,给定一个评论的ID,返回评论的详情,包括内容,创建人,创建时间和更新时间等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/comment/get,GET:/open-apis/task/v2/comments/:comment_id,4,"[""isv"", ""custom""]",[],1689560268,true,1,https://open.feishu.cn/document/task-v2/comment/get
7255580838154747932,获取评论列表,task,task,v2,comment,list,"给定一个资源,返回该资源的评论列表。 支持分页。评论可以按照创建时间的正序(asc, 从最老到最新),或者逆序(desc,从最老到最新),返回数据。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/comment/list,GET:/open-apis/task/v2/comments,1,"[""isv"", ""custom""]",[],1689560303,true,1,https://open.feishu.cn/document/task-v2/comment/list
7255580838154420252,更新评论,task,task,v2,comment,patch,"更新一条评论。 更新时,将`update_fields`字段中填写所有要修改的评论的字段名,同时在`comment`字段中填写要修改的字段的新值即可。更新接口规范详情见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 关于资源的更新”章节。 目前只支持更新评论的""conent""字段。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/comment/patch,PATCH:/open-apis/task/v2/comments/:comment_id,3,"[""isv"", ""custom""]",[],1691401988,true,1,https://open.feishu.cn/document/task-v2/comment/patch
7270765454292189186,将自定义字段加入资源,task,task,v2,custom_field,add,将自定义字段加入一个资源。目前资源类型支持清单tasklist。一个自定义字段可以加入多个清单中。加入后,该清单可以展示任务的该字段的值,同时基于该字段实现筛选,分组等功能。 如果自定义字段的设置被更新,字段加入的所有资源都能收到这个更新,并进行相应的展示。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/add,POST:/open-apis/task/v2/custom_fields/:custom_field_guid/add,2,"[""isv"", ""custom""]",[],1751462787,true,1,https://open.feishu.cn/document/task-v2/custom_field/add
7270765454292320258,创建自定义字段,task,task,v2,custom_field,create,"创建一个自定义字段,并将其加入一个资源上(目前资源只支持清单)。创建自定义字段必须提供字段名称,类型和相应类型的设置。 目前任务自定义字段支持数字(number),成员(member),日期(datetime),单选(single_select),多选(multi_select), 文本(text)几种类型。分别使用""number_setting"", ""member_setting"", ""datetime_setting"", ""single_select_setting"", ""multi_select_setting"",""text_setting""来设置。 例如创建一个数字类型的自定义字段,并添加到guid为""ec5ed63d-a4a9-44de-a935-7ba243471c0a""的清单,可以这样发请求。 ``` POST /task/v2/custom_fields { ""name"": ""价格"", ""type"": ""number"", ""resource_type"": ""tasklist"", ""resource_id"": ""ec5ed63d-a4a9-44de-a935-7ba243471c0a"", ""number_setting"": { ""format"": ""cny"", ""decimal_count"": 2, ""separator"": ""thousand"" } } ``` 表示创建一个叫做“价格”的自定义字段,保留两位小数。在界面上显示时采用人民币的格式,并显示千分位分割符。 类似的,创建一个单选字段,可以这样调用接口: ``` POST /task/v2/custom_fields { ""name"": ""优先级"", ""type"": ""single_select"", ""resource_type"": ""tasklist"", ""resource_id"": ""ec5ed63d-a4a9-44de-a935-7ba243471c0a"", ""single_select_setting"": { ""options"": [ { ""name"": ""高"", ""color_index"": 1 }, { ""name"": ""中"", ""color_index"": 11 }, { ""name"": ""低"", ""color_index"": 16 } ] } } ``` 表示创建一个叫“优先级”的单选,包含“高”,“中”,“低”三个选项,每个选项设置一个颜色值。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/create,POST:/open-apis/task/v2/custom_fields,6,"[""isv"", ""custom""]",[],1713838195,true,1,https://open.feishu.cn/document/task-v2/custom_field/create
7270765454292238338,获取自定义字段,task,task,v2,custom_field,get,根据一个自定义字段的GUID,获取其详细的设置信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/get,GET:/open-apis/task/v2/custom_fields/:custom_field_guid,5,"[""isv"", ""custom""]",[],1713838207,true,1,https://open.feishu.cn/document/task-v2/custom_field/get
7270765454292271106,列取自定义字段,task,task,v2,custom_field,list,"列取用户可访问的自定义字段列表。如果不提供`resource_type`和`resource_id`参数,则返回用户可访问的所有自定义字段。 如果提供`resource_type`和`resource_id`,则返回该资源下的自定义字段。目前`resource_type`仅支持""tasklist"",此时`resource_id`应为一个清单的tasklist_guid。 该接口支持分页。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/list,GET:/open-apis/task/v2/custom_fields,3,"[""isv"", ""custom""]",[],1697081036,true,1,https://open.feishu.cn/document/task-v2/custom_field/list
7270765454292254722,更新自定义字段,task,task,v2,custom_field,patch,"更新一个自定义字段的名称和设定。更新时,将`update_fields`字段中填写所有要修改的任务字段名,同时在`custom_field`字段中填写要修改的字段的新值即可。自定义字段不允许修改类型,只能根据类型修改其设置。 `update_fields`支持更新的字段包括: * `name`:自定义字段名称 * `number_setting` :数字类型设置(当且仅当要更新的自定义字段类型是数字时) * `member_setting` :人员类型设置(当且仅当要更新的自定义字段类型是人员时) * `datetime_setting` :日期类型设置 (当且仅当要更新的自定义字段类型是日期时) * `single_select_setting`:单选类型设置 (当且仅当要更新的自定义字段类型是单选时) * `multi_select_setting`:多选类型设置 (当且仅当要更新的自定义字段类型是多选时) * `text_setting`: 文本类型设置(目前文本类型没有可设置项) 当更改某个设置时,如果不填写一个字段,表示不覆盖原有的设定。比如,对于一个数字,原有的setting是: ```json ""number_setting"": { ""format"": ""normal"", ""decimal_count"": 2, ""separator"": ""none"", ""custom_symbol"": ""L"", ""custom_symbol_position"": ""right"" } ``` 使用如下参数调用接口: ``` PATCH /task/v2/custom_fields/:custom_field_guid { ""custom_field"": { ""number_setting"": { ""decimal_count"": 4 } }, ""update_fields"": [""number_setting""] } ``` 表示仅仅将小数位数从2改为4,其余的设置`format`, `separator`, `custom_field`等都不变。 对于单选/多选类型的自定义字段,其设定是一个选项列表。更新时,使用方式接近使用App的界面。使用者不必传入字段的所有选项,而是只需要提供最终希望界面可见(is_hidden=false) 的选项。原有字段中的选项如果没有出现在输入中,则被置为`is_hidden=true`并放到所有可见选项之后。 对于某一个更新的选项,如果提供了option_guid,将视作更新该选项(此时option_guid必须存在于当前字段,否则会返回错误);如果不提供,将视作新建一个选项(新的选项的option_guid会在reponse中被返回)。 例如,一个单选字段原来有3个选项A,B,C,D。其中C是隐藏的。用户可以这样更新选项: ``` PATCH /task/v2/custom_fields/:custom_field_guid { ""custom_field"": { ""single_select_setting"": { ""optoins"": [ { ""name"": ""E"", ""color_index"": 25 }, { ""guid"": ""<option_guid of A>"" ""name"": ""A2"" }, { ""guid"": ""<option_guid of C>"", }, ] } }, ""update_fields"": [""single_select_setting""] } ``` 调用后最终得到了新的选项列表E, A, C, B, D。其中: * 选项E被新建出来,其`color_index`被设为了25。 * 选项A被更新,其名称被改为了""A2""。但其color_index因为没有设置而保持不变; * 选项整体顺序遵循用户的输入顺序,即E,A,C。同时E,A,C作为直接的输入,其is_hidden均被设为了false,其中,C原本是is_hidden=true,也会被设置为is_hidden=false。 * 选项B和D因为用户没有输入,其`is_hidden`被置为了true,并且被放到了所有用户输入的选项之后。 如果只是单纯的希望修改用户可见的选项的顺序,比如从原本的选项A,B,C修改为C,B,A,可以这样调用接口: ``` PATCH /task/v2/custom_fields/:custom_field_guid { ""custom_field"": { ""single_select_setting"": { ""optoins"": [ { ""guid"": ""<option_guid_of_C>"" }, { ""guid"": ""<option_guid of B>"" }, { ""guid"": ""<option_guid of A>"", }, ] } }, ""update_fields"": [""single_select_setting""] } ``` 如果希望直接将字段里的所有选项都标记为不可见,可以这样调用接口: ``` PATCH /task/v2/custom_fields/:custom_field_guid { ""custom_field"": { ""single_select_setting"": { ""optoins"": [] } }, ""update_fields"": [""single_select_setting""] } ``` 更新单选/多选字段的选项必须满足“可见选项名字不能重复”的约束。否则会返回错误。开发者需要自行保证输入的选项名不可以重复。 如希望只更新单个选项,或者希望单独设置某个选项的is_hidden,本接口无法支持,但可以使用[更新自定义字段选项](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field-option/patch)接口实现。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/patch,PATCH:/open-apis/task/v2/custom_fields/:custom_field_guid,4,"[""isv"", ""custom""]",[],1697081024,true,1,https://open.feishu.cn/document/task-v2/custom_field/patch
7270765454292205570,将自定义字段移出资源,task,task,v2,custom_field,remove,"将自定义字段从资源中移出。移除后,该资源将无法再使用该字段。目前资源的类型支持""tasklist""。 如果要移除自定义字段本来就不存在于资源,本接口将正常返回。 注意自定义字段是通过清单来实现授权的,如果将自定义字段从所有关联的清单中移除,就意味着任何调用身份都无法再访问改自定义字段。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/remove,POST:/open-apis/task/v2/custom_fields/:custom_field_guid/remove,1,"[""isv"", ""custom""]",[],1699248395,true,1,https://open.feishu.cn/document/task-v2/custom_field/remove
7270765454292287490,创建自定义任务选项,task,task,v2,custom_field.option,create,为单选或多选字段添加一个自定义选项。一个单选/多选字段最大支持100个选项。 新添加的选项如果不隐藏,其名字不能和已存在的不隐藏选项的名字重复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field-option/create,POST:/open-apis/task/v2/custom_fields/:custom_field_guid/options,2,"[""isv"", ""custom""]",[],1694412798,true,1,https://open.feishu.cn/document/task-v2/custom_field-option/create
7270765454292221954,更新自定义字段选项,task,task,v2,custom_field.option,patch,根据一个自定义字段的GUID和其选项的GUID,更新该选项的数据。要更新的字段必须是单选或者多选类型,且要更新的字段必须归属于该字段。 更新时,将`update_fields`字段中填写所有要修改的任务字段名,同时在`option`字段中填写要修改的字段的新值即可。`update_fields`支持的字段包括: * `name`: 选项名称 * `color_index`: 选项的颜色索引值 * `is_hidden`: 是否从界面上隐藏 * `insert_before`: 将当前option放到同字段某个option之前的那个option_guid。 * `insert_after`: 将当前option放到同字段某个option之后的那个option_guid。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field-option/patch,PATCH:/open-apis/task/v2/custom_fields/:custom_field_guid/options/:option_guid,1,"[""isv"", ""custom""]",[],1694412819,true,1,https://open.feishu.cn/document/task-v2/custom_field-option/patch
7259330038033809436,创建自定义分组,task,task,v2,section,create,"为清单或我负责的任务列表创建一个自定义分组。创建时可以需要提供名称和可选的配置。如果不指定位置,新分组会放到指定resource的自定义分组列表的最后。 当在清单中创建自定义分组时,需要设置`resourse_type`为""tasklist"", `resource_id`设为清单的GUID。 当为我负责任务列表中创建自定义分组时,需要设置`resource_type`为""my_tasks"",不需要设置`resource_id`。调用身份只能为自己的我负责的任务列表创建自定义分组。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/create,POST:/open-apis/task/v2/sections,6,"[""isv"", ""custom""]",[],1691405478,true,1,https://open.feishu.cn/document/task-v2/section/create
7259330038033858588,删除自定义分组,task,task,v2,section,delete,删除一个自定义分组。删除后该自定义分组中的任务会被移动到被删除自定义分组所属资源的默认自定义分组中。 不能删除默认的自定义分组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/delete,DELETE:/open-apis/task/v2/sections/:section_guid,3,"[""isv"", ""custom""]",[],1691405513,true,1,https://open.feishu.cn/document/task-v2/section/delete
7259330038033825820,获取自定义分组详情,task,task,v2,section,get,获取一个自定义分组详情,包括名称,创建人等信息。如果该自定义分组归属于一个清单,还会返回清单的摘要信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/get,GET:/open-apis/task/v2/sections/:section_guid,5,"[""isv"", ""custom""]",[],1691461226,true,1,https://open.feishu.cn/document/task-v2/section/get
7259330038033874972,获取自定义分组列表,task,task,v2,section,list,获取一个资源下所有的自定义分组列表。支持分页。返回结果按照自定义分组在界面上的顺序排序。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/list,GET:/open-apis/task/v2/sections,2,"[""isv"", ""custom""]",[],1691405526,true,1,https://open.feishu.cn/document/task-v2/section/list
7259330038033842204,更新自定义分组,task,task,v2,section,patch,更新自定义分组,可以更新自定义分组的名称和位置。 更新时,将`update_fields`字段中填写所有要修改的字段名,同时在`section`字段中填写要修改的字段的新值即可。调用约定详情见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 关于资源的更新”章节。 目前支持更新的字段包括: * `name` - 自定义字段名字; * `insert_before` - 要让当前自定义分组放到某个自定义分组前面的secion_guid,用于改变当前自定义分组的位置; * `insert_after` - 要让当前自定义分组放到某个自定义分组后面的secion_guid,用于改变当前自定义分组的位置。 `insert_before`和`insert_after`如果填写,必须是同一个资源的合法section_guid。注意不能同时设置`insert_before`和`insert_after`。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/patch,PATCH:/open-apis/task/v2/sections/:section_guid,4,"[""isv"", ""custom""]",[],1751462775,true,1,https://open.feishu.cn/document/task-v2/section/patch
7259330038033891356,获取自定义分组任务列表,task,task,v2,section,tasks,列取一个自定义分组里的所有任务。支持分页。任务按照自定义排序的顺序返回。本接口支持简单的过滤。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/section/tasks,GET:/open-apis/task/v2/sections/:section_guid/tasks,1,"[""isv"", ""custom""]",[],1691405538,true,1,https://open.feishu.cn/document/task-v2/section/tasks
7277445986133458947,添加依赖,task,task,v2,task,add_dependencies,为一个任务添加一个或多个依赖。可以添加任务的前置依赖和后置依赖。存在依赖关系的任务如果在同一个清单,可以通过清单的甘特图来展示其依赖关系。 本接口也可以用于修改一个现有依赖的类型(前置改为后置或者后置改为前置)。 注意:添加的依赖的`task_guid`不能重复,也不能添加当前任务为自己的依赖。尝试添加一个已经存在的依赖会被自动忽略。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_dependencies,POST:/open-apis/task/v2/tasks/:task_guid/add_dependencies,3,"[""isv"", ""custom""]",[],1694419127,true,1,https://open.feishu.cn/document/task-v2/task/add_dependencies
7255580838154584092,添加任务成员,task,task,v2,task,add_members,"添加任务的负责人或者关注人。一次性可以添加多个成员。返回任务的实体中会返回最终任务成员的列表。 * 关于member的格式,详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何表示任务和清单的成员?”章节。 * 成员的角色支持""assignee""和""follower""。 * 成员类型支持""user""和""app""。 * 如果要添加的成员已经在任务中,则自动被忽略。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_members,POST:/open-apis/task/v2/tasks/:task_guid/add_members,11,"[""isv"", ""custom""]",[],1751462763,true,1,https://open.feishu.cn/document/task-v2/task/add_members
7255580838154813468,添加任务提醒,task,task,v2,task,add_reminders,为一个任务添加提醒。提醒是基于任务的截止时间计算得到的一个时刻。为了设置提醒,任务必须首先拥有截止时间(due)。可以在[创建任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/create)时设置截止时间,或者通过[更新任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/patch)设置一个截止时间。 目前一个任务只能设置1个提醒。但接口的形式可以在未来扩充为一个任务支持多个提醒。 如果当前任务已经有提醒了,要更新提醒的设置,需要先调用[移除任务提醒](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_reminders)接口移除原有提醒。再调用本接口添加提醒。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_reminders,POST:/open-apis/task/v2/tasks/:task_guid/add_reminders,5,"[""isv"", ""custom""]",[],1689824534,true,1,https://open.feishu.cn/document/task-v2/task/add_reminders
7255580838154502172,任务加入清单,task,task,v2,task,add_tasklist,将一个任务加入清单。返回任务的详细信息,包括任务所在的所有清单信息。 如果任务已经在该清单,接口将返回成功。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_tasklist,POST:/open-apis/task/v2/tasks/:task_guid/add_tasklist,7,"[""isv"", ""custom""]",[],1689824510,true,1,https://open.feishu.cn/document/task-v2/task/add_tasklist
7255580838154371100,创建任务,task,task,v2,task,create,该接口可以创建一个任务,在创建任务时,支持填写任务的基本信息(如标题、描述、负责人等),此外,还可以设置任务的开始时间、截止时间提醒等条件,此外,还可以通过传入 tasklists 字段将新任务加到多个清单中。 创建任务时,可以通过设置`members`字段来设置任务的负责人和关注人。关于member的格式,详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何表示任务和清单的成员? ”章节。 如果要设置任务的开始时间和截止时间,需要遵守任务时间的格式和约束。详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何使用开始时间和截止时间?”章节。 如要设置自定义字段值,可以设置`custom_fields`字段。但因为自定义字段归属于清单,因此要填写的自定义字段的guid必须归属于要添加的清单(通过`tasklists`设置)。详见[自定义字段概览](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/custom-field-overview)。 通过设置`client_token`实现幂等调用。详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 幂等调用 ”章节。 如要创建一个任务的子任务,需要使用[创建子任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task-subtask/create)接口。 创建任务时可以一并设置自定义字段值。但根据自定义字段的权限关系,任务只能添加`tasklists`字段设置的清单中关联的自定义字段的值。详见[自定义字段功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/custom-field-overview)中的介绍。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/create,POST:/open-apis/task/v2/tasks,15,"[""isv"", ""custom""]",[],1749018767,true,1,https://open.feishu.cn/document/task-v2/task/create
7255580838154649628,删除任务,task,task,v2,task,delete,删除一个任务。 删除后任务无法再被获取到。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/delete,DELETE:/open-apis/task/v2/tasks/:task_guid,12,"[""isv"", ""custom""]",[],1689824451,true,1,https://open.feishu.cn/document/task-v2/task/delete
7255580838154633244,获取任务详情,task,task,v2,task,get,该接口用于获取任务详情,包括任务标题、描述、时间、成员等信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/get,GET:/open-apis/task/v2/tasks/:task_guid,13,"[""isv"", ""custom""]",[],1743069625,true,1,https://open.feishu.cn/document/task-v2/task/get
7255580838154403868,列取任务列表,task,task,v2,task,list,基于调用身份,列出特定类型的所有任务。支持分页。 目前只支持列取任务界面上“我负责的”任务。返回的任务数据按照任务在”我负责的“界面中”自定义拖拽“的顺序排序。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/list,GET:/open-apis/task/v2/tasks,9,"[""isv"", ""custom""]",[],1724312288,true,1,https://open.feishu.cn/document/task-v2/task/list
7255580838154879004,更新任务,task,task,v2,task,patch,"该接口用于修改任务的标题、描述、截止时间等信息。 更新时,将`update_fields`字段中填写所有要修改的任务字段名,同时在`task`字段中填写要修改的字段的新值即可。如果`update_fields`中设置了要变更一个字段的名字,但是task里没设置新的值,则表示将该字段清空。调用约定详情见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 关于资源的更新”章节。 该接口可以用于完成任务和将任务恢复至未完成,只需要修改`completed_at`字段即可。但留意,目前不管任务本身是会签任务还是或签任务,oapi对任务进行完成只能实现“整体完成”,不支持个人单独完成。此外,不能对已经完成的任务再次完成,但可以将其恢复到未完成的状态(设置`completed_at`为""0"")。 如更新自定义字段的值,需要调用身份同时拥有任务的编辑权限和自定义字段的编辑权限。详情见[自定义字段功能概览](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/custom_field/custom-field-overview)。更新时,只有填写在`task.custom_fields`的自定义字段值会被更新,不填写的不会被改变。 任务成员/提醒/清单数据不能使用本接口进行更新。 * 如要修改任务成员,需要使用[添加任务成员](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_members) 和[移除任务成员](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_members)接口。 * 如要修改任务提醒,需要使用[添加任务提醒](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_reminders)和[移除任务提醒](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_reminders)接口。 * 如要变更任务所在的清单,需要使用[任务加入清单](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_tasklist)和[任务移出清单]( /ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_tasklist)接口。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/patch,PATCH:/open-apis/task/v2/tasks/:task_guid,14,"[""isv"", ""custom""]",[],1751425610,true,1,https://open.feishu.cn/document/task-v2/task/patch
7277445986133442563,移除依赖,task,task,v2,task,remove_dependencies,从一个任务移除一个或者多个依赖。移除时只需要输入要移除的`task_guid`即可。 注意,如果要移除的依赖非当前任务的依赖,会被自动忽略。接口会返回成功。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_dependencies,POST:/open-apis/task/v2/tasks/:task_guid/remove_dependencies,2,"[""isv"", ""custom""]",[],1694419149,true,1,https://open.feishu.cn/document/task-v2/task/remove_dependencies
7255580838154797084,移除任务成员,task,task,v2,task,remove_members,移除任务成员。一次性可以移除多个成员。可以移除任务的负责人或者关注人。移除时,如果要移除的成员不是任务成员,会被自动忽略。本接口返回移除成员后的任务数据,包含移除后的任务成员列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_members,POST:/open-apis/task/v2/tasks/:task_guid/remove_members,10,"[""isv"", ""custom""]",[],1691401913,true,1,https://open.feishu.cn/document/task-v2/task/remove_members
7255580838154829852,移除任务提醒,task,task,v2,task,remove_reminders,将一个提醒从任务中移除。 如果要移除的提醒本来就不存在,本接口将直接返回成功。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_reminders,POST:/open-apis/task/v2/tasks/:task_guid/remove_reminders,4,"[""isv"", ""custom""]",[],1689824545,true,1,https://open.feishu.cn/document/task-v2/task/remove_reminders
7255580838154780700,任务移出清单,task,task,v2,task,remove_tasklist,将任务从一个清单中移出。返回任务详情。 如果任务不在清单中,接口将返回成功。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_tasklist,POST:/open-apis/task/v2/tasks/:task_guid/remove_tasklist,6,"[""isv"", ""custom""]",[],1689824522,true,1,https://open.feishu.cn/document/task-v2/task/remove_tasklist
7255580838154453020,列取任务所在清单,task,task,v2,task,tasklists,列取一个任务所在的所有清单的信息,包括清单的GUID和所在自定义分组的GUID。 只有调用身份有权限访问的清单信息会被返回。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task/tasklists,GET:/open-apis/task/v2/tasks/:task_guid/tasklists,8,"[""isv"", ""custom""]",[],1689824499,true,1,https://open.feishu.cn/document/task-v2/task/tasklists
7255580838154551324,创建子任务,task,task,v2,task.subtask,create,给一个任务创建一个子任务。 接口功能除了额外需要输入父任务的GUID之外,和[创建任务](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/create)接口功能完全一致。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task-subtask/create,POST:/open-apis/task/v2/tasks/:task_guid/subtasks,2,"[""isv"", ""custom""]",[],1689824557,true,1,https://open.feishu.cn/document/task-v2/task-subtask/create
7255580838154518556,获取任务的子任务列表,task,task,v2,task.subtask,list,获取一个任务的子任务列表。 支持分页,数据按照子任务在界面上的顺序返回。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/task-subtask/list,GET:/open-apis/task/v2/tasks/:task_guid/subtasks,1,"[""isv"", ""custom""]",[],1689824569,true,1,https://open.feishu.cn/document/task-v2/task-subtask/list
7255580838154485788,添加清单成员,task,task,v2,tasklist,add_members,向一个清单添加1个或多个协作成员。成员信息通过设置`members`字段实现。关于member的格式,详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何表示任务和清单的成员?”章节。 一个清单协作成员可以是一个用户,应用或者群组。每个成员可以设置“可编辑”或者“可阅读”的角色。群组作为协作成员表示该群里所有群成员都自动拥有群组协作成员的角色。 如果要添加的成员已经是清单成员,且角色和请求中设置是一样的,则会被自动忽略,接口返回成功。 如果要添加的成员已经是清单成员,且角色和请求中设置是不一样的(比如原来的角色是可阅读,请求中设为可编辑),则相当于更新其角色。 如果要添加的成员已经是清单的所有者,则会被自动忽略。接口返回成功。其所有者的角色不会改变。 本接口不能用来设置清单所有者,如要设置,可以使用[更新清单](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/patch)接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/add_members,POST:/open-apis/task/v2/tasklists/:tasklist_guid/add_members,5,"[""isv"", ""custom""]",[],1699520884,true,1,https://open.feishu.cn/document/task-v2/tasklist/add_members
7255580838154469404,创建清单,task,task,v2,tasklist,create,创建一个清单。清单可以用于组织和管理属于同一个项目的多个任务。 创建时,必须填写清单的名字。同时,可以设置通过`members`字段设置清单的协作成员。关于member的格式,详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何表示任务和清单的成员?”章节。 创建清单后,创建人自动成为清单的所有者。如果请求同时将创建人设置为可编辑/可阅读角色,则最终该用户成为清单所有者,并自动从清单成员列表中消失。因为同一个用户在同一个清单只能拥有一个角色。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/create,POST:/open-apis/task/v2/tasklists,9,"[""isv"", ""custom""]",[],1699520797,true,1,https://open.feishu.cn/document/task-v2/tasklist/create
7255580838154567708,删除清单,task,task,v2,tasklist,delete,删除一个清单。 删除清单后,不可对该清单做任何操作,也无法再访问到清单。清单被删除后不可恢复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/delete,DELETE:/open-apis/task/v2/tasklists/:tasklist_guid,6,"[""isv"", ""custom""]",[],1699520862,true,1,https://open.feishu.cn/document/task-v2/tasklist/delete
7255580838154666012,获取清单详情,task,task,v2,tasklist,get,获取一个清单的详细信息,包括清单名,所有者,清单成员等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/get,GET:/open-apis/task/v2/tasklists/:tasklist_guid,8,"[""isv"", ""custom""]",[],1699520819,true,1,https://open.feishu.cn/document/task-v2/tasklist/get
7255580838154715164,获取清单列表,task,task,v2,tasklist,list,获取调用身份所有可读取的清单列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/list,GET:/open-apis/task/v2/tasklists,2,"[""isv"", ""custom""]",[],1699520950,true,1,https://open.feishu.cn/document/task-v2/tasklist/list
7255580838154682396,更新清单,task,task,v2,tasklist,patch,更新清单,可以更新清单的名字和所有者。 更新清单时,将`update_fields`字段中填写所有要修改的清单字段名,同时在`tasklist`字段中填写要修改的字段的新值即可。更新调用规范详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 关于资源的更新”章节。 支持更新的字段包括: * `name` - 清单名字 * `owner` - 清单所有者 更新清单所有者(owner)时,如果该成员已经是清单的“可编辑”或者“可阅读”角色,则该成员将直接升级为所有者角色,自动从清单的成员列表中消失。这是因为同一个用户在同一个清单中只能有一个角色。同时,支持使用`origin_owner_to_role`字段将原有所有者变为可编辑/可阅读角色或者直接退出清单。 该接口不能用于更新清单的成员和增删清单中的任务。 * 如要增删清单中的成员,可以使用[添加清单成员](/ssl:ttdoc:/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/add_members)和[移除清单成员](/ssl:ttdoc:/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/remove_members)接口。 * 如要增删清单中的任务,可以使用[任务加入清单](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/add_tasklist)和[任务移出清单]( /ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/task/remove_tasklist)接口。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/patch,PATCH:/open-apis/task/v2/tasklists/:tasklist_guid,7,"[""isv"", ""custom""]",[],1699520840,true,1,https://open.feishu.cn/document/task-v2/tasklist/patch
7255580838154846236,移除清单成员,task,task,v2,tasklist,remove_members,"移除清单的一个或多个协作成员。通过设置`members`字段表示要移除的成员信息。关于member的格式,详见[功能概述](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/overview)中的“ 如何表示任务和清单的成员?”章节。 清单中同一个成员只能有一个角色,通过的member的id和type可以唯一确定一个成员,因此请求参数中对于要删除的成员,不需要填写""role""字段。 如果要移除的成员不在清单中,则被自动忽略,接口返回成功。 该接口不能用于移除清单所有者。如果要移除的成员是清单所有者,则会被自动忽略。如要设置清单所有者,需要调用[更新清单](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/patch)接口。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/remove_members,POST:/open-apis/task/v2/tasklists/:tasklist_guid/remove_members,4,"[""isv"", ""custom""]",[],1699520906,true,1,https://open.feishu.cn/document/task-v2/tasklist/remove_members
7255580838154698780,获取清单任务列表,task,task,v2,tasklist,tasks,获取一个清单的任务列表,返回任务的摘要信息。 本接口支持分页。清单中的任务以“自定义拖拽”的顺序返回。 本接口支持简单的按照任务的完成状态或者任务的创建时间范围过滤。 分页参数说明:是否还有分页数据的判断依据是has_more=true,并非items个数,由于历史原因可能出现当前分页items为空情况。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist/tasks,GET:/open-apis/task/v2/tasklists/:tasklist_guid/tasks,3,"[""isv"", ""custom""]",[],1761276990,true,1,https://open.feishu.cn/document/task-v2/tasklist/tasks
7288897051647000578,创建动态订阅,task,task,v2,tasklist.activity_subscription,create,"为一个清单创建一个订阅。每个订阅可以包含1个或多个订阅者(目前只支持普通群组)。订阅创建后,如清单发生相应的事件,则会向订阅里的订阅者发送通知消息。一个清单最多可以创建50个订阅。每个订阅最大支持50个订阅者。订阅者目前仅支持""chat""类型。 每个订阅可以通过设置`include_keys`可以针对哪些事件(event_key)做通知。如果`include_keys`为空,则不对任何事件进行通知。 如有需要,创建时也可以直接将`disabled`设为true,创建一个禁止发送订阅通知的订阅。",basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist-activity_subscription/create,POST:/open-apis/task/v2/tasklists/:tasklist_guid/activity_subscriptions,5,"[""isv"", ""custom""]",[],1699520972,true,1,https://open.feishu.cn/document/task-v2/tasklist-activity_subscription/create
7288897051646984194,删除动态订阅,task,task,v2,tasklist.activity_subscription,delete,给定一个清单的GUID和一个订阅的GUID,将其删除。删除后的数据不可恢复。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist-activity_subscription/delete,DELETE:/open-apis/task/v2/tasklists/:tasklist_guid/activity_subscriptions/:activity_subscription_guid,1,"[""isv"", ""custom""]",[],1699521059,true,1,https://open.feishu.cn/document/task-v2/tasklist-activity_subscription/delete
7288897051647016962,获取动态订阅,task,task,v2,tasklist.activity_subscription,get,提供一个清单的GUID和一个订阅的GUID,获取该订阅的详细信息,包括名称,订阅者,可通知的event key列表等。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist-activity_subscription/get,GET:/open-apis/task/v2/tasklists/:tasklist_guid/activity_subscriptions/:activity_subscription_guid,4,"[""isv"", ""custom""]",[],1699520993,true,1,https://open.feishu.cn/document/task-v2/tasklist-activity_subscription/get
7288897051646951426,列取动态订阅,task,task,v2,tasklist.activity_subscription,list,给定一个清单的GUID,获取其所有的订阅信息。结果按照订阅的创建时间排序。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist-activity_subscription/list,GET:/open-apis/task/v2/tasklists/:tasklist_guid/activity_subscriptions,3,"[""isv"", ""custom""]",[],1699521015,true,1,https://open.feishu.cn/document/task-v2/tasklist-activity_subscription/list
7288897051646967810,更新动态订阅,task,task,v2,tasklist.activity_subscription,patch,提供一个清单的GUID和一个动态订阅的GUID,对其进行更新。更新时,将`update_fields`字段中填写所有要修改的字段名,同时在`activity_subscription`字段中填写要修改的字段的新值即可。 `update_fields`支持更新的字段包括: * name:订阅的名称 * subscribers: 订阅者列表。如更新,会将旧的订阅者列表完全替换为新的订阅者列表。支持最大50个订阅者。并且订阅者必须是chat类型。 * include_keys :订阅需要发送通知的key。如更新,会将旧的列表完全替换为新的include_keys列表。只能设置支持的event key (见字段描述)。 * disabled:修改订阅的开启/禁用状态。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/task-v2/tasklist-activity_subscription/patch,PATCH:/open-apis/task/v2/tasklists/:tasklist_guid/activity_subscriptions/:activity_subscription_guid,2,"[""isv"", ""custom""]",[],1699521037,true,1,https://open.feishu.cn/document/task-v2/tasklist-activity_subscription/patch
6954228485356568579,获取企业信息,tenant,tenant,v2,tenant,query,获取企业名称、企业编号等企业信息,basic,true,/document/uAjLw4CM/ukTMukTMukTM/tenant-v2/tenant/query,GET:/open-apis/tenant/v2/tenant/query,1669973729262,"[""isv"", ""custom""]",[],1701068832,true,1,https://open.feishu.cn/document/server-docs/tenant-v2/query
7204729599813222401,获取企业席位信息接口,tenant,tenant,v2,tenant.product_assign_info,query,获取租户下待分配的席位列表(仅返回未满的席位),包含席位名称、席位ID、数量及对应有效期。 返回的待分配席位范围为:​ 1. 客户当前已订阅且处于生效状态的席位(注:不包含增购的、尚未生效的未来席位);​ 2. 客户已订阅且未来生效的全新订阅席位。​ 即增购的未来席位不在本接口返回的待分配席位列表范围内。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/tenant-v2/tenant-product_assign_info/query,GET:/open-apis/tenant/v2/tenant/assign_info_list/query,1677049528384,"[""isv"", ""custom""]",[],1755680235,true,1,https://open.feishu.cn/document/server-docs/tenant-v2/tenant-product_assign_info/query
7442539768884690972,获取关联组织详情,trust_party,trust_party,v1,collaboration_tenant,get,基于组织tenant key获取关联组织详情,需要对对方组织有可见权限才可以获取。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/trust_party-v1/collaboration_tenant/get,GET:/open-apis/trust_party/v1/collaboration_tenants/:target_tenant_key,5,"[""isv"", ""custom""]",[],1745918482,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/get
7442539768884641820,获取可见关联组织的列表,trust_party,trust_party,v1,collaboration_tenant,list,分页获取用户可见的关联列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/trust_party-v1/collaboration_tenant/list,GET:/open-apis/trust_party/v1/collaboration_tenants,7,"[""isv"", ""custom""]",[],1745918469,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/list
7442539768884707356,获取关联组织的部门和成员信息,trust_party,trust_party,v1,collaboration_tenant,visible_organization,该接口会返回用户在外部部门下可见的下级部门、用户、用户组。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/trust_party-v1/collaboration_tenant/visible_organization,GET:/open-apis/trust_party/v1/collaboration_tenants/:target_tenant_key/visible_organization,6,"[""isv"", ""custom""]",[],1745918469,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/visible_organization
7442539768884674588,获取关联组织部门详情,trust_party,trust_party,v1,collaboration_tenant.collaboration_department,get,获取对方的关联组织部门详情,需要对部门有可见性权限才可以获取。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/trust_party-v1/collaboration_tenant-collaboration_department/get,GET:/open-apis/trust_party/v1/collaboration_tenants/:target_tenant_key/collaboration_departments/:target_department_id,3,"[""isv"", ""custom""]",[],1745918506,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/get-2
7442539768884625436,获取关联组织成员详情,trust_party,trust_party,v1,collaboration_tenant.collaboration_user,get,获取关联组织成员详情,需要对关联组织成员有权限才可以获取。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/trust_party-v1/collaboration_tenant-collaboration_user/get,GET:/open-apis/trust_party/v1/collaboration_tenants/:target_tenant_key/collaboration_users/:target_user_id,4,"[""isv"", ""custom""]",[],1745918494,true,1,https://open.feishu.cn/document/trust_party-v1/-collaboraiton-organization/get-3
6959767963147993089,三方快捷审批回调,unknown,unknown,old,default,,若[创建三方审批定义](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/approval-v4/external_approval/create)时,设置了三方审批的回调 URL(action_callback_url),后续当审批人 **同意** 或 **拒绝** 三方审批任务时,可以通过该回调 URL 通知三方审批系统,使三方审批系统可根据通知数据做出相应的审批流程处理。,none,true,/document/ukTMukTMukTM/ukjNyYjL5YjM24SO2IjN/quick-approval-callback,,1,[],[],1745207207,false,1,https://open.feishu.cn/document/server-docs/approval-v4/external_approval/quick-approval-callback
7146108826851770396,获取告警记录,vc,vc,v1,alert,list,获取特定条件下租户的设备告警记录。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/alert/list,GET:/open-apis/vc/v1/alerts,1663141857833,"[""custom""]",[],1721719982,true,1,https://open.feishu.cn/document/server-docs/vc-v1/alert/list
7143809848869109763,下载导出文件,vc,vc,v1,export,download,下载导出文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/download,GET:/open-apis/vc/v1/exports/download,1,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/download
7124195547444527132,查询导出任务结果,vc,vc,v1,export,get,查看异步导出的进度。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/get,GET:/open-apis/vc/v1/exports/:task_id,2,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/get
7124235806021238785,导出会议明细,vc,vc,v1,export,meeting_list,导出会议明细,具体权限要求请参考资源介绍。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/meeting_list,POST:/open-apis/vc/v1/exports/meeting_list,6,"[""isv"", ""custom""]",[],1721719976,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/meeting_list
7124195547444477980,导出参会人明细,vc,vc,v1,export,participant_list,导出某个会议的参会人详情列表,具体权限要求请参考「资源介绍」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/participant_list,POST:/open-apis/vc/v1/exports/participant_list,5,"[""isv"", ""custom""]",[],1721719976,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/participant_list
7124195547444494364,导出参会人会议质量数据,vc,vc,v1,export,participant_quality_list,导出某场会议某个参会人的音视频&共享质量数据 (仅支持已结束会议),具体权限要求请参考「资源介绍」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/participant_quality_list,POST:/open-apis/vc/v1/exports/participant_quality_list,4,"[""isv"", ""custom""]",[],1721719976,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/participant_quality_list
7124195547444510748,导出会议室预定数据,vc,vc,v1,export,resource_reservation_list,导出会议室预定数据,具体权限要求请参考「资源介绍」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/export/resource_reservation_list,POST:/open-apis/vc/v1/exports/resource_reservation_list,3,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/export/resource_reservation_list
6960861158593118212,结束会议,vc,vc,v1,meeting,end,结束一个进行中的会议。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/end,PATCH:/open-apis/vc/v1/meetings/:meeting_id/end,4,"[""isv"", ""custom""]",[],1692770962,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/end
6960861158128926723,获取会议详情,vc,vc,v1,meeting,get,获取一个会议的详细数据。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/get,GET:/open-apis/vc/v1/meetings/:meeting_id,3,"[""isv"", ""custom""]",[],1721719976,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/get
6960861158593134596,邀请参会人,vc,vc,v1,meeting,invite,邀请参会人进入会议。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/invite,PATCH:/open-apis/vc/v1/meetings/:meeting_id/invite,7,"[""isv"", ""custom""]",[],1692770962,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/invite
6997003722790633474,移除参会人,vc,vc,v1,meeting,kickout,将参会人从会议中移除。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/kickout,POST:/open-apis/vc/v1/meetings/:meeting_id/kickout,6,"[""isv"", ""custom""]",[],1692770962,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/kickout
7013251669786116097,获取与会议号关联的会议列表,vc,vc,v1,meeting,list_by_no,获取指定时间范围(90天内)会议号关联的会议简要信息列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/list_by_no,GET:/open-apis/vc/v1/meetings/list_by_no,2,"[""isv"", ""custom""]",[],1716194050,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/list_by_no
6921909217674805275,设置主持人,vc,vc,v1,meeting,set_host,设置会议的主持人。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting/set_host,PATCH:/open-apis/vc/v1/meetings/:meeting_id/set_host,5,"[""isv"", ""custom""]",[],1692770962,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting/set_host
6960861158593101828,获取录制文件,vc,vc,v1,meeting.recording,get,获取一个会议的录制文件。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-recording/get,GET:/open-apis/vc/v1/meetings/:meeting_id/recording,2,"[""isv"", ""custom""]",[],1723016914,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-recording/get
6960861158129025027,授权录制文件,vc,vc,v1,meeting.recording,set_permission,将一个会议的录制文件授权给组织、用户或公开到公网。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-recording/set_permission,PATCH:/open-apis/vc/v1/meetings/:meeting_id/recording/set_permission,1,"[""isv"", ""custom""]",[],1721719976,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-recording/set_permission
6960861158593150980,开始录制,vc,vc,v1,meeting.recording,start,在会议中开始录制。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-recording/start,PATCH:/open-apis/vc/v1/meetings/:meeting_id/recording/start,4,"[""isv"", ""custom""]",[],1718348062,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-recording/start
6960861158129057795,停止录制,vc,vc,v1,meeting.recording,stop,在会议中停止录制。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-recording/stop,PATCH:/open-apis/vc/v1/meetings/:meeting_id/recording/stop,3,"[""isv"", ""custom""]",[],1718348062,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-recording/stop
7194805625628033027,查询会议明细,vc,vc,v1,meeting_list,get,查询会议明细,具体权限要求请参考[资源介绍](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-room-data/resource-introduction),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting_list/get,GET:/open-apis/vc/v1/meeting_list,4,"[""isv"", ""custom""]",[],1753858950,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-room-data/get
7194805625628147715,查询参会人明细,vc,vc,v1,participant_list,get,查询参会人明细,具体权限要求请参考[资源介绍](/ssl:ttdoc/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/meeting-room-data/resource-introduction),basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/participant_list/get,GET:/open-apis/vc/v1/participant_list,3,"[""isv"", ""custom""]",[],1753858950,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-room-data/get-2
7194805625628049411,查询参会人会议质量数据,vc,vc,v1,participant_quality_list,get,查询参会人会议质量数据(仅支持已结束会议),具体权限要求请参考「资源介绍」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/participant_quality_list/get,GET:/open-apis/vc/v1/participant_quality_list,2,"[""isv"", ""custom""]",[],1721719982,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-room-data/get-3
6921909217674821659,获取会议报告,vc,vc,v1,report,get_daily,获取一段时间内组织的每日会议使用报告。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/report/get_daily,GET:/open-apis/vc/v1/reports/get_daily,1611497373191,"[""isv"", ""custom""]",[],1714359532,true,1,https://open.feishu.cn/document/server-docs/vc-v1/report/get_daily
6921909217674723355,获取 Top 用户列表,vc,vc,v1,report,get_top_user,获取一段时间内组织内会议使用的 Top 用户列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/report/get_top_user,GET:/open-apis/vc/v1/reports/get_top_user,1611497342817,"[""isv"", ""custom""]",[],1714359532,true,1,https://open.feishu.cn/document/server-docs/vc-v1/report/get_top_user
6960861158129008643,预约会议,vc,vc,v1,reserve,apply,创建一个会议预约。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve/apply,POST:/open-apis/vc/v1/reserves/apply,5,"[""isv"", ""custom""]",[],1725888874,true,1,https://open.feishu.cn/document/server-docs/vc-v1/reserve/apply
6960861158129041411,删除预约,vc,vc,v1,reserve,delete,删除一个预约。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve/delete,DELETE:/open-apis/vc/v1/reserves/:reserve_id,4,"[""isv"", ""custom""]",[],1725880406,true,1,https://open.feishu.cn/document/server-docs/vc-v1/reserve/delete
6921909217674936347,获取预约,vc,vc,v1,reserve,get,获取一个预约的详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve/get,GET:/open-apis/vc/v1/reserves/:reserve_id,2,"[""isv"", ""custom""]",[],1725888875,true,1,https://open.feishu.cn/document/server-docs/vc-v1/reserve/get
6921909217674952731,获取活跃会议,vc,vc,v1,reserve,get_active_meeting,获取一个预约的当前活跃会议。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve/get_active_meeting,GET:/open-apis/vc/v1/reserves/:reserve_id/get_active_meeting,1,"[""isv"", ""custom""]",[],1725888875,true,1,https://open.feishu.cn/document/server-docs/vc-v1/reserve/get_active_meeting
6921909217674854427,更新预约,vc,vc,v1,reserve,update,更新一个预约。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve/update,PUT:/open-apis/vc/v1/reserves/:reserve_id,3,"[""isv"", ""custom""]",[],1725888875,true,1,https://open.feishu.cn/document/server-docs/vc-v1/reserve/update
7152043170151350276,更新会议室预定限制,vc,vc,v1,reserve_config,patch,更新会议室预定限制。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config/patch,PATCH:/open-apis/vc/v1/reserve_configs/:reserve_config_id,9,"[""isv"", ""custom""]",[],1721719980,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/patch
7152043170151333892,查询会议室预定限制,vc,vc,v1,reserve_config,reserve_scope,查询会议室预定限制。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config/reserve_scope,GET:/open-apis/vc/v1/reserve_configs/reserve_scope,10,"[""isv"", ""custom""]",[],1721719980,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/reserve_scope
7194805625628131331,查询会议室预定管理员,vc,vc,v1,reserve_config.admin,get,查询会议室预定管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-admin/get,GET:/open-apis/vc/v1/reserve_configs/:reserve_config_id/admin,6,"[""isv"", ""custom""]",[],1721719981,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/get-3
7194805625628000259,更新会议室预定管理员,vc,vc,v1,reserve_config.admin,patch,更新会议室预定管理员。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-admin/patch,PATCH:/open-apis/vc/v1/reserve_configs/:reserve_config_id/admin,5,"[""isv"", ""custom""]",[],1721719981,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/patch-3
7211447510368534532,查询禁用状态变更通知,vc,vc,v1,reserve_config.disable_inform,get,查询禁用状态变更通知,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-disable_inform/get,GET:/open-apis/vc/v1/reserve_configs/:reserve_config_id/disable_inform,4,"[""isv"", ""custom""]",[],1721719981,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/get-4
7211447510368550916,更新禁用状态变更通知,vc,vc,v1,reserve_config.disable_inform,patch,更新禁用状态变更通知,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-disable_inform/patch,PATCH:/open-apis/vc/v1/reserve_configs/:reserve_config_id/disable_inform,3,"[""isv"", ""custom""]",[],1721719981,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/patch-4
7194790671877144578,查询会议室预定表单,vc,vc,v1,reserve_config.form,get,查询会议室预定表单。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-form/get,GET:/open-apis/vc/v1/reserve_configs/:reserve_config_id/form,8,"[""isv"", ""custom""]",[],1721719980,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/get-2
7194790671877160962,更新会议室预定表单,vc,vc,v1,reserve_config.form,patch,更新会议室预定表单。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/reserve_config-form/patch,PATCH:/open-apis/vc/v1/reserve_configs/:reserve_config_id/form,7,"[""isv"", ""custom""]",[],1721719981,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/patch-2
7194805625628065795,查询会议室预定数据,vc,vc,v1,resource_reservation_list,get,查询会议室预定数据,具体权限要求请参考「资源介绍」。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/resource_reservation_list/get,GET:/open-apis/vc/v1/resource_reservation_list,1,"[""isv"", ""custom""]",[],1721719982,true,1,https://open.feishu.cn/document/server-docs/vc-v1/meeting-room-data/get-4
7160517357592084483,创建会议室,vc,vc,v1,room,create,该接口用于创建会议室。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/create,POST:/open-apis/vc/v1/rooms,8,"[""isv"", ""custom""]",[],1721719978,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/create
7160517356095979524,删除会议室,vc,vc,v1,room,delete,该接口可以用来删除某个会议室。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/delete,DELETE:/open-apis/vc/v1/rooms/:room_id,7,"[""isv"", ""custom""]",[],1721719978,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/delete
7160517357592068099,查询会议室详情,vc,vc,v1,room,get,该接口可以使用会议室 ID 查询会议室详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/get,GET:/open-apis/vc/v1/rooms/:room_id,5,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/get
7160517357592051715,查询会议室列表,vc,vc,v1,room,list,该接口可以用来查询某个会议室层级下会议室列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/list,GET:/open-apis/vc/v1/rooms,3,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/list
7160517356095946756,批量查询会议室详情,vc,vc,v1,room,mget,该接口可以使用会议室 ID 批量查询会议室详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/mget,POST:/open-apis/vc/v1/rooms/mget,4,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/mget
7160517356095963140,更新会议室,vc,vc,v1,room,patch,该接口可以用来更新某个会议室的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/patch,PATCH:/open-apis/vc/v1/rooms/:room_id,6,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/patch
7160517357591937027,搜索会议室,vc,vc,v1,room,search,该接口可以用来搜索会议室,支持使用关键词进行搜索,也支持使用自定义会议室 ID 进行查询。该接口只会返回用户有预定权限的会议室列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/search,POST:/open-apis/vc/v1/rooms/search,2,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room/search
6921909217674739739,查询会议室配置,vc,vc,v1,room_config,query,查询一个范围内的会议室配置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/query,GET:/open-apis/vc/v1/room_configs/query,2,"[""isv"", ""custom""]",[],1721719963,true,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/room_config/query
6921909217674756123,设置会议室配置,vc,vc,v1,room_config,set,设置一个范围内的会议室配置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/set,POST:/open-apis/vc/v1/room_configs/set,1,"[""isv"", ""custom""]",[],1721719963,true,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/room_config/set
7070073879629430788,创建签到板部署码,vc,vc,v1,room_config,set_checkboard_access_code,创建一个范围内的签到板部署码,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/set_checkboard_access_code,POST:/open-apis/vc/v1/room_configs/set_checkboard_access_code,4,"[""isv"", ""custom""]",[],1721719963,true,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/room_config/set_checkboard_access_code
7070073879629447172,创建会议室部署码,vc,vc,v1,room_config,set_room_access_code,创建一个范围内的会议室部署码,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/set_room_access_code,POST:/open-apis/vc/v1/room_configs/set_room_access_code,3,"[""isv"", ""custom""]",[],1721719963,true,1,https://open.feishu.cn/document/server-docs/historic-version/meeting_room-v1/room_config/set_room_access_code
7160517357591986179,创建会议室层级,vc,vc,v1,room_level,create,该接口用于创建会议室层级。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/create,POST:/open-apis/vc/v1/room_levels,8,"[""isv"", ""custom""]",[],1729071594,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/create
7160517357592002563,删除会议室层级,vc,vc,v1,room_level,del,该接口可以用来删除某个会议室层级。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/del,POST:/open-apis/vc/v1/room_levels/del,7,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/del
7160517357592133635,查询会议室层级详情,vc,vc,v1,room_level,get,该接口可以使用会议室层级 ID 查询会议室层级详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/get,GET:/open-apis/vc/v1/room_levels/:room_level_id,5,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/get
7160517357592117251,查询会议室层级列表,vc,vc,v1,room_level,list,该接口用来查询某个会议室层级下的子层级列表。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/list,GET:/open-apis/vc/v1/room_levels,3,"[""isv"", ""custom""]",[],1721719978,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/list
7160517356095897604,批量查询会议室层级详情,vc,vc,v1,room_level,mget,该接口可以使用会议室层级 ID 批量查询会议室层级详情。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/mget,POST:/open-apis/vc/v1/room_levels/mget,4,"[""isv"", ""custom""]",[],1721719978,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/mget
7160517356095995908,更新会议室层级,vc,vc,v1,room_level,patch,该接口可以用来更新某个会议室层级的信息。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/patch,PATCH:/open-apis/vc/v1/room_levels/:room_level_id,6,"[""isv"", ""custom""]",[],1721719977,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/patch
7160517356095913988,搜索会议室层级,vc,vc,v1,room_level,search,该接口可以用来搜索会议室层级,支持使用自定义会议室层级 ID 进行查询。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_level/search,GET:/open-apis/vc/v1/room_levels/search,2,"[""isv"", ""custom""]",[],1721719978,true,1,https://open.feishu.cn/document/server-docs/vc-v1/room_level/search
7160517357591920643,设置会议室配置,vc,vc,v1,scope_config,create,该接口可以用来设置某个会议层级范围下或者某个会议室的配置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/scope_config/create,POST:/open-apis/vc/v1/scope_config,11,"[""isv"", ""custom""]",[],1721719980,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/create
7160517356095930372,查询会议室配置,vc,vc,v1,scope_config,get,该接口可以用来查询某个会议层级范围下或者某个会议室的配置。,basic,true,/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/scope_config/get,GET:/open-apis/vc/v1/scope_config,12,"[""isv"", ""custom""]",[],1721719979,true,1,https://open.feishu.cn/document/server-docs/vc-v1/scope_config/get
7155320694884614148,获取认证信息,verification_information,verification,v1,verification,get,获取企业主体名称、是否认证等信息。{尝试一下}(url=/api/tools/api_explore/api_explore_config?project=verification&version=v1&resource=verification&method=get),none,true,/document/uAjLw4CM/ukTMukTMukTM/verification-v1/verification/get,GET:/open-apis/verification/v1/verification,1669972898292,"[""isv"", ""custom""]",[],1666147608,false,1,https://open.feishu.cn/document/server-docs/verification-v1/get
7244463472595697666,获取定制工作台访问数据,workplace,workplace,v1,custom_workplace_access_data,search,获取定制工作台访问数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/workplace-v1/custom_workplace_access_data/search,POST:/open-apis/workplace/v1/custom_workplace_access_data/search,2,"[""isv"", ""custom""]",[],1688010034,true,1,https://open.feishu.cn/document/workplace-v1/workplace_access_data/search-3
7244463472595714050,获取工作台访问数据,workplace,workplace,v1,workplace_access_data,search,获取工作台访问数据(包含默认工作台与定制工作台),basic,true,/document/uAjLw4CM/ukTMukTMukTM/workplace-v1/workplace_access_data/search,POST:/open-apis/workplace/v1/workplace_access_data/search,3,"[""isv"", ""custom""]",[],1688010054,true,1,https://open.feishu.cn/document/workplace-v1/workplace_access_data/search
7244463472595681282,获取定制工作台小组件访问数据,workplace,workplace,v1,workplace_block_access_data,search,获取定制工作台小组件访问数据,basic,true,/document/uAjLw4CM/ukTMukTMukTM/workplace-v1/workplace_block_access_data/search,POST:/open-apis/workplace/v1/workplace_block_access_data/search,1,"[""isv"", ""custom""]",[],1688382475,true,1,https://open.feishu.cn/document/workplace-v1/workplace_access_data/search-2