Adyen · JSON Structure

Transfers Return Transfer Request Structure

ReturnTransferRequest schema from Adyen API

Type: object Properties: 2 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

amount reference

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/transfers-return-transfer-request-structure.json",
  "description": "ReturnTransferRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "amount": {
      "description": "Contains information about the amount to be returned.",
      "$ref": "#/components/schemas/Amount"
    },
    "reference": {
      "description": "Your internal reference for the return. If you don't provide this in the request, Adyen generates a unique reference. This reference is used in all communication with you about the instruction status.\n\nWe recommend using a unique value per instruction.\nIf you need to provide multiple references for a transaction, separate them with hyphens (\"-\").\n",
      "maxLength": 80,
      "type": "string"
    }
  },
  "required": [
    "amount"
  ],
  "name": "ReturnTransferRequest"
}