getCurrencies

@GET(value = "lookups/currencies")
abstract suspend fun getCurrencies(@Query(value = "locale") locale: String? = null): Response<GetLookupCurrencyListResponseDto>

Supported Currencies This API call allows you to retrieve the list of currencies that we currently support in our system. To call this endpoint, you can use either a client-token or a user-token. Responses:

  • 200: Success

  • 401: Unauthorized. This will occur if you do not supply an access-token to this endpoint, or if you provide an expired or invalid access token.

Return

GetLookupCurrencyListResponseDto

Parameters

locale

Allows you to specify the locale in which the response should be returned. It must be a supported value from the list of locale-codes, which can be obtained by going to `/lookups/locales`. It defaults to the user's locale. (optional)