Adyen · Schema

RefundNotPaidOutTransfersRequest

RefundNotPaidOutTransfersRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account from which to perform the refund(s).
accountHolderCode string The code of the Account Holder which owns the account from which to perform the refund(s).
View JSON Schema on GitHub

JSON Schema

funds-refund-not-paid-out-transfers-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/funds-refund-not-paid-out-transfers-request-schema.json",
  "title": "RefundNotPaidOutTransfersRequest",
  "description": "RefundNotPaidOutTransfersRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "accountCode": {
      "description": "The code of the account from which to perform the refund(s).",
      "type": "string"
    },
    "accountHolderCode": {
      "description": "The code of the Account Holder which owns the account from which to perform the refund(s).",
      "type": "string"
    }
  },
  "required": [
    "accountHolderCode",
    "accountCode"
  ]
}