GET/statuses.json

Retrieve all Statuses

All of the latest status posts are returned for all users in the parent company.


Query Params

  • Name
    includeClockin
    Type
    boolean
    Description

    Will return 0 or 1 based on if the user is clocked in or not.

    Default
    false

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "userStatuses": [
    {
      "geoipLocation": "",
      "posted-on": "2014-04-01T13:58:30Z",
      "first-name": "Demo",
      "avatar-url": "http://demo1company.teamwork.com/images/demo.jpg",
      "id": "999",
      "last-changed-on": "2014-04-01T13:58:30Z",
      "status": "Writing a proposal",
      "last-name": "User",
      "userId": "999",
      "isClockedIn": "0"
    },
    {
      "geoipLocation": "",
      "posted-on": "2014-04-01T13:37:39Z",
      "first-name": "'Demo 2",
      "avatar-url": "http://demo1company.teamwork.com/images/demo2.jpg",
      "id": "1000",
      "last-changed-on": "2014-04-01T13:37:39Z",
      "status": "Status message here",
      "last-name": "User'",
      "userId": "1000",
      "isClockedIn": "0"
    }
  ]
}