POST api/v1/clubmembers

Request Information

URI Parameters

None.

Body Parameters

ClubMemberDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

AvailablePoints

integer

None.

TotalPoints

integer

None.

LevelIndex

integer

None.

CustomerId

globally unique identifier

None.

ClubCode

string

None.

ClubLevelCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "634db61a-01af-45dc-a841-e7b518b9a2af",
  "availablePoints": 1,
  "totalPoints": 2,
  "levelIndex": 3,
  "customerId": "cc484fa4-84b4-41e9-b36f-1bb12e37b7c8",
  "clubCode": "sample string 5",
  "clubLevelCode": "sample string 6"
}

application/xml, text/xml

Sample:
<ClubMemberDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
  <AvailablePoints>1</AvailablePoints>
  <ClubCode>sample string 5</ClubCode>
  <ClubLevelCode>sample string 6</ClubLevelCode>
  <CustomerId>cc484fa4-84b4-41e9-b36f-1bb12e37b7c8</CustomerId>
  <Id>634db61a-01af-45dc-a841-e7b518b9a2af</Id>
  <LevelIndex>3</LevelIndex>
  <TotalPoints>2</TotalPoints>
</ClubMemberDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.