POST api/v1/membersdiscounts
Request Information
URI Parameters
None.
Body Parameters
MembersDiscountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ClubLevelCode | string |
None. |
|
| LowerRange | integer |
None. |
|
| UpperRange | integer |
None. |
|
| Discount | decimal number |
None. |
|
| Order | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "ce2e0991-7607-4703-916f-6dfb7118d064",
"clubLevelCode": "sample string 1",
"lowerRange": 2,
"upperRange": 3,
"discount": 4.1,
"order": 5
}
application/xml, text/xml
Sample:
<MembersDiscountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <ClubLevelCode>sample string 1</ClubLevelCode> <Discount>4.1</Discount> <Id>ce2e0991-7607-4703-916f-6dfb7118d064</Id> <LowerRange>2</LowerRange> <Order>5</Order> <UpperRange>3</UpperRange> </MembersDiscountDto>
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.