Adyen · JSON Structure

Transfers Return Transfer Response Structure

ReturnTransferResponse schema from Adyen API

Type: object Properties: 4
PaymentsFinancial ServicesFintech

ReturnTransferResponse is a JSON Structure definition published by Adyen, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id reference status transferId

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-response-structure.json",
  "description": "ReturnTransferResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "id": {
      "description": "The unique identifier of the return.",
      "type": "string"
    },
    "reference": {
      "description": "Your internal reference for the return.",
      "type": "string"
    },
    "status": {
      "description": "The resulting status of the return.\n\nPossible values: **Authorised**, **Declined**.",
      "enum": [
        "Authorised",
        "Declined"
      ],
      "type": "string"
    },
    "transferId": {
      "description": "The unique identifier of the original transfer.",
      "type": "string"
    }
  },
  "name": "ReturnTransferResponse"
}