Adyen · Schema

RevealPinResponse

RevealPinResponse schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
encryptedPinBlock string The encrypted PIN block.
token string The encrypted PIN block extraction token.
View JSON Schema on GitHub

JSON Schema

configuration-reveal-pin-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-reveal-pin-response-schema.json",
  "title": "RevealPinResponse",
  "description": "RevealPinResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "encryptedPinBlock": {
      "description": "The encrypted PIN block.",
      "type": "string"
    },
    "token": {
      "description": "The encrypted PIN block extraction token.",
      "type": "string"
    }
  },
  "required": [
    "encryptedPinBlock",
    "token"
  ]
}