API Endpoint: List a Team's Members
This gets the userid, username, and reputation of each team member.
Request
GET /api/0.1/team/{teamid}/members GET Parameters
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 | [
{
"userid": 2,
"username": "Kyle Wiens",
"reputation": 1690
},
{
"userid": 3,
"username": "Chris Cline",
"reputation": 230
}
]
|