PUT api/Currency/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Currency| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrencyId | integer |
None. |
|
| CurrencyName | string |
None. |
|
| CurrencyShortCode | string |
None. |
|
| CurrencySymbol | string |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CurrencyId": 1,
"CurrencyName": "sample string 2",
"CurrencyShortCode": "sample string 3",
"CurrencySymbol": "sample string 4",
"CreatedDate": "2025-12-08T01:55:13.0175878+05:30",
"CreatedBy": "sample string 6"
}
application/xml, text/xml
Sample:
<Currency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities"> <CreatedBy>sample string 6</CreatedBy> <CreatedDate>2025-12-08T01:55:13.0175878+05:30</CreatedDate> <CurrencyId>1</CurrencyId> <CurrencyName>sample string 2</CurrencyName> <CurrencyShortCode>sample string 3</CurrencyShortCode> <CurrencySymbol>sample string 4</CurrencySymbol> </Currency>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |