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

LocationParameter NameDefault ValueDescription
QueryteamIdThe team ID

Example

Request
GET https://api.playlyfe.com/teams/hackers/members
Response
{
  "data": [
    {
      "alias": "Neo",
      "id": "neo"
    },
    {
      "alias": "Trinity",
      "id": "trinity"
    }
  ],
  "total": 2
}