POST api/v1/clubmembers
Request Information
URI Parameters
None.
Body Parameters
ClubMemberDto| Name | Description | Type | Additional 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": "e0104d2a-c67b-433f-a17a-e3e867e40f15",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "ce3fc24b-77fe-4aff-b8bd-2fe3ed19eaef",
"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>ce3fc24b-77fe-4aff-b8bd-2fe3ed19eaef</CustomerId> <Id>e0104d2a-c67b-433f-a17a-e3e867e40f15</Id> <LevelIndex>3</LevelIndex> <TotalPoints>2</TotalPoints> </ClubMemberDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.