Adyen · JSON Structure

Recurring Schedule Account Updater Request Structure

ScheduleAccountUpdaterRequest schema from Adyen API

Type: object Properties: 6 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

additionalData card merchantAccount reference selectedRecurringDetailReference shopperReference

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/recurring-schedule-account-updater-request-structure.json",
  "description": "ScheduleAccountUpdaterRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "additionalData": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "This field contains additional data, which may be required for a particular request.",
      "type": "object"
    },
    "card": {
      "description": "Credit card data.\n\nOptional if `shopperReference` and `selectedRecurringDetailReference` are provided.",
      "$ref": "#/components/schemas/Card"
    },
    "merchantAccount": {
      "description": "Account of the merchant.",
      "type": "string"
    },
    "reference": {
      "description": "A reference that merchants can apply for the call.",
      "type": "string"
    },
    "selectedRecurringDetailReference": {
      "description": "The selected detail recurring reference.\n\nOptional if `card` is provided.",
      "type": "string"
    },
    "shopperReference": {
      "description": "The reference of the shopper that owns the recurring contract.\n\nOptional if `card` is provided.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "reference"
  ],
  "name": "ScheduleAccountUpdaterRequest"
}