GET /teams/:teamId/members
Description
Get a list of all the players who are members of a team
Only the members of the team can see this list.
Resource URL
https://api.playlyfe.com/teams/:teamId/members
Method
GET
Scopes
player, game, debug
Parameters
| Location | Parameter Name | Default Value | Description |
|---|---|---|---|
| Query | teamId | The team ID |
Example
Request
GET https://api.playlyfe.com/teams/hackers/members
Response
{
"data": [
{
"alias": "Neo",
"id": "neo"
},
{
"alias": "Trinity",
"id": "trinity"
}
],
"total": 2
}