GET api/superadmin/settings/company
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CompanySettingsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Id | integer |
None. |
|
| FundingInterest | decimal number |
None. |
|
| WithdrawFeePercentage | decimal number |
None. |
|
| TransactionFeePercentage | decimal number |
None. |
|
| VATPercentage | decimal number |
None. |
|
| MinimumWithdrawAmount | decimal number |
None. |
|
| MaximumWithdrawAmount | decimal number |
None. |
|
| MinimumDepositAmount | decimal number |
None. |
|
| MaximumDepositAmount | decimal number |
None. |
|
| CashbackEnabled | boolean |
None. |
|
| CashbackPercentage | decimal number |
None. |
|
| LoyaltyPointsEnabled | boolean |
None. |
|
| PointsPerRand | decimal number |
None. |
|
| LastModified | date |
None. |
|
| ChangesApplied | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Id": 3,
"FundingInterest": 4.0,
"WithdrawFeePercentage": 5.0,
"TransactionFeePercentage": 6.0,
"VATPercentage": 7.0,
"MinimumWithdrawAmount": 8.0,
"MaximumWithdrawAmount": 9.0,
"MinimumDepositAmount": 10.0,
"MaximumDepositAmount": 11.0,
"CashbackEnabled": true,
"CashbackPercentage": 13.0,
"LoyaltyPointsEnabled": true,
"PointsPerRand": 15.0,
"LastModified": "2026-03-26T03:51:14.9345927+02:00",
"ChangesApplied": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<CompanySettingsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models">
<CashbackEnabled>true</CashbackEnabled>
<CashbackPercentage>13</CashbackPercentage>
<ChangesApplied xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ChangesApplied>
<FundingInterest>4</FundingInterest>
<Id>3</Id>
<LastModified>2026-03-26T03:51:14.9345927+02:00</LastModified>
<LoyaltyPointsEnabled>true</LoyaltyPointsEnabled>
<MaximumDepositAmount>11</MaximumDepositAmount>
<MaximumWithdrawAmount>9</MaximumWithdrawAmount>
<Message>sample string 2</Message>
<MinimumDepositAmount>10</MinimumDepositAmount>
<MinimumWithdrawAmount>8</MinimumWithdrawAmount>
<PointsPerRand>15</PointsPerRand>
<Success>true</Success>
<TransactionFeePercentage>6</TransactionFeePercentage>
<VATPercentage>7</VATPercentage>
<WithdrawFeePercentage>5</WithdrawFeePercentage>
</CompanySettingsDto>