Bank Transaction GET
GET /api/account/{account}/accounting/{platform}/{id}/bank/transaction
Gets a list of all Bank Transactions.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID |
Query Parameters
filter | string | |
---|---|---|
from | string | |
to | string | |
page | integer | |
pageSize | integer |
Responses
200 OK
page | integer | |
---|---|---|
pageSize | integer | |
resultsSize | integer | |
results | array[object] | |
id | string | |
reference | string | |
bankAccount | string | |
amount | number | |
taxAmount | number | |
contact | string | |
date | string | |
description | string | |
type | string | |
items | array | |
reconciled | boolean | |
taxType | string | |
deleted | boolean |
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
Example Success Response
{
"page": 0,
"pageSize": 0,
"resultsSize": 0,
"results": [
{
"id": "string",
"reference": "string",
"bankAccount": "string",
"amount": 1,
"taxAmount": 1,
"contact": "string",
"date": "string",
"description": "string",
"type": "string",
"items": [],
"reconciled": true,
"taxType": "string",
"deleted": true
}
]
}