Adyen · Schema

PinChangeResponse

PinChangeResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
status string The pin change status.
View JSON Schema on GitHub

JSON Schema

configuration-pin-change-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-pin-change-response-schema.json",
  "title": "PinChangeResponse",
  "description": "PinChangeResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "status": {
      "description": "The pin change status.",
      "enum": [
        "completed",
        "pending",
        "unavailable"
      ],
      "type": "string"
    }
  },
  "required": [
    "status"
  ]
}