getSystemCurrencies

Operation Id:
system/currencies/get [Official Documentaction]
Methods

  • symbol String
  • date String
Examples

This function retrieves the currency symbol for the Euro.

const result = await idosellRequest.getSystemCurrencies
	.symbol("EUR")
	.exec()

This function retrieves the system currencies available on the specified date.

const result = await idosellRequest.getSystemCurrencies
	.date("2023-01-01")
	.exec()