日历创建
POST
/calendar/create最后修改时间: 1 年前
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Body 参数application/json
team_id
integer
管理团队ID,如果为0,代表仅创建者和主体账户可以修改配置
cal_name
string
日历名称,长度限制[1,40]字节
<= 40 字符
description
string
日历描述,长度限制长度限制[1,500]字节
<= 500 字符
timezone
string
日历时区,格式要求:需满足 IANA Time Zone Database 中的时区定义
示例值:"Asia/Shanghai" 默认值:"Asia/Shanghai"
workdays
array[integer]
工作日列表,如果列表为空,代表全周都是工作日。枚举值1,2,3,4,5,6,7代表周一至周日
枚举值:
0123456
extra_cal_ids
array[string]
关联的其他日历ID列表,比如中国大陆法定假日
示例
{
"team_id": 0,
"cal_name": "string",
"description": "string",
"timezone": "string",
"workdays": [
0
],
"extra_cal_ids": [
"string"
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
error
object (DutyError)
可选
code
enum<string>
错误码
枚举值:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
错误描述
data
object
可选
cal_id
string
日历ID
cal_name
string
日历名称
示例
未设置
最后修改时间: 1 年前