Create a transfer in the batch group using a previously created recipient account and quote.
For the request body format, see transfer creation. For quote and recipient creation, see quote creation and recipient creation.
Security
UserToken or PersonalToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
Unique identifier you generate for this transfer attempt.
Example:"a]1b2c3d4-e5f6-7890-abcd-ef1234567890"
- Production Environmenthttps://api.wise.com/2026Q3/profiles/{profileId}/batch-groups/{batchGroupId}/transfers
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/profiles/{profileId}/batch-groups/{batchGroupId}/transfers
- UserToken
- PersonalToken
curl -i -X POST \
https://api.wise.com/2026Q3/profiles/12345678/batch-groups/54a6bc09-cef9-49a8-9041-f1f0c654cd88/transfers \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"targetAccount": 67890,
"sourceAccount": 12345,
"quoteUuid": "bd244a95-dcf8-4c31-aac8-bf5e2f3e54c0",
"customerTransactionId": "a]1b2c3d4-e5f6-7890-abcd-ef1234567890",
"details": {
"reference": "to my friend",
"transferPurpose": "verification.transfers.purpose.pay.bills",
"transferPurposeSubTransferPurpose": "verification.sub.transfers.purpose.pay.interpretation.service",
"sourceOfFunds": "verification.source.of.funds.other"
}
}'Transfer created successfully. Returns a transfer object.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
object
Transfer object. See Transfer API reference for full details.
Response
{}