Apply exchange rate for list of combinations

POST /api-v1/currency-exchange/apply

Headers

Body Required

currencyConversions

Responses

POST /api-v1/currency-exchange/apply
curl \
 -X POST http://wyzio.app/api-v1/currency-exchange/apply \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string" \
 -d '[{"convertedAmount":42.0,"currencyFrom":42,"currencyTo":42,"date":"string","requestedAmount":42.0}]'
Request example
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string

# Payload
[
  {
    "convertedAmount": 42.0,
    "currencyFrom": 42,
    "currencyTo": 42,
    "date": "string",
    "requestedAmount": 42.0
  }
]
Response examples (200)
[
  {
    "convertedAmount": 42.0,
    "currencyFrom": 42,
    "currencyTo": 42,
    "date": "string",
    "requestedAmount": 42.0
  }
]