Payment Methods
Description¶
The paymentMethods/{paymentGateway}/{tokenizationInd}
endpoint is used to list all different types of Payment Methods that can be tokenized under a specific Payment Gateway.
Request¶
Endpoint¶
ui/refdata/v1/paymentMethods/{paymentGateway}/{tokenizationInd}
Note
Replace paymentGateway
with the respective Payment Gatway name and tokenizationInd
with true or false.
Given a Payment Gateway and TokenizationInd the endpoint looks as follows:
ui/refdata/v1/paymentMethods/CYBERSOURCE/true
Method¶
GET
Response¶
[
{
"id": 101,
"paymentGateway": {
"value": "CyberSource",
"name": "CYBERSOURCE"
},
"paymentMethodType": {
"value": "Credit Card",
"name": "CREDIT_CARD"
},
"displayName": "Credit Card"
},
{
"id": 102,
"paymentGateway": {
"value": "CyberSource",
"name": "CYBERSOURCE"
},
"paymentMethodType": {
"value": "3D Secure",
"name": "THREE_D_SECURE"
},
"displayName": "3D Secure"
},
{
"id": 103,
"paymentGateway": {
"value": "CyberSource",
"name": "CYBERSOURCE"
},
"paymentMethodType": {
"value": "PINless Debit Card",
"name": "PIN_LESS_DEBIT_CARD"
},
"displayName": "PINless Debit Card"
},
{
"id": 104,
"paymentGateway": {
"value": "CyberSource",
"name": "CYBERSOURCE"
},
"paymentMethodType": {
"value": "eCheck (ACH)",
"name": "ECHECK"
},
"displayName": "eCheck (ACH)"
},
{
"id": 106,
"paymentGateway": {
"value": "CyberSource",
"name": "CYBERSOURCE"
},
"paymentMethodType": {
"value": "PayPal",
"name": "PAYPAL"
},
"displayName": "PayPal"
}
]
Updated As Of Version: 2.6.0.0.