Adyen · Schema

SetupBeneficiaryRequest

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

adyen-setupbeneficiaryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetupBeneficiaryRequest",
  "title": "SetupBeneficiaryRequest",
  "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"
  ],
  "type": "object"
}