- 独立部署版
- V1.0-(2022.8.18)
- v1.1-(2023.6.20)
- v1.2-(2023.10.20)
- v1.3-(2023.11.20)
- 低代码
- 流程管理
- 触发器
- 表单设置
- 列表设置
- 字段设置
- 应用设置
- 实体列表
- 视图管理
- 接口管理
- 对外接口
- 获取表列表GET
- 创建表POST
- 修改表PUT
- 删除表DELETE
- 获取一对一关联字段展示GET
- 获取表单类型GET
- 复制实体表POST
- 获取某个实体下的字段信息和数据字典信息GET
- 获取某个实体信息GET
- v1.4
- v1.5
- v1.6
获取请假类型列表
GET
/ent/approve/holiday_type
责任人:未设置
请求参数
Query 参数
name
string
类型名称
page
integer
分页
示例值:
1
limit
integer
条数
示例值:
10
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/approve/holiday_type' \
--header 'Authorization;' \
--header 'X-Requested-With;'
返回响应
🟢200成功
application/json
Body
message
string
必需
status
integer
必需
data
object
必需
list
array [object {8}]
必需
count
integer
必需
tips
integer
必需
示例
{
"message": "string",
"status": 0,
"data": {
"list": [
{
"id": 0,
"name": "string",
"new_employee_limit": 0,
"new_employee_limit_month": 0,
"duration_type": 0,
"duration_calc_type": 0,
"created_at": "string",
"updated_at": "string"
}
],
"count": 0
},
"tips": 0
}
修改于 2024-01-05 09:50:11