GET/people/{personId}/clockins.json

Get all clock Ins

Get a list of clock in/out logs per person.

Please note:

This is only available on paid plans.


Path Params

  • Name
    personId
    Type
    string
    required
    Description

Query Params

  • Name
    page
    Type
    integer
    Description

    Optionally, you can set the page from which to start retrieving results. This is usually used in conjunction with the parameter pageSize.

    See How does paging work for more detailed documentation on pagination. For example: ?page=2&pageSize=10 will retrieve results 10-20.

  • Name
    pageSize
    Type
    integer
    Description

    The amount of clock ins returned can be limited using this parameter. Normally used in conjunction with the page parameter. Minimum: 1

    Default
    50

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "clockIns": [
    {
      "clockInDatetime": "2019-01-02T14:11:30Z",
      "updatedDateTime": "2019-01-02T14:11:30Z",
      "clockOutDatetime": "",
      "clockInSource": "API-external",
      "clockOutInfo": "",
      "id": "6",
      "clockInInfo": "",
      "status": "active",
      "clockOutSource": "",
      "userId": "1"
    },
    {
      "clockInDatetime": "2019-01-02T14:10:00Z",
      "updatedDateTime": "2019-01-02T14:19:49Z",
      "clockOutDatetime": "2019-01-02T14:12:00Z",
      "clockInSource": "user",
      "clockOutInfo": "",
      "id": "5",
      "clockInInfo": "",
      "status": "active",
      "clockOutSource": "user",
      "userId": "1"
    }
  ],
  "STATUS": "OK"
}