GET api/mrp/currency?currencyId={currencyId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| currencyId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Currency| Name | Description | Type | Additional information |
|---|---|---|---|
| currencyId | integer |
None. |
|
| currencyShortName | string |
Required String length: inclusive between 0 and 10 |
|
| currencyName | string |
String length: inclusive between 0 and 100 |
|
| currencyRemoveStatus | boolean |
None. |
|
| currencyCreateDate | date |
None. |
|
| currencyUpdateDate | date |
None. |
|
| currencyUpdateBy | integer |
None. |
|
| currencyCreateBy | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"currencyId": 1,
"currencyShortName": "sample string 2",
"currencyName": "sample string 3",
"currencyRemoveStatus": true,
"currencyCreateDate": "2026-04-07T18:07:04.6235997+07:00",
"currencyUpdateDate": "2026-04-07T18:07:04.6235997+07:00",
"currencyUpdateBy": 1,
"currencyCreateBy": 1
}
application/xml, text/xml
Sample:
<Currency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Entity"> <currencyCreateBy>1</currencyCreateBy> <currencyCreateDate>2026-04-07T18:07:04.6235997+07:00</currencyCreateDate> <currencyId>1</currencyId> <currencyName>sample string 3</currencyName> <currencyRemoveStatus>true</currencyRemoveStatus> <currencyShortName>sample string 2</currencyShortName> <currencyUpdateBy>1</currencyUpdateBy> <currencyUpdateDate>2026-04-07T18:07:04.6235997+07:00</currencyUpdateDate> </Currency>