Adyen · Schema

TransferData

TransferData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
id string The ID of the resource.
reference string The [`reference`](https://docs.adyen.com/api-explorer/#/transfers/latest/post/transfers__reqParam_reference) from the `/transfers` request. If you haven't provided any, Adyen generates a unique refere
View JSON Schema on GitHub

JSON Schema

transfers-transfer-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-transfer-data-schema.json",
  "title": "TransferData",
  "description": "TransferData schema from Adyen API",
  "type": "object",
  "properties": {
    "id": {
      "description": "The ID of the resource.",
      "type": "string"
    },
    "reference": {
      "x-addedInVersion": "4",
      "description": "The [`reference`](https://docs.adyen.com/api-explorer/#/transfers/latest/post/transfers__reqParam_reference) from the `/transfers` request. If you haven't provided any, Adyen generates a unique reference.",
      "type": "string"
    }
  },
  "required": [
    "reference"
  ]
}