GET api/FpCurrency/{id}
Fast method to get Currency by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiFpCurrencyOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| short_name | string |
None. |
|
| name | string |
None. |
|
| is_default | boolean |
None. |
|
| outer_id | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"short_name": "sample string 2",
"name": "sample string 3",
"is_default": true,
"outer_id": "sample string 5"
}
application/xml, text/xml
Sample:
<ApiFpCurrencyOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <id>1</id> <short_name>sample string 2</short_name> <name>sample string 3</name> <is_default>true</is_default> <outer_id>sample string 5</outer_id> </ApiFpCurrencyOutput>