Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This feature allows you to check the validity of a card by performing a 0 euro authorization.


Prerequisites

  • You offer your clients payment by card
  • You wish to store card data in the form of the pseudo card number (PCNr) and only validate the customer's card.


Implementation

The request for Account verification may be carried out where:

Request

(info) The following table describes the additionalparameter that must be added to the payment request: 


ParameterFormatCNDDescription
paymentMethods.card.eventToken

enum

O

Authorized value: 

ACCOUNT_VERIFICATION



Code Block
languagejson
titleExample of an Account verification request
linenumberstrue
...

    "paymentMethods": {
    	"integrationType": "HOSTED",
    	"type": "CARD",
    	"card" : {
    	    "amount": {
        "value": 0,
      "currency": "EUR"
  },
 
...
...
 
    "paymentMethods": {
        "type": "CARD",
        "card" : {
        "eventToken":"ACCOUNT_VERIFICATION"
    	} 
    } 
        } 
    } 
 
...