Adyen · Schema

SetupBeneficiaryRequest

SetupBeneficiaryRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
destinationAccountCode string The destination account code.
merchantReference string A value that can be supplied at the discretion of the executing user.
sourceAccountCode string The benefactor account.
View JSON Schema on GitHub

JSON Schema

funds-setup-beneficiary-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-setup-beneficiary-request-schema.json",
  "title": "SetupBeneficiaryRequest",
  "description": "SetupBeneficiaryRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "destinationAccountCode": {
      "description": "The destination account code.",
      "type": "string"
    },
    "merchantReference": {
      "description": "A value that can be supplied at the discretion of the executing user.",
      "type": "string"
    },
    "sourceAccountCode": {
      "description": "The benefactor account.",
      "type": "string"
    }
  },
  "required": [
    "sourceAccountCode",
    "destinationAccountCode"
  ]
}