Lists all statuses in your account. Users who have not posted a status will not be included.
Status: 200 OK
<statuses type="array">
<status>
<id type="integer">...</id>
<message>...</message>
<updated-at type="datetime">...</updated-at>
<user-id type="integer">...</user-id>
<user>
<id type="integer">...</id>
<name>...</name>
</user>
</status>
...
</statuses>
Retrieve the status for a specific user. If the user has never set their status, this will return a "404 Not Found" response.
Status: 200 OK
<status>
<id type="integer">...</id>
<message>...</message>
<updated-at type="datetime">...</updated-at>
<user-id type="integer">...</user-id>
</status>
Update the status for the given user-id. You may only update your own status; attempting to update someone else's status will result in a "403 Forbidden" response.
<status>
<message>...</message>
</status>
Status: 200 OK