POST api/v1/clublevels/{code}/config/directmoneyexchange
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
Required |
Body Parameters
DirectMoneyExchangeConfig| Name | Description | Type | Additional information |
|---|---|---|---|
| IsActiveDirectMoneyExchange | boolean |
None. |
|
| RateOfConversionFromPointsToMoney | decimal number |
None. |
|
| Increment | integer |
None. |
|
| MinMoneyExchange | integer |
None. |
|
| ValidityInDays | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"isActiveDirectMoneyExchange": true,
"rateOfConversionFromPointsToMoney": 2.0,
"increment": 3,
"minMoneyExchange": 4,
"validityInDays": 5
}
application/xml, text/xml
Sample:
<DirectMoneyExchangeConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Increment>3</Increment> <IsActiveDirectMoneyExchange>true</IsActiveDirectMoneyExchange> <MinMoneyExchange>4</MinMoneyExchange> <RateOfConversionFromPointsToMoney>2</RateOfConversionFromPointsToMoney> <ValidityInDays>5</ValidityInDays> </DirectMoneyExchangeConfig>
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.