GET api/PaymentToken/GetPaymentTokenListingByContactID?contactID={contactID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactID

integer

Required

showInactive

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentTokenForList
NameDescriptionTypeAdditional information
PaymentTokenID

integer

None.

PaymentToken

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PaymentTokenID": 1,
    "PaymentToken": "sample string 2"
  },
  {
    "PaymentTokenID": 1,
    "PaymentToken": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentTokenForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.PaymentToken">
  <PaymentTokenForList>
    <PaymentToken>sample string 2</PaymentToken>
    <PaymentTokenID>1</PaymentTokenID>
  </PaymentTokenForList>
  <PaymentTokenForList>
    <PaymentToken>sample string 2</PaymentToken>
    <PaymentTokenID>1</PaymentTokenID>
  </PaymentTokenForList>
</ArrayOfPaymentTokenForList>