GET
/
core
/
currencies
/
GetAll
Get Currency
curl --request GET \
  --url https://dev.api.onekhusa.com/sandbox/v1/core/currencies/GetAll \
  --header 'Authorization: Bearer <token>'
[
  {
    "currencyCode": "MWK",
    "currencyName": "Malawian Kwacha"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer Token, Where accessToken is the access token used to authenticate the request.

Headers

Accept-Language
string
default:en

Preferred language for the response

Response

200 - application/json

Success Response

currencyCode
string
required

A three-letter ISO 4217 code that identifies the currency

Example:

"MWK"

currencyName
string
required

The full name of the currency

Example:

"Malawian Kwacha"