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
Location | Parameter Name | Default Value | Description |
---|---|---|---|
Query | teamId | The team ID | |
Query | memberId | The 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 }