When generating a quote before a recipient, you must update the quote with the recipient sourceAccount value, as the recipient details may impact the quote properties like available payment options, price, and estimated delivery time. This is because sending some currencies to certain destinations costs a different amount based on the payment networks used (for example, it's more expensive to send USD to a country outside the USA using international payment networks, or send CAD over the Interac network).
When updating a quote, the payOut field may change to denote the payment option you should select when sending to the recipient. For example, sending USD to a swift_code recipient or CAD to an interac recipient changes payOut to SWIFT or INTERAC respectively. This field defaults to BANK_TRANSFER so it can be used in all cases to help select the correct paymentOption and hence show the correct pricing.
If pricing changes after updating a quote for a recipient, be sure to inform your customer before confirming the transfer.
To provide more transparency for fees charged for SWIFT recipients, consider setting the payOut field to SWIFT_OUR. This ensures the recipient receives the full target amount.
transferNature is a required field for transfers to or from BRL. It also impacts the fees charged on the quote, specifically the IOF.
IOF is determined based on the transfer nature, sender information, and recipient information. The default IOF is included in a quote until all relevant information has been included.
Omitting transferNature will not prevent the transfer from being created or even funded. However, when attempting to process the transfer, it will be blocked and the money will be refunded to the sender.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
ID of transfer recipient, found in the create recipient response.
Optional. Preferred payout method.
Default value is BANK_TRANSFER.
Examples of other accepted values include BALANCE, SWIFT, SWIFT_OUR, ALIPAY, and INTERAC.
- Production Environmenthttps://api.wise.com/2026Q3/profiles/{profileId}/quotes/{quoteId}
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/profiles/{profileId}/quotes/{quoteId}
curl -i -X PATCH \
https://api.wise.com/2026Q3/profiles/101/quotes/11144c35-9fe8-4c32-b7fd-d05c2a7734bf \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/merge-patch+json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"targetAccount": 12345,
"payOut": "SWIFT_OUR",
"paymentMetadata": {
"transferNature": "MOVING_MONEY_BETWEEN_OWN_ACCOUNTS"
},
"pricingConfiguration": {
"fee": {
"type": "OVERRIDE",
"variable": 0.011,
"fixed": 15.42
}
}
}'Returns a quote object.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Mechanism Wise uses to deliver the transfer. Provided for information purposes.
Date and time the locked rate expires.
Indicates whether guaranteed target amount is allowed.
Indicates whether the quote was created as source or target.
{ "id": "11144c35-9fe8-4c32-b7fd-d05c2a7734bf", "sourceCurrency": "GBP", "targetCurrency": "USD", "sourceAmount": 100, "targetAmount": 129.24, "payOut": "BANK_TRANSFER", "preferredPayIn": "BANK_TRANSFER", "rate": 1.30445, "createdTime": "2019-04-05T13:18:58Z", "user": 55, "profile": 101, "rateType": "FIXED", "rateExpirationTime": "2019-04-08T13:18:57Z", "guaranteedTargetAmountAllowed": true, "targetAmountAllowed": true, "guaranteedTargetAmount": false, "providedAmountType": "SOURCE", "pricingConfiguration": { "fee": { "type": "OVERRIDE", "variable": 0.011, "fixed": 15.42 } }, "paymentOptions": [ { "disabled": false, "estimatedDelivery": "2019-04-08T12:30:00Z", "formattedEstimatedDelivery": "by Apr 8", "estimatedDeliveryDelays": [ … ], "fee": { … }, "price": { … }, "sourceAmount": 100, "targetAmount": 129.24, "sourceCurrency": "GBP", "targetCurrency": "USD", "payIn": "BANK_TRANSFER", "payOut": "BANK_TRANSFER", "allowedProfileTypes": [ … ], "payInProduct": "CHEAP", "feePercentage": 0.0092, "disabledReason": { … } } ], "status": "PENDING", "expirationTime": "2019-04-05T13:48:58Z", "notices": [ { "text": "You can have a maximum of 3 open transfers with a guaranteed rate. After that, they'll be transferred using the live rate. Complete or cancel your other transfers to regain the use of guaranteed rate.", "link": null, "type": "WARNING" } ] }