GET api/v1/social/profile/{memberId}

Gets the requested member's information Release 8/21: added social relationship info Release 8/26: added total points

Request Information

URI Parameters

NameDescriptionTypeAdditional information
memberId

integer

Required

Body Parameters

None.

Response Information

Resource Description

MemberSocialProfile
NameDescriptionTypeAdditional information
Id

integer

None.

IsActive

boolean

None.

IsAdmin

boolean

None.

Email

string

None.

FunName

string

None.

FirstName

string

None.

LastName

string

None.

City

string

None.

State

string

None.

Zipcode

string

None.

CountryId

integer

None.

Birthday

date

None.

Phone

string

None.

Bio

string

None.

Charity

string

None.

Timezone

integer

None.

SignupDate

date

None.

AvatarUrl

string

None.

BackgroundUrl

string

None.

Ranking

integer

None.

RankingTier

byte

None.

RankingMovement

integer

None.

TotalPoints

integer

None.

ShowRealName

boolean

None.

IsConnected

boolean

None.

IsPendingConnection

boolean

None.

IsFollowed

boolean

None.

IsFollowing

boolean

None.

Pods

Collection of PodSummaryModel

None.

ConnectionsCount

integer

None.

FollowersCount

integer

None.

FollowingCount

integer

None.

LastWeeksRank

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "isActive": true,
  "isAdmin": true,
  "email": "sample string 4",
  "funName": "sample string 5",
  "firstName": "sample string 6",
  "lastName": "sample string 7",
  "city": "sample string 8",
  "state": "sample string 9",
  "zipcode": "sample string 10",
  "countryId": 1,
  "birthday": "2026-01-13T03:02:13.4959701+00:00",
  "phone": "sample string 11",
  "bio": "sample string 12",
  "charity": "sample string 13",
  "timezone": 1,
  "signupDate": "2026-01-13T03:02:13.4959701+00:00",
  "avatarUrl": "sample string 15",
  "backgroundUrl": "sample string 16",
  "ranking": 17,
  "rankingTier": 64,
  "rankingMovement": 19,
  "totalPoints": 20,
  "showRealName": true,
  "isConnected": true,
  "isPendingConnection": true,
  "isFollowed": true,
  "isFollowing": true,
  "pods": [
    {
      "podMembersCount": 1,
      "id": 2,
      "name": "sample string 3"
    },
    {
      "podMembersCount": 1,
      "id": 2,
      "name": "sample string 3"
    }
  ],
  "connectionsCount": 26,
  "followersCount": 27,
  "followingCount": 28,
  "lastWeeksRank": 36
}

text/html, text/plain

Sample:
{"id":1,"isActive":true,"isAdmin":true,"email":"sample string 4","funName":"sample string 5","firstName":"sample string 6","lastName":"sample string 7","city":"sample string 8","state":"sample string 9","zipcode":"sample string 10","countryId":1,"birthday":"2026-01-13T03:02:13.4959701+00:00","phone":"sample string 11","bio":"sample string 12","charity":"sample string 13","timezone":1,"signupDate":"2026-01-13T03:02:13.4959701+00:00","avatarUrl":"sample string 15","backgroundUrl":"sample string 16","ranking":17,"rankingTier":64,"rankingMovement":19,"totalPoints":20,"showRealName":true,"isConnected":true,"isPendingConnection":true,"isFollowed":true,"isFollowing":true,"pods":[{"podMembersCount":1,"id":2,"name":"sample string 3"},{"podMembersCount":1,"id":2,"name":"sample string 3"}],"connectionsCount":26,"followersCount":27,"followingCount":28,"lastWeeksRank":36}

application/xml, text/xml

Sample:
<MemberSocialProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Last2Left.Services.DTOs">
  <AvatarUrl>sample string 15</AvatarUrl>
  <BackgroundUrl>sample string 16</BackgroundUrl>
  <Bio>sample string 12</Bio>
  <Birthday>2026-01-13T03:02:13.4959701+00:00</Birthday>
  <Charity>sample string 13</Charity>
  <City>sample string 8</City>
  <ConnectionsCount>26</ConnectionsCount>
  <CountryId>1</CountryId>
  <Email>sample string 4</Email>
  <FirstName>sample string 6</FirstName>
  <FollowersCount>27</FollowersCount>
  <FollowingCount>28</FollowingCount>
  <FunName>sample string 5</FunName>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <IsAdmin>true</IsAdmin>
  <IsConnected>true</IsConnected>
  <IsFollowed>true</IsFollowed>
  <IsFollowing>true</IsFollowing>
  <IsPendingConnection>true</IsPendingConnection>
  <LastName>sample string 7</LastName>
  <Phone>sample string 11</Phone>
  <Pods xmlns:d2p1="http://schemas.datacontract.org/2004/07/Last2Left.Services.Models">
    <d2p1:PodSummaryModel>
      <d2p1:Id>2</d2p1:Id>
      <d2p1:Name>sample string 3</d2p1:Name>
      <d2p1:PodMembersCount>1</d2p1:PodMembersCount>
    </d2p1:PodSummaryModel>
    <d2p1:PodSummaryModel>
      <d2p1:Id>2</d2p1:Id>
      <d2p1:Name>sample string 3</d2p1:Name>
      <d2p1:PodMembersCount>1</d2p1:PodMembersCount>
    </d2p1:PodSummaryModel>
  </Pods>
  <Ranking>17</Ranking>
  <RankingMovement>19</RankingMovement>
  <RankingTier>64</RankingTier>
  <ShowRealName>true</ShowRealName>
  <SignupDate>2026-01-13T03:02:13.4959701+00:00</SignupDate>
  <State>sample string 9</State>
  <Timezone>1</Timezone>
  <TotalPoints>20</TotalPoints>
  <Zipcode>sample string 10</Zipcode>
</MemberSocialProfile>