currencies
List Currencies
Retrieve a list of Currency objects.
You can use query parameters to filter, sort, and paginate the results.
get/billing/org/v1/currencies
Query parameters
currency_char_codestring[]
Filter by currency char code (e.g. USD, EUR). Can be multiple.
Returns currencies with the specified char code.
Examples:
- ¤cy_char_code=USD
- ¤cy_char_codeEUR¤cy_char_codeUSD
Available values:
- EUR - Euro
- USD - US Dollar
currency_idstring[]
Filter by currency ID. Can be multiple.
Returns currencies with the specified ID.
Examples:
- ¤cy_id=1
- ¤cy_id=1¤cy_id=2
Available values:
- 1 - US Dollar
- 2 - Euro
limitinteger
Number of results to return per page. Maximum is 100.
name_enstring
offsetinteger
The initial index from which to return the results.
orderingstring[]
Ordering of the results.
Default sort order is ascending. Put - before value for descending sort order: -id.
For sorting by multiple parameters write them as comma separated string: -client_id,id.
- char_code - Char code
- -char_code - Char code (descending)
- number_code - Number code
- -number_code - Number code (descending)
- name_en - Name en
- -name_en - Name en (descending)
Response
Request successful.
Example response
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}