GET members/{id}

Get a member by id

Request Information

Parameters

NameDescriptionAdditional information
id
memberid

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "first_name": "sample string 2",
  "last_name": "sample string 3",
  "avatar_url": "sample string 4"
}

application/xml, text/xml

Sample:
<BasicMemberDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
  <avatar_url>sample string 4</avatar_url>
  <first_name>sample string 2</first_name>
  <id>sample string 1</id>
  <last_name>sample string 3</last_name>
</BasicMemberDto>