Adyen · Schema

StoredDetails

PaymentsFinancial ServicesFintech

Properties

Name Type Description
bank object The stored bank account.
card object The stored card information.
emailAddress string The email associated with stored payment details.
View JSON Schema on GitHub

JSON Schema

adyen-storeddetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoredDetails",
  "title": "StoredDetails",
  "properties": {
    "bank": {
      "description": "The stored bank account.",
      "$ref": "#/components/schemas/BankAccount"
    },
    "card": {
      "description": "The stored card information.",
      "$ref": "#/components/schemas/Card"
    },
    "emailAddress": {
      "description": "The email associated with stored payment details.",
      "type": "string"
    }
  },
  "type": "object"
}