Adyen · Schema

RevealPinRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
encryptedKey string Symmetric session key encrypted under the public key.
paymentInstrumentId string The unique identifier of the payment instrument.
View JSON Schema on GitHub

JSON Schema

adyen-revealpinrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RevealPinRequest",
  "title": "RevealPinRequest",
  "properties": {
    "encryptedKey": {
      "description": "Symmetric session key encrypted under the public key.",
      "type": "string"
    },
    "paymentInstrumentId": {
      "description": "The unique identifier of the payment instrument.",
      "type": "string"
    }
  },
  "required": [
    "paymentInstrumentId",
    "encryptedKey"
  ],
  "type": "object"
}