Payments Test
TXN/Payments/OnAccount?constituentId={constituentId}&paymentMethodId={paymentMethodId}
Gets a constituent's balance(s) for on-account payment methods
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Payments/OnAccount?constituentId={constituentId}&paymentMethodId={paymentMethodId}

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer N Required.
paymentMethodId integer N Optional. If this parameter is given, only the on-account balance for the payment method specified is returned.

Request Body

None.

No request body.

Response object type : Collection of ConstituentOnAccountBalance

Response object type Collection of ConstituentOnAccountBalance has the following properties.
Property Name Data Type Length Required Readonly Notes
Amount decimal number
PaymentMethodId integer
[
  {
    "PaymentMethodId": 1,
    "Amount": 2.0
  },
  {
    "PaymentMethodId": 1,
    "Amount": 2.0
  }
]
<ConstituentOnAccountBalances xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ConstituentaOnAccountBalance>
    <Amount>2</Amount>
    <PaymentMethodId>1</PaymentMethodId>
  </ConstituentaOnAccountBalance>
  <ConstituentaOnAccountBalance>
    <Amount>2</Amount>
    <PaymentMethodId>1</PaymentMethodId>
  </ConstituentaOnAccountBalance>
</ConstituentOnAccountBalances>

No entries in change log for this operation.