POST 17.0/app/accounts/receipts/availabletransactions

Description

Gets transactions available to be included on a receipt

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:
<ReceiptAvailableTransactionsRequest 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>
</ReceiptAvailableTransactionsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

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:
<ArrayOfReceiptAvailableTransaction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ReceiptAvailableTransaction>
    <Id>1</Id>
    <DueDate>2026-04-27T16:20:00.9216073+01:00</DueDate>
    <ProductId>3</ProductId>
    <Description>sample string 4</Description>
    <Amount>5</Amount>
  </ReceiptAvailableTransaction>
  <ReceiptAvailableTransaction>
    <Id>1</Id>
    <DueDate>2026-04-27T16:20:00.9216073+01:00</DueDate>
    <ProductId>3</ProductId>
    <Description>sample string 4</Description>
    <Amount>5</Amount>
  </ReceiptAvailableTransaction>
</ArrayOfReceiptAvailableTransaction>