POST api/v1/membersdiscounts
Request Information
URI Parameters
None.
Body Parameters
MembersDiscountDtoName | 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": "48053014-23f6-4f04-9e2e-a686667bcc89", "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>48053014-23f6-4f04-9e2e-a686667bcc89</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.