- 考勤组管理
- 批量获取考勤组详情POST
- 获取用户考勤组POST
- 获取考勤组成员POST
- 考勤组成员校验POST
- 更新考勤组成员POST
- 获取考勤组员工的useridPOST
- 批量获取考勤组摘要POST
- 获取考勤组详情POST
- 搜索考勤组摘要POST
- 批量新增wifi信息POST
- 批量移除wifiPOST
- 批量查询wifiPOST
- 批量新增positionPOST
- 批量删除positionPOST
- 批量查询positionPOST
- 创建考勤组POST
- 更新考勤组POST
- 删除考勤组POST
- 批量新增考勤组成员POST
- 批量删除考勤组成员POST
- 查询考勤组员工POST
- 根据groupkey查询考勤组信息POST
- groupKey转换为groupIdPOST
- groupId转换为groupKeyPOST
- 考勤打卡
- 考勤班次
- 考勤排班
- 考勤统计
- 考勤机管理
- 假勤审批
- 假期管理
获取打卡结果
POST
http://127.0.0.1/attendance/list
服务端API/考勤/考勤打卡
最后修改时间:2022-08-30 09:19:22
责任人:未设置
说明#
服务地址:https://oapi.dingtalk.com
权限#
应用类型 | 是否支持调用 | 权限申请方式 | API Explorer调试 |
---|---|---|---|
企业内部应用 | 是 | 开发者后台申请 | 调试 |
第三方企业应用 | 是 | 开发者后台申请 | 调试 |
第三方个人应用 | 否 | — | — |
请求参数
Query 参数
access_token
string
必需
示例值:
6d1bxxxx
Body 参数application/json
workDateFrom
string
必需
workDateTo
string
必需
userIdList
array[string]
必需
offset
number
必需
limit
number
必需
isI18n
boolean
可选
示例
{
"workDateFrom": "2020-09-06 00:00:00",
"offset": 0,
"userIdList": [
"manager"
],
"limit": 10,
"isI18n": false,
"workDateTo": "2020-09-07 00:00:00"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://127.0.0.1/attendance/list?access_token=6d1bxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"workDateFrom": "2020-09-06 00:00:00",
"offset": 0,
"userIdList": [
"manager"
],
"limit": 10,
"isI18n": false,
"workDateTo": "2020-09-07 00:00:00"
}'
返回响应
🟢200成功
application/json
Body
recordresult
array [object {14}]
打卡记录。
sourceType
string
可选
baseCheckTime
string
可选
userCheckTime
string
可选
procInstId
string
可选
approveId
number
可选
locationResult
string
可选
timeResult
string
可选
checkType
string
可选
userId
string
可选
workDate
string
工作日。
recordId
number
打卡记录ID。
planId
number
排班ID。
groupId
number
考勤组ID。
id
number
唯一标识ID。
hasMore
boolean
可选
errmsg
string
返回码描述。
errcode
number
返回码。
示例
{
"recordresult": [
{
"sourceType": "string",
"baseCheckTime": "string",
"userCheckTime": "string",
"procInstId": "string",
"approveId": 0,
"locationResult": "string",
"timeResult": "string",
"checkType": "string",
"userId": "string",
"workDate": "string",
"recordId": 0,
"planId": 0,
"groupId": 0,
"id": 0
}
],
"hasMore": true,
"errmsg": "string",
"errcode": 0
}
