文档
测试

获取用户打卡日历

POST
https://airead.pgcxhy.com.cn/AIread/get_month_clock_in_info

请求参数

参数名
类型
描述
必填
account
String
用户账号
必填
year
int
预留字段 当前年份 不可为空
必填
month
int
预留字段 当前月份 不可为空
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
data
object
数据字典
必填
clock_list
array
数据列表
必填
year
string
年份 示例:2020
必填
month
string
月份 示例:05
必填
day
string
日期 示例:28
必填

说明 / 示例

**状态码** 1. 200 获取成功 **响应示例** ``` { "code": 200, "data": { "clock_list": [ 表示用户打卡日期的数组集合 { "year": "2020", "month": "05", "day": "28" }, { "year": "2020", "month": "05", "day": "29" } ] } } ```