POST 17.0/app/transactions/transferunallocatedcredits

Description

Transfers unallocated credits from one or more source transactions to a destination contact/property/bank account. Handles both single credit transfers and bulk transfers of multiple credits.

URI Parameters

None.

Name Description Type Additional information
FromContactId

integer

None.

FromPropertyId

integer

None.

FromBankAccountId

integer

None.

ToContactId

integer

None.

ToPropertyId

integer

None.

ToBankAccountId

integer

None.

TransferDate

date

None.

TransferAmount

decimal number

None.

ProductId

integer

None.

StatementNotes

string

None.

CreditIds

Collection of integer

None.

application/json, text/json

Sample:
{
  "fromContactId": 1,
  "fromPropertyId": 2,
  "fromBankAccountId": 3,
  "toContactId": 4,
  "toPropertyId": 5,
  "toBankAccountId": 6,
  "transferDate": "2026-03-13T12:40",
  "transferAmount": 8.0,
  "productId": 9,
  "statementNotes": "sample string 10",
  "creditIds": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<TransferUnallocatedCreditsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FromContactId>1</FromContactId>
  <FromPropertyId>2</FromPropertyId>
  <FromBankAccountId>3</FromBankAccountId>
  <ToContactId>4</ToContactId>
  <ToPropertyId>5</ToPropertyId>
  <ToBankAccountId>6</ToBankAccountId>
  <TransferDate>2026-03-13T12:40:00.7974461+00:00</TransferDate>
  <TransferAmount>8</TransferAmount>
  <ProductId>9</ProductId>
  <StatementNotes>sample string 10</StatementNotes>
  <CreditIds>
    <int>1</int>
    <int>2</int>
  </CreditIds>
</TransferUnallocatedCreditsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

None.

None.