POST the same recipient account payload that you will POST to /v1/accounts.
Use this endpoint after setting any field that has refreshRequirementsOnChange=true in the GET response, to discover any additional required fields.
See the GET endpoint for a full overview of how the account requirements flow works.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Recipient account type (currency/route-specific), e.g. sort_code, iban, email.
Personal or business profile ID of the sender. It is highly advised to pass the business profile ID in this field if your business account is managed by multiple users, so that the recipient can be accessed by all users authorized on the business account.
Indicates whether the recipient account is owned by the profile owner (self-transfer), such as a user sending money to their own account in another country or currency. Set to true for self-transfers. We strongly recommend setting this field, as distinguishing self-transfers from third-party transfers improves routing and processing efficiency.
- Production Environmenthttps://api.wise.com/v1/quotes/{quoteId}/account-requirements
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/quotes/{quoteId}/account-requirements
curl -i -X POST \
'https://api.wise.com/v1/quotes/{quoteId}/account-requirements?originatorLegalEntityType=BUSINESS' \
-H 'Accept-Minor-Version: 1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"currency": "GBP",
"type": "sort_code",
"profile": 30000000,
"accountHolderName": "John Doe",
"ownedByCustomer": true,
"details": {
"legalType": "PRIVATE",
"sortCode": "040075",
"accountNumber": "37778842",
"dateOfBirth": "1961-01-01"
}
}'Updated account requirements based on provided data.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Requirement group identifier (route/payout-method specific).
[ { "type": "south_korean_paygate", "title": "PayGate", "usageInfo": null, "fields": [ { … }, { … }, { … }, { … }, { … }, { … } ] } ]