- 独立部署版
- V1.0-(2022.8.18)
- v1.1-(2023.6.20)
- v1.2-(2023.10.20)
- 企业PC端
- 菜单
- 用户
- 权限
- 申请审批
- 审批 设置
- 日程
- 合同附件
- 帮助中心
- 账目分类
- 资金流水
- 汇报
- 客户附件
- 云文档模板
- 知识社区
- 付款提醒
- v1.3-(2023.11.20)
- 低代码
- v1.4
- v1.5
- v1.6
获取日程类型列表
GET
/schedule/types
责任人:未设置
请求参数
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 '/schedule/types' \
--header 'Authorization;' \
--header 'X-Requested-With;'
返回响应
🟢200成功
application/json
Body
message
string
必需
status
integer
必需
data
array [object {5}]
必需
id
integer
ID
name
string
类型名称
color
string
颜色标识
info
string
类型简介
is_public
boolean
个人是否可选
示例
{
"message": "ok",
"status": 200,
"data": [
{
"id": 1,
"name": "个人提醒",
"color": "#1890FF",
"info": "",
"is_public": 1
},
{
"id": 2,
"name": "客户跟进",
"color": "#19BE6B",
"info": "",
"is_public": 1
},
{
"id": 3,
"name": "付款提醒",
"color": "#FB7A4D",
"info": "",
"is_public": 1
},
{
"id": 4,
"name": "合同回款",
"color": "#A277FF",
"info": "",
"is_public": 1
},
{
"id": 5,
"name": "汇报待办",
"color": "#ED4014",
"info": "",
"is_public": 1
},
{
"id": 6,
"name": "绩效考核",
"color": "#1890FF",
"info": "",
"is_public": 1
}
]
}
修改于 2024-01-05 09:49:51