v5
latestOpenAPI 3.1.02026-07-262421791.5 MBbatch-group
Create a batch group
Create a new batch group.
A batch group can hold up to 1000 transfers that will be funded together. After creating the group, add transfers to it, then complete the group to receive pay-in details.
post/v3/profiles/{profileId}/batch-groups
Path parameters
profileIdinteger required
Example:12345678
The ID of the profile to create the batch group for.
Headers
X-External-Correlation-Idstring uuid
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"sourceCurrency": "GBP",
"name": "My batch group"
}Response
Batch group created successfully.
Note that payInDetails is empty for newly created batch groups.
Example response
{
"id": "54a6bc09-cef9-49a8-9041-f1f0c654cd88",
"version": 123,
"name": "My batch group",
"sourceCurrency": "GBP",
"status": "COMPLETED",
"transferIds": [
234,
456
],
"payInDetails": [
{
"type": "bank_transfer",
"reference": "B5323",
"amount": 12504.54,
"currency": "NOK",
"name": "TransferWise Ltd",
"accountNumber": "9910728",
"bankCode": "8301",
"bankAddress": {
"name": "CitiBank Europe Plc",
"firstLine": "Bolette brygge 1",
"postCode": "0252",
"city": "Oslo",
"country": "Norway"
},
"transferWiseAddress": {
"name": "TransferWise Ltd",
"firstLine": "6th Floor, The Tea Building, 56 Shoreditch High Street",
"postCode": "E1 6JJ",
"city": "London",
"country": "United Kingdom"
},
"bban": "83019910728"
}
]
}