Field | Description |
---|---|
id string | Bulk transfer's unique identifier |
item_id string | Identifier of the Bridge item used for this bulk transfer |
sender_account_id string | Sender account |
transfers array | Details of the transfers of the bulk transfer |
status string | Bulk transfer's status |
status_reason | Bulk transfer's status reason: more information about why a bulk failed |
client_reference string | Reference provided by the client |
created_at timestamp | |
updated_at timestamp |
Example bulk transfers resource
{
"id": "1584b63f-265d-41a1-ab27-f23e772a8e9c",
"item_id": 4036595,
"sender_account_id": 11679775,
"transfers": [
{
"id": "212bf748-8991-4467-9483-44066f5e3de8",
"amount": 1500.0,
"label": "Your optional label",
"beneficiary": {
"name": "John Doe",
"iban": "FR54XXXXXXXXXXXXXXXXXXXXQ35"
},
"status": "succeeded",
"client_reference": "3bc40e21-3ea5-4274-9744-c2f984f7072e",
"bank_reference": "123456789",
"created_at": "2020-08-26T09:07:04.000Z",
"updated_at": "2020-08-26T09:07:50.000Z"
},
{
"id": "6375744b-66c1-4bb5-bf64-0e8468c6504b",
"amount": 2500.0,
"beneficiary": {
"name": "John Smith",
"iban": "FR02XXXXXXXXXXXXXXXXXXXXC40"
},
"status": "succeeded",
"created_at": "2020-08-26T09:07:04.000Z",
"updated_at": "2020-08-26T09:07:50.000Z"
},
{
"id": "744ab067-de62-4280-a901-3a733a2b8e43",
"amount": 20999.0,
"beneficiary": {
"name": "Michelle Johnson",
"iban": "FR90XXXXXXXXXXXXXXXXXXXXB25"
},
"status": "failed",
"status_reason": "expired",
"created_at": "2020-08-26T09:07:04.000Z",
"updated_at": "2020-08-26T09:07:50.000Z"
}
],
"status": "succeeded",
"created_at": "2020-08-26T09:07:04.000Z",
"updated_at": "2020-08-26T09:07:50.000Z"
}