GET api/superadmin/settings/voucher-fees

Request Information

URI Parameters

None.

Body Parameters

None.

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-13T14:57:27.6595935+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-13T14:57:27.6595935+02:00</LastModified>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <VoucherFeeAmount>4</VoucherFeeAmount>
  <VoucherMarkupPercentage>3</VoucherMarkupPercentage>
  <VoucherTaxPercentage>5</VoucherTaxPercentage>
</VoucherFeeSettingsDto>