Bank Transfer POST
POST /api/account/{account}/accounting/{platform}/{id}/bank/transfer
Creates a Bank Transfer.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID |
Request Body
id | string | |
---|---|---|
updatedDate | string | |
amount | number | |
bankAccount | string | |
accountingDate | string | |
date | string | |
transferAccount | string | |
type | string | |
description | string | |
fullDescription | string | |
createdDate | string | |
ledgerAccount | string |
Responses
200 OK
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
{
"id": "string",
"updatedDate": "string",
"amount": 1,
"bankAccount": "string",
"accountingDate": "string",
"date": "string",
"transferAccount": "string",
"type": "string",
"description": "string",
"fullDescription": "string",
"createdDate": "string",
"ledgerAccount": "string"
}