POST api/SettingCurrency/SaveCurrency
Request Information
URI Parameters
None.
Body Parameters
SettingsCurrencyVM| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CurrencySymbol | string |
None. |
|
| CountryCode | string |
None. |
|
| ExchangeRate | decimal number |
None. |
|
| isBaseCurrency | integer |
None. |
|
| Notes | string |
None. |
|
| Active | integer |
None. |
|
| ModifiedOn | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"CurrencySymbol": "sample string 2",
"CountryCode": "sample string 3",
"ExchangeRate": 1.1,
"isBaseCurrency": 1,
"Notes": "sample string 4",
"Active": 1,
"ModifiedOn": "2025-12-17T06:12:25.9361652-06:00"
}
application/xml, text/xml
Sample:
<SettingsCurrencyVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP_BL.ViewModels"> <Active>1</Active> <CountryCode>sample string 3</CountryCode> <CurrencySymbol>sample string 2</CurrencySymbol> <ExchangeRate>1.1</ExchangeRate> <ID>1</ID> <ModifiedOn>2025-12-17T06:12:25.9361652-06:00</ModifiedOn> <Notes>sample string 4</Notes> <isBaseCurrency>1</isBaseCurrency> </SettingsCurrencyVM>
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.