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": "97b56875-331f-4768-8e01-3a9d49ea99fa",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "6d54a4dc-b285-485b-aec7-abd039b1ce2c",
"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>6d54a4dc-b285-485b-aec7-abd039b1ce2c</CustomerId> <Id>97b56875-331f-4768-8e01-3a9d49ea99fa</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.