Adyen · Schema

PaymentMethodsResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
paymentMethods array Detailed list of payment methods required to generate payment forms.
storedPaymentMethods array List of all stored payment methods.
View JSON Schema on GitHub

JSON Schema

adyen-paymentmethodsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentMethodsResponse",
  "title": "PaymentMethodsResponse",
  "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"
    }
  },
  "type": "object"
}