latestOpenAPI 3.0.12026-08-108798310.5 KB
fa1a72b9ecec
Transaction Feed
Get the account holder's settled feed items for the specified account, which have settlement time between the two provided timestamps
The date range between minTransactionTimestamp and maxTransactionTimestamp must not exceed 1 year. Requests exceeding this limit will return HTTP 400. For queries spanning more than 1 year, use the paginated-transactions endpoint instead.
get/api/v2/feed/account/{accountUid}/settled-transactions-between
Path parameters
accountUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa
Account uid
Query parameters
minTransactionTimestampstring date-time required
Minimum transaction timestamp. The date range between min and max must not exceed 1 year.
maxTransactionTimestampstring date-time required
Maximum transaction timestamp. The date range between min and max must not exceed 1 year.
Response
Successful operation
Example response
{
"feedItems": [
{
"feedItemUid": "11221122-1122-1122-1122-112211221122",
"categoryUid": "ccddccdd-ccdd-ccdd-ccdd-ccddccddccdd",
"amount": {
"currency": "GBP",
"minorUnits": 123456
},
"sourceAmount": {
"currency": "GBP",
"minorUnits": 123456
},
"source": "MASTER_CARD",
"sourceSubType": "CONTACTLESS",
"status": "PENDING",
"transactingApplicationUserUid": "aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa",
"counterPartyType": "MERCHANT",
"counterPartyUid": "68e16af4-c2c3-413b-bf93-1056b90097fa",
"counterPartyName": "Tesco",
"counterPartySubEntityUid": "35d46207-d90e-483c-a40a-128cc4da4bee",
"counterPartySubEntityName": "Tesco Southampton",
"counterPartySubEntityIdentifier": "608371",
"counterPartySubEntitySubIdentifier": "01234567",
"totalFeeAmount": {
"currency": "GBP",
"minorUnits": 123456
},
"reference": "TESCO-STORES-6148 SOUTHAMPTON GBR",
"country": "GB",
"spendingCategory": "GROCERIES",
"userNote": "Tax deductable, submit me to payroll",
"roundUp": {
"goalCategoryUid": "68e16af4-c2c3-413b-bf93-1056b90097fa",
"amount": {
"currency": "GBP",
"minorUnits": 123456
}
},
"hasAttachment": true,
"hasReceipt": true,
"batchPaymentDetails": {
"batchPaymentUid": "5fedd7fa-c670-4ca8-9fcb-a77a6f2219c5"
}
}
]
}