PaymentGatewayAccounts Test
PaymentGateway/Accounts/ReferenceNumber
Generate a payment card token from a ReferenceNumber obtained from a previous Authorization request (Vantiv only)
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/PaymentGateway/Accounts/ReferenceNumber

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : AccountReferenceNumberRequest

Request object type AccountReferenceNumberRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
ConstituentId integer Y
FK: T_CUSTOMER.customer_no   Resource: Constituents
ReferenceNumber string Y ReferenceNumber obtained from previous Authorization request
{
  "ConstituentId": 1,
  "ReferenceNumber": "sample string 2"
}
<AccountReferenceNumberRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ConstituentId>1</ConstituentId>
  <ReferenceNumber>sample string 2</ReferenceNumber>
</AccountReferenceNumberRequest>

Response object type : PaymentAccountResponse

Response object type PaymentAccountResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
AccountId integer N Auto-assigned.
FK: T_ACCOUNT_DATA.id   Resource: Accounts
ResponseCode string A zero ("0") indicates a successful transaction.
ResponseMessage string Sometimes includes more detailed information about the response than the ResponseCode.
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "AccountId": 3
}
<PaymentAccountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <AccountId>3</AccountId>
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</PaymentAccountResponse>

No entries in change log for this operation.