Adyen · JSON Structure

Checkout Payment Methods Response Structure

PaymentMethodsResponse schema from Adyen API

Type: object Properties: 2
PaymentsFinancial ServicesFintech

PaymentMethodsResponse is a JSON Structure definition published by Adyen, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

paymentMethods storedPaymentMethods

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/checkout-payment-methods-response-structure.json",
  "description": "PaymentMethodsResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "paymentMethods": {
      "description": "Detailed list of payment methods required to generate payment forms.",
      "items": {
        "$ref": "#/components/schemas/PaymentMethod"
      },
      "type": "array"
    },
    "storedPaymentMethods": {
      "x-addedInVersion": "49",
      "description": "List of all stored payment methods.",
      "items": {
        "$ref": "#/components/schemas/StoredPaymentMethod"
      },
      "type": "array"
    }
  },
  "name": "PaymentMethodsResponse"
}