Przelewy24 · Schema

RefundRequestArrayDataBasic

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
orderId integer Transaction order ID from Przelewy24
sessionId string Transaction session ID from the Partner’s system
amount integer Amount of refund
description string Refund description visible in transfer details
View JSON Schema on GitHub

JSON Schema

RefundRequestArrayDataBasic.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RefundRequestArrayDataBasic",
  "properties": {
    "orderId": {
      "type": "integer",
      "format": "int64",
      "description": "Transaction order ID from Przelewy24"
    },
    "sessionId": {
      "type": "string",
      "description": "Transaction session ID from the Partner\u2019s system"
    },
    "amount": {
      "type": "integer",
      "description": "Amount of refund"
    },
    "description": {
      "type": "string",
      "description": "Refund description visible in transfer details",
      "maxLength": 35
    }
  },
  "type": "object",
  "required": [
    "orderId",
    "sessionId",
    "amount"
  ]
}