v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Card PaySecure WS V2

Verify cvv2 V2

<ul> <li class="docBullet">This web service allows to verify the cvv2 for the provided PAN.</li> <li class="docBullet">Pass the AES encrypted CVV2  and PAN to the API.</li> </ul>
post/sc/v2/sc_cvv2_verify/

Headers

Session-Idstring required

Session Id for Current Request - 32 byte AES key encrypted by RSA Public Key passed in Header in every PaySecure API call.

x-api-keystring

The X-API key is sent to the client in an email during client creation

Request body

client_idinteger required

Unique identifier for the client which Paymentology will provide at outset

tokeninteger required

Public token for the card

cvv2string

AES Encrypted cvv2 of the card

ivstring

16 bits initialization vector (IV) used while encryption Required only when CVV2 is passed.

Example request

{
  "client_id": 760131,
  "token": 311012081,
  "cvv2": "+AyrdXnhXhc=",
  "iv": "Xb6qbV2L6d1F92YU"
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "message": "cvv2 Verified",
    "token": 894394434
  }
}