GET api/v1/clubmembers/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

SingleResultResponseOfClubMemberDto
NameDescriptionTypeAdditional information
Meta

MetaSingleResult

None.

Notifications

None.

Response Formats

application/json, text/json

Sample:
{
  "meta": {},
  "notifications": [
    {},
    {}
  ],
  "result": {
    "id": "026bd9a2-fc77-40cc-bba0-782e3fc5a753",
    "availablePoints": 1.0,
    "totalPoints": 2.0,
    "levelIndex": 3.0,
    "customerId": "5a52a568-132a-4af7-b1d8-bd29ee8f7009",
    "clubCode": "sample string 5",
    "clubLevelCode": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<SingleResultResponseOfClubMemberDtoaM_S85dVU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.Response">
  <Meta />
  <Notifications>
    <Notification />
    <Notification />
  </Notifications>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/Domain.Dtos">
    <d2p1:AvailablePoints>1</d2p1:AvailablePoints>
    <d2p1:ClubCode>sample string 5</d2p1:ClubCode>
    <d2p1:ClubLevelCode>sample string 6</d2p1:ClubLevelCode>
    <d2p1:CustomerId>5a52a568-132a-4af7-b1d8-bd29ee8f7009</d2p1:CustomerId>
    <d2p1:Id>026bd9a2-fc77-40cc-bba0-782e3fc5a753</d2p1:Id>
    <d2p1:LevelIndex>3</d2p1:LevelIndex>
    <d2p1:TotalPoints>2</d2p1:TotalPoints>
  </Result>
</SingleResultResponseOfClubMemberDtoaM_S85dVU>