Przelewy24 · Schema

TransactionRefundJsonRequestBody

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
requestId string Individual request ID
refunds array
refundsUuid string Individual ID for a correct refund request in the merchant’s system
urlStatus string Notification address for the refund batch transferred
View JSON Schema on GitHub

JSON Schema

TransactionRefundJsonRequestBody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionRefundJsonRequestBody",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Individual request ID",
      "maxLength": 45
    },
    "refunds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RefundRequestArrayDataBasic"
      }
    },
    "refundsUuid": {
      "type": "string",
      "description": "Individual ID for a correct refund request in the merchant\u2019s system",
      "maxLength": 35
    },
    "urlStatus": {
      "type": "string",
      "description": "Notification address for the refund batch transferred"
    }
  },
  "required": [
    "requestId",
    "refunds",
    "refundsUuid"
  ]
}