Adyen-for-platform icon

Fix the cost of goods in the settlement currency

Learn how to convert the currency of a payment when the cost of the goods is fixed in the settlement currency

Limited availability
Currency conversion in currently in pilot phase. Some of the processes and documentation may change as the feature evolves. If you are interested in piloting currency conversion or have any feedback, reach out to your Adyen contact.


When you fix the cost of the goods in the settlement currency, your user always receives the same, fixed amount in their currency of choice (the settlement currency). The amount the customer pays in the processing currency is not fixed and depends on the prevailing exchange rate and Adyen's conversion markup.

How it works

If the cost of the goods in the settlement currency (the currency your user receives) is fixed:

  1. You calculate the amount the customer must pay in the processing currency, using either the Foreign Exchange API or the Exchange Rate Report.
  2. You make a POST /payments request, specifying the cost of the goods in both currencies.
  3. When Adyen receives the request, we debit the customer and credit your user in their respective currencies.

Requirements

Requirement Description
Integration type You must have an Adyen online payments integration and a checkout UI.
API credentials You must have credentials for the following APIs:
API credential roles To use the Foreign Exchange API, make sure you have the following role:
  • Balance Platform fx rates and conversions role
Customer Area roles To use the Exchange Rate Report, make sure that you have at least one of the following roles
  • Merchant report
  • Merchant financial
  • Merchant admin
Webhooks Ensure that your server can receive and accept standard webhooks.
Subscribe to any of the following webhooks:
Capabilities Make sure that your account holders have the following capabilities:
  • receivePayments
  • receiveFromPlatformPayments
  • sendToTransferInstrument
Setup steps Before you begin:

Calculate the amount in the processing currency

To calculate the exact amount the customer must pay in their currency of choice (the processing currency), you have two options:

  • Make a POST /rates/calculate request using the Foreign Exchange API to get the exact payment amount in the processing currency.
  • Use our Exchange Rate Report to manually calculate the exact payment amount in the processing currency.
  1. Make sure that you have at least one of the following user roles:

    • Merchant report
    • Merchant financial
    • Merchant admin
  2. Configure an additional column for the settlement exchange rate in the Exchange Rate Report:

    1. Log in to your Customer Area, and go to Settings > Report columns.
    2. Find the Exchange Rate Report and select Configure.
    3. Add the column Exchange rate (platform Settlement), then select Save configuration.
  3. Get the exchange rates for the day from the Exchange Rate Report. To do this:

    1. Log in to your Customer Area, and go to Reports > Exchange rate.
    2. Select Manage report to generate the Exchange Rate Report for the day, or to enable automatic generation. Once generated, download the report.
    3. In the report, under the column Exchange rate (platform Settlement), find the rate to convert the settlement currency to the processing currency.

    The rates found in this report already include the conversion markup, which does not need to be added separately.

  4. Use the following formula to calculate the cost of the goods in the processing currency, which is the amount the customer must pay:

    • The cost of goods in the processing currency =
      The cost of goods in the settlement currency × The exchange rate to convert the settlement currency to the processing currency

    For example, your user sells goods worth CZK 1000.00 to a customer who pays in PLN. Here:

    • The processing currency is PLN and the settlement currency is CZK.
    • The cost of the goods is fixed in CZK (the settlement currency).
    • You must calculate the cost of the goods in PLN (the processing currency). This is the amount the customer must pay.

    To calculate the cost of the goods in the processing currency, use the prevailing exchange rate found in the Exchange Rate Report.

    In this example, the cost of the goods in the settlement currency is CZK 1000.00. According to the Exchange Rate Report, these are exchange rates for the day:

    Base Currency Target Currency Exchange rate (platform Settlement)
    CZK PLN 0.20174
    PLN CZK 5.07655

    Based on this table:

    • The exchange rate to convert CZK to PLN is 0.20174
    • The exchange rate to convert PLN to CZK is 5.07655

    Because these exchange rates include a conversion markup, they cannot be used interchangeably. For example:
    (PLN to CZK exchange rate) ≠ 1 ÷ (CZK to PLN exchange rate)

    For your user to receive exactly exactly CZK 1000.00, use the following formula to calculate the amount the customer needs to pay in PLN so that your user receives exactly CZK 1000.00:

    (Cost of goods in CZK) × (Exchange rate to convert CZK to PLN) = (Cost of goods in PLN)

    In our example:
    CZK 1000.00 × 0.20174 = PLN 201.74

    The customer must pay PLN 201.74 in order for your user to receive CZK 1000.00.


Send a payment request with the calculated amount

  1. Make sure that you have the API key for the Checkout API. Your credential has the format ws@Company.[YourCompanyAccount].

  2. Send a POST /payments, /sessions, or /payments/{paymentPspReference}/captures request, specifying the following fields for the currency conversion:

    Parameter -white_check_mark- Description Example
    amount.value -white_check_mark- The cost of the goods in the processing currency, calculated in step 1. amount.value: 20174
    amount.currency -white_check_mark- The currency in which the customer pays. amount.currency: "PLN"
    splits.amount.value -white_check_mark- The cost of the goods in the settlement currency. In case of multiple splits, the sum of the split amounts in the splits array must equal the cost of the goods in the settlement currency. Any mismatch is booked to the balance account you specify in the split item with type Remainder. splits.amount.value: 100000
    splits.amount.currency -white_check_mark- The settlement currency.
    This is the currency in which your user receives the funds.
    splits.amount.currency: "CZK"
    splits.type -white_check_mark- The type of the split item. We recommend to always add a split item for the Remainder and the transaction fees. split.type: BalanceAccount
    split.type: PaymentFee
    split.type: Remainder
    Payment request with currency conversion
    Expand view
    Copy link to code block
    Copy code
    Copy code
    curl https://checkout-test.adyen.com/checkout/v71/payments \
    -H 'x-api-key: ADYEN_API_KEY' \
    -H 'content-type: application/json' \
    -X POST \
    -d '{
    "paymentMethod": {
    "type": "scheme",
    "number": "4111111111111111",
    "cvc": "737",
    "expiryMonth": "03",
    "expiryYear": "2030",
    "holderName": "John Doe"
    },
    "billingAddress": {
    "city":"London",
    "country":"GB",
    "houseNumberOrName":"10",
    "postalCode":"SW1A 2AA",
    "street":"Downing Street"
    },
    "amount": {
    "value": 20174,
    "currency": "PLN"
    },
    "reference": "YOUR_PAYMENT_REFERENCE",
    "merchantAccount": "YOUR_MERCHANT_ACCOUNT",
    "splits": [
    {
    "type": "BalanceAccount",
    "account": "BA00000000000000000000001",
    "amount": {
    "currency": "CZK",
    "value": 100000
    },
    "reference": "YOUR_SPLIT_REFERENCE_1",
    "description": "YOUR_SPLIT_DESCRIPTION_1"
    },
    {
    "type": "Remainder",
    "account": "BA00000000000000000000001",
    "reference": "YOUR_REMAINDER_REFERENCE",
    "description": "YOUR_REMAINDER_DESCRIPTION"
    },
    {
    "type": "PaymentFee",
    "account": "BA00000000000000000000001",
    "reference": "YOUR_PAYMENT-FEE_REFERENCE",
    "description": "YOUR_PAYMENT-FEE_DESCRIPTION"
    }
    ]
    }'


  3. You receive the following response:

    Response
    Expand view
    Copy link to code block
    Copy code
    Copy code
    {
    ...
    "pspReference":"LVP53Z9PQGNG5S82",
    "resultCode":"Authorised",
    "amount":{
    "currency":"PLN",
    "value":20174
    },
    "merchantReference":"YOUR_PAYMENT_REFERENCE",
    "paymentMethod":{
    "brand":"mc",
    "type":"scheme"
    }
    }

The splits are guaranteed, and the payment is booked according to the data you provide in the splits array. Any mismatch or miscalculation is booked to the balance account you specify in the split item with type Remainder. You can reconcile these mismatches per transaction using the Balance Platform Accounting Report.