POST 17.0/app/summarystatements/deletetransactionbatch

Description

Deletes a batch of fee transactions across multiple accounts.

URI Parameters

None.

Contains the product ID, amount, and list of accounts to process.

Name Description Type Additional information
ProductId

integer

None.

Amount

decimal number

None.

Accounts

Collection of ChargeFeeAccount

None.

application/json, text/json

Sample:
{
  "productId": 1,
  "amount": 2.0,
  "accounts": [
    {
      "contactId": 1,
      "propertyId": 2
    },
    {
      "contactId": 1,
      "propertyId": 2
    }
  ]
}

application/xml, text/xml

Sample:
<DeleteFeeRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ProductId>1</ProductId>
  <Amount>2</Amount>
  <Accounts>
    <ChargeFeeAccount>
      <ContactId>1</ContactId>
      <PropertyId>2</PropertyId>
    </ChargeFeeAccount>
    <ChargeFeeAccount>
      <ContactId>1</ContactId>
      <PropertyId>2</PropertyId>
    </ChargeFeeAccount>
  </Accounts>
</DeleteFeeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

None.

None.