GET /teams/:teamId/members

Description

Get a team member's profile. Only fellow team members can see the profile.

Resource URL

https://api.playlyfe.com/teams/:teamId/members/:memberId

Method

GET

Scopes

player, game, debug

Parameters

LocationParameter NameDefault ValueDescription
QueryteamIdThe team ID
QuerymemberIdThe member ID

Example

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