GET/people/{id}/status.json
Retrieve a Persons Status
Returns the latest status for a user using their ID.
Path Params
- Name
id
- Type
- string
- required
- Description
Request Examples
Example Request
GET
/people/{id}/status.jsoncurl --request GET \ --url https://{site_name}.teamwork.com/stats.json
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
application/json
{
"userStatus": {
"first-name": "Demo",
"avatar-url": "http://demo1company.teamwork.com/images/demo.jpg",
"id": "999",
"status": "Writing a proposal",
"last-name": "User"
}
}