POST 17.0/app/accounts/invoices/invoiceabletransactions

Description

Gets invoiceable transactions that aren't already on an invoice

URI Parameters

None.

Details how transactions should be filtered

Name Description Type Additional information
ContactId

integer

None.

PropertyId

integer

None.

BankAccountId

integer

None.

IsBlockManagementCompany

boolean

None.

application/json, text/json

Sample:
{
  "contactId": 1,
  "propertyId": 2,
  "bankAccountId": 3,
  "isBlockManagementCompany": true
}

application/xml, text/xml

Sample:
<InvoiceableTransactionsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ContactId>1</ContactId>
  <PropertyId>2</PropertyId>
  <BankAccountId>3</BankAccountId>
  <IsBlockManagementCompany>true</IsBlockManagementCompany>
</InvoiceableTransactionsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Collection of InvoiceableTransaction
Name Description Type Additional information
Id

integer

None.

DueDate

date

None.

ProductId

integer

None.

Description

string

None.

Amount

decimal number

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "dueDate": "2026-04-27T16:20",
    "productId": 3,
    "description": "sample string 4",
    "amount": 5.0
  },
  {
    "id": 1,
    "dueDate": "2026-04-27T16:20",
    "productId": 3,
    "description": "sample string 4",
    "amount": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfInvoiceableTransaction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <InvoiceableTransaction>
    <Id>1</Id>
    <DueDate>2026-04-27T16:20:00.7966049+01:00</DueDate>
    <ProductId>3</ProductId>
    <Description>sample string 4</Description>
    <Amount>5</Amount>
  </InvoiceableTransaction>
  <InvoiceableTransaction>
    <Id>1</Id>
    <DueDate>2026-04-27T16:20:00.7966049+01:00</DueDate>
    <ProductId>3</ProductId>
    <Description>sample string 4</Description>
    <Amount>5</Amount>
  </InvoiceableTransaction>
</ArrayOfInvoiceableTransaction>