Returns the currently logged in person (you).
{
"user":{
"id":"5763983",
"name":"John Smith",
...
}
}
Returns all people visible to (and including) the requesting user.
{
"users":[
{
"id":"57583647",
"name":"John Smith",
...
},
{
"id":"20847684",
"name":"Brenda G. Hill",
...
},
...
]
}
Returns all people with access to the given project.
{
"users":[
{
"id":"31456313",
"name":"Amy K. Weathers",
...
},
{
"id":"76721148",
"name":"Vicky Diaz",
...
},
...
]
}
Returns all people from the given company that are visible to the requesting user.
{
"users":[
{
"id":"31456313",
"name":"Amy K. Weathers",
...
},
{
"id":"76721148",
"name":"Vicky Diaz",
...
},
...
]
}
Returns a single person identified by their integer ID.
{
"user": {
"id":"31456313",
"name":"Amy K. Weathers",
...
}
}