Step 1: list all transaction activity
Get a list of all the transactions that have occurred on your account in standard JSON payload format. Note that in sandbox, orders are excluded from the results.
info
There are a number of additional parameters available for you to filter your results. For more information, see the API reference.
In this example, we're retrieving a list of all transactions without adding any filters.
SandboxProduction
curl -i -X GET \
'https://api-sandbox.equalsmoney.com/v2/activity/{accountId}' \
-H 'Authorization: ApiKey {apiKey}'
curl -i -X GET \
'https://api.equalsmoney.com/v2/activity/{accountId}' \
-H 'Authorization: ApiKey {apiKey}'
If your request is successful, you'll receive a 200
response containing a list of transactions. These are ordered chronologically by creation date, with the most recent transaction appearing first.
{
"count": 6,
"limit": 100,
"offset": 0,
"rows": [
{
"resourceType": "box",
"id": "6453e570-211c-4419-9db8-0e9dcf61d390",
"accountId": "F12345",
"transactionGroupId": "a4ae697e-7bbf-4857-906f-deb1b49d565a",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-23T17:55:41.000Z",
"updatedAt": "2023-11-23T17:55:41.000Z",
"transactionGroup": {
"id": "a4ae697e-7bbf-4857-906f-deb1b49d565a",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "0cbcee03-ca47-4437-a5b9-433d6914b476",
"budgetName": "Account balance",
"createdAt": "2023-11-23T17:55:41.000Z",
"updatedAt": "2023-11-23T17:55:41.000Z"
},
"transactionBox": {
"id": "5a63d758-da59-4a90-a809-45be9533a287",
"transactionId": "6453e570-211c-4419-9db8-0e9dcf61d390",
"transactionBoxableId": "6453e570-211c-4419-9db8-0e9dcf61d390",
"boxId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"type": "credit",
"amount": 5,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "",
"creditDebitIndicator": "Credit",
"debitId": null,
"creditId": 495,
"boxTransactionId": 1562,
"thirdPartyReference": "",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "473",
"affectsLedgerBalance": true,
"runningBalance": "405.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-23T17:50:37.000Z",
"transactionBoxableType": "transaction",
"orderId": null,
"eventSource": "PaaS",
"createdAt": "2023-11-23T17:55:41.000Z",
"updatedAt": "2023-11-23T17:55:41.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "cc47f828-ce62-4def-9cba-6b6d92eaa0b9",
"transactionBoxId": "5a63d758-da59-4a90-a809-45be9533a287",
"ownerId": null,
"accountId": null,
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "00000000000000",
"name": "Sonja Stark",
"address": "300 Long Avenue, Manchester, M260DG",
"institutionName": null,
"institutionAddress": null,
"institutionBic": null
},
"transactionCreditorAccount": {
"id": "2108c5e4-72ac-4545-88fe-dcca015fcc0b",
"transactionBoxId": "5a63d758-da59-4a90-a809-45be9533a287",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "Rodolfo Marks"
}
}
},
{
"resourceType": "box",
"id": "02084ad4-67f7-422e-9da1-0292c8f06df9",
"accountId": "F12345",
"transactionGroupId": "637f63f2-b639-4506-8eab-8761d0f1e58b",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-15T13:58:58.000Z",
"updatedAt": "2023-11-15T13:58:58.000Z",
"transactionGroup": {
"id": "637f63f2-b639-4506-8eab-8761d0f1e58b",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "0cbcee03-ca47-4437-a5b9-433d6914b476",
"budgetName": "Account balance",
"createdAt": "2023-11-15T13:58:58.000Z",
"updatedAt": "2023-11-15T13:58:58.000Z"
},
"transactionBox": {
"id": "9536a59c-4b67-4d78-8ea1-7e29fccf27d1",
"transactionId": "02084ad4-67f7-422e-9da1-0292c8f06df9",
"transactionBoxableId": "02084ad4-67f7-422e-9da1-0292c8f06df9",
"boxId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"type": "credit",
"amount": 1000,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "payment for boards",
"creditDebitIndicator": "Credit",
"debitId": null,
"creditId": 478,
"boxTransactionId": 1464,
"thirdPartyReference": "string",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "payment for boards456",
"affectsLedgerBalance": true,
"runningBalance": "400.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-15T13:53:57.000Z",
"transactionBoxableType": "transaction",
"orderId": null,
"eventSource": "PaaS",
"createdAt": "2023-11-15T13:58:58.000Z",
"updatedAt": "2023-11-15T13:58:58.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "c473741a-122a-4c42-9b38-985cfde95d3b",
"transactionBoxId": "9536a59c-4b67-4d78-8ea1-7e29fccf27d1",
"ownerId": null,
"accountId": null,
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "00000000000000",
"name": "Seth Moniz",
"address": "300 Long Avenue, Manchester, M260DG",
"institutionName": null,
"institutionAddress": null,
"institutionBic": "023"
},
"transactionCreditorAccount": {
"id": "c7340517-d979-4da6-9640-719e7aa27821",
"transactionBoxId": "9536a59c-4b67-4d78-8ea1-7e29fccf27d1",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "Kelia Moniz"
}
}
},
{
"resourceType": "box",
"id": "a1998c71-ccdb-436b-8d96-2173cd4633c9",
"accountId": "F12345",
"transactionGroupId": "4f37ceed-0e86-4aab-b7b0-059131c8a305",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z",
"transactionGroup": {
"id": "4f37ceed-0e86-4aab-b7b0-059131c8a305",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "2d5f3392-0b3a-4791-87cd-54c33add4bd7",
"budgetName": "Central Perk Ltd",
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z"
},
"transactionBox": {
"id": "8c331d42-0970-4279-9d81-0d26b3098152",
"transactionId": "a1998c71-ccdb-436b-8d96-2173cd4633c9",
"transactionBoxableId": "a1998c71-ccdb-436b-8d96-2173cd4633c9",
"boxId": "8a9b2ddf-3af2-474b-8b4d-de8e548afe37",
"type": "credit",
"amount": 300,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "Internal Transfer",
"creditDebitIndicator": "Credit",
"debitId": null,
"creditId": 455,
"boxTransactionId": 1327,
"thirdPartyReference": "",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "Internal Transfer11",
"affectsLedgerBalance": true,
"runningBalance": "600.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-07T14:21:11.000Z",
"transactionBoxableType": "transaction",
"orderId": null,
"eventSource": "PaaS",
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "2290503a-ba10-4646-a174-f11c6b7e1da0",
"transactionBoxId": "8c331d42-0970-4279-9d81-0d26b3098152",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "FRIENDS KITCHEN LTD.",
"address": null,
"institutionName": null,
"institutionAddress": null,
"institutionBic": null
},
"transactionCreditorAccount": {
"id": "80ae4586-eb20-4954-b35f-7f1db9d4d4ee",
"transactionBoxId": "8c331d42-0970-4279-9d81-0d26b3098152",
"ownerId": "8a9b2ddf-3af2-474b-8b4d-de8e548afe37",
"accountId": "090d3859ff",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188489077153",
"name": "FRIENDS KITCHEN LT"
}
}
},
{
"resourceType": "box",
"id": "1e7d3c9c-60d9-4573-9a2b-b29391845bd0",
"accountId": "F12345",
"transactionGroupId": "f9467313-aa96-4f3f-beac-cc22ddc08d78",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z",
"transactionGroup": {
"id": "f9467313-aa96-4f3f-beac-cc22ddc08d78",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "0cbcee03-ca47-4437-a5b9-433d6914b476",
"budgetName": "Account balance",
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z"
},
"transactionBox": {
"id": "bcc20855-9ca3-417e-a983-a1778a9e62ab",
"transactionId": "1e7d3c9c-60d9-4573-9a2b-b29391845bd0",
"transactionBoxableId": "1e7d3c9c-60d9-4573-9a2b-b29391845bd0",
"boxId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"type": "debit",
"amount": 300,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "Internal Transfer",
"creditDebitIndicator": "Debit",
"debitId": 454,
"creditId": null,
"boxTransactionId": 1326,
"thirdPartyReference": "",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "1 11",
"affectsLedgerBalance": true,
"runningBalance": "-600.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-07T14:21:11.000Z",
"transactionBoxableType": "transaction",
"orderId": "",
"eventSource": "PaaS",
"createdAt": "2023-11-07T14:26:15.000Z",
"updatedAt": "2023-11-07T14:26:15.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "4b0f19c0-a2fa-442b-9074-527c708266bc",
"transactionBoxId": "bcc20855-9ca3-417e-a983-a1778a9e62ab",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "FRIENDS KITCHEN LTD.",
"address": null,
"institutionName": null,
"institutionAddress": null,
"institutionBic": null
},
"transactionCreditorAccount": {
"id": "8190ced4-e1be-40c3-a748-835903a4c6bb",
"transactionBoxId": "bcc20855-9ca3-417e-a983-a1778a9e62ab",
"ownerId": "",
"accountId": "",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188489077153",
"name": ""
}
}
},
{
"resourceType": "box",
"id": "25d34ce0-6c4f-403c-9573-7312b0b21394",
"accountId": "F12345",
"transactionGroupId": "ee9d46af-e6f3-4a11-b5ff-8207471b8700",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-07T11:34:14.000Z",
"updatedAt": "2023-11-07T11:34:14.000Z",
"transactionGroup": {
"id": "ee9d46af-e6f3-4a11-b5ff-8207471b8700",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "2d5f3392-0b3a-4791-87cd-54c33add4bd7",
"budgetName": "Central Perk Ltd",
"createdAt": "2023-11-07T11:34:14.000Z",
"updatedAt": "2023-11-07T11:34:14.000Z"
},
"transactionBox": {
"id": "cc7ca043-94ce-4de3-9b0f-336fbfbcaddc",
"transactionId": "25d34ce0-6c4f-403c-9573-7312b0b21394",
"transactionBoxableId": "25d34ce0-6c4f-403c-9573-7312b0b21394",
"boxId": "8a9b2ddf-3af2-474b-8b4d-de8e548afe37",
"type": "credit",
"amount": 300,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "Internal Transfer",
"creditDebitIndicator": "Credit",
"debitId": null,
"creditId": 453,
"boxTransactionId": 1324,
"thirdPartyReference": "",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "Internal Transfer10",
"affectsLedgerBalance": true,
"runningBalance": "300.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-07T11:29:10.000Z",
"transactionBoxableType": "transaction",
"orderId": null,
"eventSource": "PaaS",
"createdAt": "2023-11-07T11:34:14.000Z",
"updatedAt": "2023-11-07T11:34:14.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "994fcd6d-388d-4aec-b6d8-f54f645e14af",
"transactionBoxId": "cc7ca043-94ce-4de3-9b0f-336fbfbcaddc",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "FRIENDS KITCHEN LTD.",
"address": null,
"institutionName": null,
"institutionAddress": null,
"institutionBic": null
},
"transactionCreditorAccount": {
"id": "38b4df2d-5639-449a-af3d-33f9fa3de1d4",
"transactionBoxId": "cc7ca043-94ce-4de3-9b0f-336fbfbcaddc",
"ownerId": "8a9b2ddf-3af2-474b-8b4d-de8e548afe37",
"accountId": "090d3859ff",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188489077153",
"name": "FRIENDS KITCHEN LT"
}
}
},
{
"resourceType": "box",
"id": "dcd270c5-ec11-467c-aae2-6d3dc490aabd",
"accountId": "F12345",
"transactionGroupId": "547ecb8f-e846-46ad-a66e-fa39ed7402de",
"sourceGroupId": null,
"transactionType": "Boxes",
"status": "complete",
"transactionDate": null,
"createdAt": "2023-11-07T11:34:13.000Z",
"updatedAt": "2023-11-07T11:34:13.000Z",
"transactionGroup": {
"id": "547ecb8f-e846-46ad-a66e-fa39ed7402de",
"accountId": "F12345",
"personId": null,
"firstName": null,
"lastName": null,
"budgetId": "0cbcee03-ca47-4437-a5b9-433d6914b476",
"budgetName": "Account balance",
"createdAt": "2023-11-07T11:34:13.000Z",
"updatedAt": "2023-11-07T11:34:13.000Z"
},
"transactionBox": {
"id": "e6945f65-9f19-49dc-9fe8-957096d75474",
"transactionId": "dcd270c5-ec11-467c-aae2-6d3dc490aabd",
"transactionBoxableId": "dcd270c5-ec11-467c-aae2-6d3dc490aabd",
"boxId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"type": "debit",
"amount": 300,
"currency": "GBP",
"paymentType": "UK.OBIE.BalanceTransfer",
"transactionReference": "",
"statementReference": "payment for dinosaurs",
"creditDebitIndicator": "Debit",
"debitId": 452,
"creditId": null,
"boxTransactionId": 1323,
"thirdPartyReference": "",
"marqetaTransactionToken": null,
"marqetaTransactionIdentifier": null,
"internalAccountTransferId": "1 10",
"affectsLedgerBalance": true,
"runningBalance": "-300.00",
"blockId": null,
"blockTag": null,
"valueDateTime": "2023-11-07T11:29:10.000Z",
"transactionBoxableType": "transaction",
"orderId": "",
"eventSource": "PaaS",
"createdAt": "2023-11-07T11:34:13.000Z",
"updatedAt": "2023-11-07T11:34:13.000Z",
"chargeBearer": null,
"transactionDebtorAccount": {
"id": "3592b9e9-fbdd-4a6c-8666-d31684975b1a",
"transactionBoxId": "e6945f65-9f19-49dc-9fe8-957096d75474",
"ownerId": "a522954d-8652-4e9f-87b5-7ba965867bc4",
"accountId": "8bd9c0d453",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188440549969",
"name": "FRIENDS KITCHEN LTD.",
"address": null,
"institutionName": null,
"institutionAddress": null,
"institutionBic": null
},
"transactionCreditorAccount": {
"id": "af992574-4e70-40fd-9b65-417f00f3b36f",
"transactionBoxId": "e6945f65-9f19-49dc-9fe8-957096d75474",
"ownerId": "",
"accountId": "",
"schemeName": "UK.OBIE.SortCodeAccountNumber",
"identification": "23188489077153",
"name": ""
}
}
}
]
}