Przelewy24 · Schema

RefundObject

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
refundId integer Unique id of refund
orderId integer
requestId string Unique request ID of refund. Empty when refund is done by P24 Panel.
dateIn string Refund registration date
dateOut string Refund payout date
status integer
description string Additional description of refund
View JSON Schema on GitHub

JSON Schema

RefundObject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RefundObject",
  "properties": {
    "refundId": {
      "type": "integer",
      "description": "Unique id of refund"
    },
    "orderId": {
      "type": "integer",
      "format": "int64",
      "descirption": "Unique id of payment transaction"
    },
    "requestId": {
      "type": "string",
      "description": "Unique request ID of refund. Empty when refund is done by P24 Panel."
    },
    "dateIn": {
      "type": "string",
      "description": "Refund registration date"
    },
    "dateOut": {
      "type": "string",
      "description": "Refund payout date"
    },
    "status": {
      "type": "integer",
      "descirption": "Status of refund: 1 \u2013 completed, 2 \u2013 pending, 3 \u2013 waiting to acceptance, 4 - rejected"
    },
    "description": {
      "type": "string",
      "description": "Additional description of refund"
    }
  }
}