GET api/PaymentToken/GetPaymentTokenListingByAccountID?accountID={accountID}&showInactive={showInactive}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountID | integer |
Required |
|
showInactive | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
Collection of PaymentTokenForListName | Description | Type | Additional 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>