Bank Transaction POST
POST /api/account/{account}/accounting/{platform}/{id}/bank/transaction
Creates a Bank Transaction.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID |
Request Body
id | string | |
---|---|---|
amount | number | |
unexplainedAmount | number | |
bankAccount | string | |
accountingDate | string | |
date | string | |
description | string | |
fullDescription | string | |
manual | boolean | |
createdDate | string | |
updatedDate | string | |
type | string | |
ledgerAccount | string | |
supplier | string |
Responses
200 OK
id | string | |
---|---|---|
amount | number | |
unexplainedAmount | number | |
bankAccount | string | |
accountingDate | string | |
date | string | |
description | string | |
fullDescription | string | |
manual | boolean | |
createdDate | string | |
updatedDate | string | |
type | string | |
ledgerAccount | string | |
supplier | string |
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
Example Success Response
{
"id": "string",
"amount": 1,
"unexplainedAmount": 1,
"bankAccount": "string",
"accountingDate": "string",
"date": "string",
"description": "string",
"fullDescription": "string",
"manual": true,
"createdDate": "string",
"updatedDate": "string",
"type": "string",
"ledgerAccount": "string",
"supplier": "string"
}