setting/currency/get
POST
/setting/currency/getThis returns the list of currencies in the Equotix One account.
Request
Body Params application/json
domain
string
required
The domain you are assigned to authenticate your Equotix One account.
api_key
string
required
The email address assigned to the user account in your Equotix One.
auth_timestamp
integer
required
The unix timestamp used to sign this API request.
auth_signature
string
required
The calculated signature for this API request.
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string"
}
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
error
array[string]
optional
Returns only if there is an error.
currencies
array [object {7}]
optional
The list of currencies.
currency_id
integer
required
The currency ID.
code
string
required
The currency ISO code.
symbol_left
string
required
The currency symbol on the left, if available.
symbol_right
string
required
The currency symbol on the right, if available.
decimal_place
integer
required
The currency decimal place.
value
number
required
The currency conversion value to the main account currency.
date_modified
string
required
The date time currency was last modified.
Example
{
"error": [
"string"
],
"currencies": [
{
"currency_id": 0,
"code": "string",
"symbol_left": "string",
"symbol_right": "string",
"decimal_place": 0,
"value": 0,
"date_modified": "string"
}
]
}
Last modified: 4 months ago