POST api/v1/clubmembers

Request Information

URI Parameters

None.

Body Parameters

ClubMemberDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

AvailablePoints

decimal number

None.

TotalPoints

decimal number

None.

LevelIndex

decimal number

None.

CustomerId

globally unique identifier

None.

ClubCode

string

None.

ClubLevelCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "810fa3d1-7cd2-4a95-907d-966ce2db4d3e",
  "availablePoints": 1.0,
  "totalPoints": 2.0,
  "levelIndex": 3.0,
  "customerId": "25c10986-660e-4284-aee8-a7e8163d4142",
  "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>25c10986-660e-4284-aee8-a7e8163d4142</CustomerId>
  <Id>810fa3d1-7cd2-4a95-907d-966ce2db4d3e</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.