People
February 6, 2014 ยท View on GitHub
For the full XML representation of people, check out the data reference.
Current person
GET /me.xmlreturns the currently logged in person (you).
Response:
<person>
<id type="integer">#{id}</id>
<user-name>#{user_name}</user-name>
...
</person>
Get people (across projects)
Admins can include deleted people using the ?include_deleted=true query parameter.
GET /people.xmlreturns all people visible to (and including) the requesting user.GET /projects/#{project_id}/people.xmlreturns all people with access to the given project.GET /companies/#{company_id}/people.xmlreturns all people from the given company that are visible to the requesting user.
Response:
<people>
<person>
...
</person>
...
</people>
Get person
GET /people/#{person_id}.xmlreturns a single person identified by their integer ID.
Response:
<person>
...
</person>