Przelewy24 · Schema

TransactionRefundBody

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
requestId string Unique request id
refundsUuid string Unique id of correct refund request in Merchant's system
urlStatus string URL address for sendig refund's status
refunds object Array of refund objects
View JSON Schema on GitHub

JSON Schema

TransactionRefundBody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionRefundBody",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique request id"
    },
    "refundsUuid": {
      "type": "string",
      "description": "Unique id of correct refund request in Merchant's system"
    },
    "urlStatus": {
      "type": "string",
      "description": "URL address for sendig refund's status"
    },
    "refunds": {
      "description": "Array of refund objects",
      "items": {
        "$ref": "#/components/schemas/RefundArrayObjectBody"
      }
    }
  },
  "required": [
    "requestId",
    "refundsUuid",
    "refunds"
  ]
}