POST api/ExchangeRate/SaveUploadedRate
Request Information
URI Parameters
None.
Body Parameters
Collection of ExchangeRateCreateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Country | string |
Required |
|
| CurrencyCode | string |
Required Max length: 3 |
|
| NGNExchangeRate | decimal number |
Required |
|
| USDExchangeRate | decimal number |
Required |
|
| USD20_ROE | decimal number |
None. |
|
| CreatedBy | string |
None. |
|
| UpdatedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Country": "sample string 2",
"CurrencyCode": "sample string 3",
"NGNExchangeRate": 4.0,
"USDExchangeRate": 5.0,
"USD20_ROE": 100.0,
"CreatedBy": "sample string 6",
"UpdatedBy": "sample string 7"
},
{
"Id": 1,
"Country": "sample string 2",
"CurrencyCode": "sample string 3",
"NGNExchangeRate": 4.0,
"USDExchangeRate": 5.0,
"USD20_ROE": 100.0,
"CreatedBy": "sample string 6",
"UpdatedBy": "sample string 7"
}
]
multipart/form-data
Sample:
[{"Id":1,"Country":"sample string 2","CurrencyCode":"sample string 3","NGNExchangeRate":4.0,"USDExchangeRate":5.0,"USD20_ROE":100.0,"CreatedBy":"sample string 6","UpdatedBy":"sample string 7"},{"Id":1,"Country":"sample string 2","CurrencyCode":"sample string 3","NGNExchangeRate":4.0,"USDExchangeRate":5.0,"USD20_ROE":100.0,"CreatedBy":"sample string 6","UpdatedBy":"sample string 7"}]
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, multipart/form-data
Sample:
Sample not available.