Adyen · Schema

DeletePayoutMethodRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountHolderCode string The code of the account holder, from which to delete the payout methods.
payoutMethodCodes array The codes of the payout methods to be deleted.
View JSON Schema on GitHub

JSON Schema

adyen-deletepayoutmethodrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeletePayoutMethodRequest",
  "title": "DeletePayoutMethodRequest",
  "properties": {
    "accountHolderCode": {
      "description": "The code of the account holder, from which to delete the payout methods.",
      "type": "string"
    },
    "payoutMethodCodes": {
      "description": "The codes of the payout methods to be deleted.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "accountHolderCode",
    "payoutMethodCodes"
  ],
  "type": "object"
}