PUT api/superadmin/settings/voucher-fees

Request Information

URI Parameters

None.

Body Parameters

UpdateVoucherFeesApiRequest
NameDescriptionTypeAdditional information
VoucherMarkupPercentage

decimal number

None.

VoucherFeeAmount

decimal number

None.

VoucherTaxPercentage

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "VoucherMarkupPercentage": 1.0,
  "VoucherFeeAmount": 1.0,
  "VoucherTaxPercentage": 1.0
}

application/xml, text/xml

Sample:
<UpdateVoucherFeesApiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models">
  <VoucherFeeAmount>1</VoucherFeeAmount>
  <VoucherMarkupPercentage>1</VoucherMarkupPercentage>
  <VoucherTaxPercentage>1</VoucherTaxPercentage>
</UpdateVoucherFeesApiRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UpdateVoucherFeesApiRequest'.

Response Information

Resource Description

VoucherFeeSettingsDto
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

VoucherMarkupPercentage

decimal number

None.

VoucherFeeAmount

decimal number

None.

VoucherTaxPercentage

decimal number

None.

LastModified

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "VoucherMarkupPercentage": 3.0,
  "VoucherFeeAmount": 4.0,
  "VoucherTaxPercentage": 5.0,
  "LastModified": "2026-04-13T12:32:58.2661755+02:00"
}

application/xml, text/xml

Sample:
<VoucherFeeSettingsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models">
  <LastModified>2026-04-13T12:32:58.2661755+02:00</LastModified>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <VoucherFeeAmount>4</VoucherFeeAmount>
  <VoucherMarkupPercentage>3</VoucherMarkupPercentage>
  <VoucherTaxPercentage>5</VoucherTaxPercentage>
</VoucherFeeSettingsDto>