Adyen · JSON Structure

Funds Refund Funds Transfer Request Structure

RefundFundsTransferRequest schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

RefundFundsTransferRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

amount merchantReference originalReference

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/funds-refund-funds-transfer-request-structure.json",
  "description": "RefundFundsTransferRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "amount": {
      "description": "The amount to be transferred.",
      "$ref": "#/components/schemas/Amount"
    },
    "merchantReference": {
      "description": "A value that can be supplied at the discretion of the executing user in order to link multiple transactions to one another.",
      "type": "string"
    },
    "originalReference": {
      "description": "A PSP reference of the original fund transfer.",
      "type": "string"
    }
  },
  "required": [
    "originalReference",
    "amount"
  ],
  "name": "RefundFundsTransferRequest"
}