POST 17.0/app/paymentruns/paymentrunsummaryreport

Description

Creates a summary report for the contacts and properties of the selected payments.

URI Parameters

None.

Contains bank account id and a lsit of contac and property ids

Name Description Type Additional information
BankAccountID

integer

None.

PaymentRuns

Collection of PaymentRunIDs

None.

application/json, text/json

Sample:
{
  "bankAccountID": 1,
  "paymentRuns": [
    {
      "contactID": 1,
      "propertyID": 2
    },
    {
      "contactID": 1,
      "propertyID": 2
    }
  ]
}

application/xml, text/xml

Sample:
<PaymentRunSummaryReportRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BankAccountID>1</BankAccountID>
  <PaymentRuns>
    <PaymentRunIDs>
      <ContactID>1</ContactID>
      <PropertyID>2</PropertyID>
    </PaymentRunIDs>
    <PaymentRunIDs>
      <ContactID>1</ContactID>
      <PropertyID>2</PropertyID>
    </PaymentRunIDs>
  </PaymentRuns>
</PaymentRunSummaryReportRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:

Sample not available.