Skip to content

Retrieve Card‑Holder Verification Methods

Returns the list of supported card‑holder verification methods that can be used in transaction records.

URL test:

    https://test.lightcms.io/trancore/v1/trancore/cardHolderVerifications

Method:

GET

Path items:

/trancore/cardHolderVerifications

Parameters:

None

Example:

    curl -X GET "https://test.lightcms.io/trancore/v1/trancore/cardHolderVerifications" \
         -H 'accept: */*'

Responses:

200 - OK

Status Code: 200 OK

[
  {
    "code": "WALLET",
    "description": "Transaction verified through a digital wallet"
  },
  {
    "code": "PIN",
    "description": "Transaction verified using a Personal Identification Number (PIN)"
  },
  {
    "code": "BIO",
    "description": "Transaction verified through biometric authentication (e.g., fingerprint, face recognition)"
  },
  {
    "code": "THREE_DS",
    "description": "Transaction verified using 3D Secure authentication (e.g., Verified by Visa, Mastercard SecureCode)"
  }
]

Parameter Location Type Description
code root string Short identifier used in transaction payloads (e.g., PIN).
description root string Human‑readable explanation of the verification method.
500 - Internal error

Status Code: 500 Internal error

{
  "timestamp": "2025-07-22T13:09:02.348+02:00",
  "status": 500,
  "error": "Internal Server Error",
  "path": "/cms/v1/trancore/cardHolderVerifications"
}

Parameter Location Type Description
timestamp root string ISO‑8601 timestamp when the error occurred.
status root integer HTTP status code (500).
error root string Short description of the error.
path root string The request path that caused the error.