POST 17.0/app/summarystatements/generateallsummarystatementspdf

Description

Generates and downloads a PDF document containing summary statements for the specified properties and contacts

URI Parameters

None.

The request containing criteria for generating summary statements

Name Description Type Additional information
BankAccountId

integer

None.

AllForFiling

boolean

None.

StartDate

date

None.

EndDate

date

None.

Accounts

Collection of ChargeFeeAccount

None.

application/json, text/json

Sample:
{
  "bankAccountId": 1,
  "allForFiling": true,
  "startDate": "2026-04-27T16:20",
  "endDate": "2026-04-27T16:20",
  "accounts": [
    {
      "contactId": 1,
      "propertyId": 2
    },
    {
      "contactId": 1,
      "propertyId": 2
    }
  ]
}

application/xml, text/xml

Sample:
<PrintSummaryStatementRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BankAccountId>1</BankAccountId>
  <AllForFiling>true</AllForFiling>
  <StartDate>2026-04-27T16:20:01.9684787+01:00</StartDate>
  <EndDate>2026-04-27T16:20:01.9684787+01:00</EndDate>
  <Accounts>
    <ChargeFeeAccount>
      <ContactId>1</ContactId>
      <PropertyId>2</PropertyId>
    </ChargeFeeAccount>
    <ChargeFeeAccount>
      <ContactId>1</ContactId>
      <PropertyId>2</PropertyId>
    </ChargeFeeAccount>
  </Accounts>
</PrintSummaryStatementRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

A PDF file download response containing the generated summary statements

None.

application/json, text/json

Sample:

Sample not available.