Adyen · Schema

TransferFundsNotificationContent

PaymentsFinancial ServicesFintech

Properties

Name Type Description
amount object The amount transferred.
destinationAccountCode string The code of the Account to which funds were credited.
invalidFields array Invalid fields list.
merchantReference string The reference provided by the merchant.
sourceAccountCode string The code of the Account from which funds were debited.
status object The status of the fund transfer.
transferCode string The transfer code.
View JSON Schema on GitHub

JSON Schema

adyen-transferfundsnotificationcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferFundsNotificationContent",
  "title": "TransferFundsNotificationContent",
  "properties": {
    "amount": {
      "description": "The amount transferred.",
      "$ref": "#/components/schemas/Amount"
    },
    "destinationAccountCode": {
      "description": "The code of the Account to which funds were credited.",
      "type": "string"
    },
    "invalidFields": {
      "x-addedInVersion": "5",
      "description": "Invalid fields list.",
      "items": {
        "$ref": "#/components/schemas/ErrorFieldType"
      },
      "type": "array"
    },
    "merchantReference": {
      "x-addedInVersion": "2",
      "description": "The reference provided by the merchant.",
      "type": "string"
    },
    "sourceAccountCode": {
      "description": "The code of the Account from which funds were debited.",
      "type": "string"
    },
    "status": {
      "description": "The status of the fund transfer.",
      "$ref": "#/components/schemas/OperationStatus"
    },
    "transferCode": {
      "description": "The transfer code.",
      "type": "string"
    }
  },
  "type": "object"
}