Bank Transfer GET
GET /api/account/{account}/accounting/{platform}/{id}/bank/transfer
Gets a list of all Bank Transfers.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID |
Query Parameters
since* | string | |
---|---|---|
page | integer | |
pageSize | integer |
Responses
200 OK
page | integer | |
---|---|---|
pageSize | integer | |
resultsSize | integer | |
results | array[object] | |
id | string | |
updatedDate | string | |
amount | number | |
bankAccount | string | |
accountingDate | string | |
date | string | |
transferAccount | string | |
type | string | |
description | string | |
fullDescription | string | |
createdDate | string | |
ledgerAccount | string |
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",
"updatedDate": "string",
"amount": 1,
"bankAccount": "string",
"accountingDate": "string",
"date": "string",
"transferAccount": "string",
"type": "string",
"description": "string",
"fullDescription": "string",
"createdDate": "string",
"ledgerAccount": "string"
}
]
}