员工信用查询接口

  • 接口:/credits

  • Method:POST

  • 数据格式:JSON

  • 请求参数:

字段 类型 必须 默认值 描述
employeeIds String数组 N 员工工号数组
updatedAtStart String N 根据员工信用分的更新时间, 返回之后的数据(包含当天)
updatedAtEnd String N 根据员工信用分的更新时间,返回之前的数据 (不包含当天)
offset int N 0 分页起始
limit int N 500 分页条数

#

  • updatedAtStart, updatedAtEnd的格式为yyyy-MM-dd
  • 接口最多返回500条记录;可通过offset, limit进行分页
  • 结果集按照员工信用创建时间升序排列

返回数据:

字段 类型 描述
employeeId String 员工工号
currentCredit String 员工当前信用分
creditRank String 员工当前信用等级

示例

  • 请求示例:
{
    "employeeIds":["10001","10002"],
    "updatedAtStart":"2018-04-10",
    "updatedAtEnd":"2018-05-10",
    "offset":0,
    "limit":500
}
  • 返回示例:
  {
  "code": "ACK",
  "message": null,
  "data": [
    {
      "employeeId": "10001",
      "currentCredit": 92
    },
    {
      "employeeId": "10002",
      "currentCredit": 80
    }
  ],
  "args": null,
  "linkDetail": false,
  "lastPage": true,
  "nonBizError": false
}

results matching ""

    No results matching ""