- 独立部署版
- V1.0-(2022.8.18)
- v1.1-(2023.6.20)
- v1.2-(2023.10.20)
- v1.3-(2023.11.20)
- 低代码
- v1.4
- v1.5
- v1.6
- v1.8
- v1.9
- v2.0
获取日报导出接口
开发中
GET
/ent/enterprise/daily/export
责任人:未设置
请求参数
Query 参数
page
string
可选
limit
string
可选
time
string
时间
示例值:
2024/06/01-2024/06/30
types
string
可选
示例值:
0
scope_frame
string
数据范围
示例值:
all
name
string
员工名称
viewer
string
可选
Header 参数
Authorization
string
必需
示例值:
Bearer {{ENT_TOKEN}}
X-Requested-With
string
必需
默认值:
XMLHttpRequest
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/ent/enterprise/daily/export' \
--header 'Authorization: Bearer {{ENT_TOKEN}}' \
--header 'Authorization;' \
--header 'X-Requested-With;'
返回响应
🟢200成功
application/json
Body
message
string
必需
status
integer
必需
data
array [object {6}]
必需
id
integer
员工ID
name
string
员工名称
frame_name
string
部门名称
types
string
类型
submit
integer
已提交次数
no_submit
integer
未提交次数
tips
integer
必需
示例
{
"message": "ok",
"status": 200,
"data": [
{
"id": 4,
"name": "张三",
"frame_name": "开发部",
"type_name": "日报",
"submit": 3,
"no_submit": 0
}
],
"tips": 1
}
🟠404记录不存在(示例)
🟢200修改成功(示例)
🟠401参数不正确(示例)
🟢201新建成功(示例)