Draft
Returns the system currency configuration
Method used: GET
Endpoint: /api/gfin/v1/currencies
Json Object
Attribute | Type | Description |
---|---|---|
currency | Character | Currency number |
decimals | Numeric | Currency's decimal places - MV_CENT |
symbol | Character | Currency symbol - MV_SIMB |
...
Example:
response
...
Bloco de código | ||||||
---|---|---|---|---|---|---|
|
{
"currencies": |
...
[
|
...
{
"currency": "1",
"decimals": 2
"symbol": "BRL"
|
...
},
|
...
{
"currency": "2",
"decimals": 2
"symbol": "USD"
|
...
},
|
...
{
"currency": "3",
"decimals": 2
"symbol": "UFIR"
\},
\{
"currency": "4",
"decimals": 2
"symbol": "EUR"
|
...
},
|
...
{
"currency": "5",
"decimals": 2
"symbol": "JPY"
|
...
}
|
...
]
|
...
} |