Przelewy24 · Schema

PostTransferRefundBody

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
refund object Refund object
id string Unique transfer ID, UUID recommended
sign string Signature calculated separately for each transfer. For more information see sign parameter calculation
View JSON Schema on GitHub

JSON Schema

PostTransferRefundBody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PostTransferRefundBody",
  "properties": {
    "refund": {
      "type": "object",
      "description": "Refund object",
      "allOf": [
        {
          "$ref": "#/components/schemas/TransferP24RefundObject"
        }
      ]
    },
    "id": {
      "type": "string",
      "maxLength": 255,
      "description": "Unique transfer ID, UUID recommended"
    },
    "sign": {
      "type": "string",
      "maxLength": 255,
      "description": "Signature calculated separately for each transfer. For more information see <a href=\"#tag/Calculation-of-sign-parameter\"><b> sign parameter calculation</b></a>"
    }
  },
  "required": [
    "refund",
    "id",
    "sign"
  ]
}