Steps 3-6: Exchange Rates
This step only applies to Source PSPs that wish to use a third-party FX Provider. Source PSPs that hold funds in an account as a Settlement Access Provider in the Destination Country can define their own FX rate. See Payment setup for PSPs who provide their own FX for detail.
As shown in Step 2, the Sender can choose to set EITHER:
the amount to send in their own Source Currency. This is the
DebtorAccountAmount
which will be debited from the Sender/Debtor's account, defined in the Source Currency, ORthe amount the Recipient should receive, in the Recipient's own Destination Currency. This is the
CreditorAccountAmount
which will be credited to the Recipient/Creditor's account, defined in the Destination Currency
The quote request process is slightly different depending on which option the Sender chose.
Step 3: Source PSP prepares quote request to Nexus
The Source PSP should use the
GET /quotes
API operation to retrieve quotes. This API accepts the following values:Source Country
Source Currency
Destination Country
Destination Currency
Amount
Amount Currency
(ie the 3-letter code for the Source Currency or Destination Currency)
If the Sender defined the
DebtorAccountAmount
(ie amount to send), then the Source PSP should set the following values in the quote request:Amount Currency
=Source Currency
Amount
=DebtorAccountAmount
minusSource PSP Deducted Fee
If the Source PSP charges a Source PSP Deducted Fee, this fee is deducted from the DebtorAccountAmount
before any funds are transfered to the FX Provider. Therefore the Source PSP should request the quote amount after deducting its own fee.
Alternatively, if the Sender defined the
CreditorAccountAmount
(ie amount the recipient should receive), then the Source PSP should set the following values in the quote request:Amount Currency
=Destination Currency
Amount
=CreditorAccountAmount
In this case, the Source PSP should request the amount defined by the Sender ie the CreditorAccountAmount. This is the exact amount that should be credited to the Recipient/Creditor account.
The Source PSP sends a quote request to the
GET /quotes
API (see APIs).
Step 4: Nexus generates quotes
Nexus will retrieve the basic rates for the currency and country pair selected, from those FXPs that have confirmed they are happy to provide FX to this Source PSP
For each rate, Nexus will:
automatically apply any improvements offered by that FXP based on size of the transaction or the PSP requesting the rate. (See Improving rates for larger transactions and Improving rates for specific PSPs for more detail.)
If the Sender defined the
DebtorAccountAmount
, the Source PSP will have subtracted their own Destination PSP Deducted Fee and then requested a quote for the net amount - theInterbank Settlement Amount
in the Source Currency. Nexus will multiply this amount by the (possibly improved) exchange rate to get the amount that will be transferred from the Destination SAP to the Destination PSP (theInterbank Settlement Amount
in Destination Currency).Nexus will also calculate the
Destination PSP Deducted Fee
and include this in the quote response.Nexus will calculate the amount that will be credited to the Recipient's account after the
Destination PSP (Deducted) Fee
has been deducted. This is included the quote response asCreditorAccountAmount
.
Alternatively, if the Sender defined the
CreditorAccountAmount
, Nexus will:work backwards from this amount to calculate the
Destination PSP (Deducted) Fee
.add the
CreditorAccountAmount
andDestination PSP (Deducted) Fee
together, and divide the result by the (possibly improved) exchange rate to identify how much the Source PSP needs to transfer to the FXP. This amount will be included in the Quote response asInterbank Settlement Amount
(in the Source Currency).
Nexus will check that the
Interbank Settlement Amount
(in the Source Currency) andCreditorAccountAmount
(at the given rate) do not exceed theMaxAmount
values in either the Source or Destination IPSWhere the Source Currency Amount or Destination Currency Amount provided by the Sender exceeds the
MaxAmt
of the respective IPS, Nexus will apply whichever cap is the smaller at the current rate, and include a flagcappedToMaxAmount = true
in the quote response, which shows that the amount exceeded the cap. If this value is true, theInterbank Settlement Amount
shown is the maximum that can successfully be sent through both IPSs at the current exchange rate.
The GET /quotes
API must be called again every time the Sender changes either the Source Currency Amount or Destination Currency Amount, since changes in the transaction value may (a) breach the maximum transaction value or (b) qualify for different size-based improvements to the rate.
Step 5: Source PSP selects the preferred quote
The Source PSP selects the quote that the PSP wishes to use (from any FXP with which is has already onboarded). This could be the best quote available or a quote from a preferred FX Provider.
The PSP does not show the list of quotes to the Sender.
Step 6: Source PSP displays the exchange rate and amounts to the Sender
Now the exchange rate and Source Currency Amount and Destination Currency Amount can be shown to the Sender:
If the Sender defined the
DebtorAccountAmount
(ie the amount they wish to send, in their own currency), the amount fields should be updated as follows:DebtorAccountAmount
= the DebtorAccountAmount originally defined by the Sender (ie no change)CreditorAccountAmount
= theCreditorAccountAmount
which was calculated by Nexus and provided in the Quote response;
If the Sender defines the
CreditorAccountAmount
(ie the amount that the Sender wishes the Recipient to receive),DebtorAccountAmount
= theInterbank Settlement Amount
(in Source Currency) provided in the quote response plus the Source PSP (Deducted) FeeCreditorAccountAmount
= theCreditorAccountAmount
which was originally defined by the Sender. (This will be the same as theCreditorAccountAmount
included the quote response.)
The Source PSP should check the quote response to confirm whether the amount originally requested by the Sender exceeded the maximum amount in either the Source IPS or Destination IPS.
If so, the Source PSP should update the app screen to show the new maximum value that can be sent.
The effective exchange rate applied should also be shown to the Sender
Last updated