POST 17.0/app/paymentruns/getlaststatementid

Description

Retrieves the ID of the most recent statement for the specified contact, property, and bank account.

URI Parameters

None.

Contains ContactId, PropertyId, and BankAccountId to identify the statement.

Name Description Type Additional information
ContactId

integer

None.

PropertyId

integer

None.

BankAccountId

integer

None.

application/json, text/json

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

application/xml, text/xml

Sample:
<LastStatementRequest 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>
</LastStatementRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

The ID of the last statement, or default value if none exists.

integer

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>