Adyen · Schema

UpdateAccountRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account to update.
bankAccountUUID string The bankAccountUUID of the bank account held by the account holder to couple the account with. Scheduled payouts in currencies matching the currency of this bank account will be sent to this bank acco
description string A description of the account, maximum 256 characters.You can use alphanumeric characters (A-Z, a-z, 0-9), white spaces, and underscores `_`.
metadata object A set of key and value pairs for general use by the merchant. The keys do not have specific names and may be used for storing miscellaneous data as desired. > Note that during an update of metadata, t
payoutMethodCode string The payout method code held by the account holder to couple the account with. Scheduled card payouts will be sent using this payout method code.
payoutSchedule object The details of the payout schedule, to which the account should be updated.
payoutSpeed string Speed with which payouts for this account are processed. Permitted values: `STANDARD`, `SAME_DAY`.
View JSON Schema on GitHub

JSON Schema

adyen-updateaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAccountRequest",
  "title": "UpdateAccountRequest",
  "properties": {
    "accountCode": {
      "description": "The code of the account to update.",
      "type": "string"
    },
    "bankAccountUUID": {
      "x-addedInVersion": "5",
      "description": "The bankAccountUUID of the bank account held by the account holder to couple the account with. Scheduled payouts in currencies matching the currency of this bank account will be sent to this bank account. Payouts in different currencies will be sent to a matching bank account of the account holder.",
      "type": "string"
    },
    "description": {
      "x-addedInVersion": "4",
      "description": "A description of the account, maximum 256 characters.You can use alphanumeric characters (A-Z, a-z, 0-9), white spaces, and underscores `_`.",
      "type": "string"
    },
    "metadata": {
      "x-addedInVersion": "5",
      "additionalProperties": {
        "type": "string"
      },
      "description": "A set of key and value pairs for general use by the merchant.\nThe keys do not have specific names and may be used for storing miscellaneous data as desired.\n> Note that during an update of metadata, the omission of existing key-value pairs will result in the deletion of those key-value pairs.",
      "type": "object"
    },
    "payoutMethodCode": {
      "x-addedInVersion": "5",
      "description": "The payout method code held by the account holder to couple the account with. Scheduled card payouts will be sent using this payout method code.",
      "type": "string"
    },
    "payoutSchedule": {
      "description": "The details of the payout schedule, to which the account should be updated.",
      "$ref": "#/components/schemas/UpdatePayoutScheduleRequest"
    },
    "payoutSpeed": {
      "x-addedInVersion": "5",
      "description": "Speed with which payouts for this account are processed. Permitted values: `STANDARD`, `SAME_DAY`.",
      "enum": [
        "INSTANT",
        "SAME_DAY",
        "STANDARD"
      ],
      "type": "string"
    }
  },
  "required": [
    "accountCode"
  ],
  "type": "object"
}