Read currencies

GET /currencies

Read a list of available currencies within 24SevenOffice accounting module.

Headers

  • Authorization string Required

    Authorization header

Responses

  • Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • code string

      The currency code used in transactions within the 24SevenOffice.

    • rate number

      The exchange rate of the currency.

    Hide response attributes Show response attributes object
    • code string

      The currency code used in transactions within the 24SevenOffice.

    • rate number

      The exchange rate of the currency.

GET /currencies
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/currencies' \
 --header "Authorization: string"
Response examples (200)
[
  {
    "code": "USD",
    "rate": 1.25
  },
  {
    "code": "EUR",
    "rate": 1.12
  },
  {
    "code": "GBP",
    "rate": 1.38
  }
]
Response examples (200)
[
  {
    "code": "USD",
    "rate": 1.25
  },
  {
    "code": "EUR",
    "rate": 1.12
  },
  {
    "code": "GBP",
    "rate": 1.38
  }
]