Accepted Payment Types

Query a list of accepted payment types

This is a current list of accepted payment types.
Description Code
Apple Pay APAY
BPAY BPAY
Bill Me Later BLML
Carte Bleue CARTE_BLEUE
Check CHEK
Credit Card CARD
ELV ELV
Gift Card GIFT
GiroPay GIROPAY
Google Checkout GOOG
Green Dot MoneyPak GDMP
Interac INTERAC
Mercado Pago MERCADE_PAGO
Neteller NETELLER
None NONE
POLi POLI
Paypal PYPL
Single Euro Payments Area SEPA
Skrill/Moneybookers SKRILL
Sofort SOFORT
Token TOKEN

Endpoints

https://api.intg12.kount.net:443/rpc/support/payments.html
The browsable documentation for this API endpoint.
https://api.intg12.kount.net:443/rpc/support/payments.json
Endpoint that will return a JSON response.
https://api.intg12.kount.net:443/rpc/support/payments.xml
Endpoint that will return an XML response.

Usage

Error Codes

401 Authentication
The key provided could not be authenticated

Response Samples

Successful Response GET [XML]
<?xml version="1.0" encoding="UTF-8"?>
<response>
 <status>ok</status>
 <count>
  <success>1</success>
  <failure>0</failure>
 </count>
 <errors/>
 <result>
  <item>
   <code>CARD</code>
   <description>Credit Card</description>
  </item>
 </result>
</response>
Successful Response GET [JSON]
{"status":"ok","count":{"success":1,"failure":0},"errors":[],"result":{"item":{"code":"CARD","description":"Credit Card"}}}

Code Examples

GET
curl -G -H "X-Kount-Api-Key: XXX.YYY.ZZZ" \
     https://api.intg12.kount.net:443/rpc/support/payments.json