Get entities from Currencies
GET/Currencies
Get entities from Currencies
Request
Query Parameters
$top integer
Show only the first n items
$skip integer
Skip the first n items
$search string
Search items by search phrases
$filter string
Filter items by property values
$count boolean
Include count of items
$orderby string[]
Possible values: [iso
, iso desc
, name
, name desc
, symbol
, symbol desc
, decimalDigits
, decimalDigits desc
, rounding
, rounding desc
, namePlural
, namePlural desc
]
Order items by property values
$select string[]
Possible values: [iso
, name
, symbol
, decimalDigits
, rounding
, namePlural
]
Select properties to be returned
$expand string[]
Possible values: [*
]
Expand related entities
Responses
- 200
- default
Retrieved entities
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
value
object[]
iso string
name string
symbol string
decimalDigits decimal
rounding decimal
namePlural string
{
"value": [
{
"iso": "string",
"name": "string",
"symbol": "string",
"decimalDigits": 0,
"rounding": 0,
"namePlural": "string"
}
]
}
error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
error
object
required
code stringrequired
message stringrequired
target string
details
object[]
code stringrequired
message stringrequired
target string
innererror object
The structure of this object is service-specific
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
{
"code": "string",
"message": "string",
"target": "string"
}
],
"innererror": {}
}
}
Loading...