Adyen · Schema

TransferNotificationTransferTracking

TransferNotificationTransferTracking schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
estimatedArrivalTime string The estimated time the beneficiary should have access to the funds.
status string The tracking status of the transfer.
View JSON Schema on GitHub

JSON Schema

transfer-webhooks-transfer-notification-transfer-tracking-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/transfer-webhooks-transfer-notification-transfer-tracking-schema.json",
  "title": "TransferNotificationTransferTracking",
  "description": "TransferNotificationTransferTracking schema from Adyen API",
  "type": "object",
  "properties": {
    "estimatedArrivalTime": {
      "x-addedInVersion": "3",
      "description": "The estimated time the beneficiary should have access to the funds.",
      "format": "date-time",
      "type": "string"
    },
    "status": {
      "x-addedInVersion": "3",
      "description": "The tracking status of the transfer.",
      "enum": [
        "credited"
      ],
      "type": "string"
    }
  }
}