InvoicePayment InvoicePaymentID GET
GET /api/account/{account}/accounting/{platform}/{id}/invoicepayment/{invoicePaymentId}
Gets an Invoice Payment.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID | |
invoicePaymentId* | string |
Responses
201 Created
id | string | |
---|---|---|
updatedDate | string | |
amount | number | |
bankAccount | string | |
date | string | |
invoices | array[string] | |
customer | 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",
"date": "string",
"invoices": [
"string"
],
"customer": "string",
"ledgerAccount": "string"
}