Przelewy24 · Schema

ErrorRefundArrayObject

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
orderId integer Identifier of refunded transaction
sessionId string Session's id of refunded transaction
amount integer The refunded amount, in polish groshes
description string Refund description
status boolean Refund's status
message string Error message
View JSON Schema on GitHub

JSON Schema

ErrorRefundArrayObject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ErrorRefundArrayObject",
  "properties": {
    "orderId": {
      "type": "integer",
      "format": "int64",
      "description": "Identifier of refunded transaction"
    },
    "sessionId": {
      "type": "string",
      "description": "Session's id of refunded transaction"
    },
    "amount": {
      "type": "integer",
      "description": "The refunded amount, in polish groshes"
    },
    "description": {
      "type": "string",
      "description": "Refund description"
    },
    "status": {
      "type": "boolean",
      "description": "Refund's status",
      "example": false
    },
    "message": {
      "type": "string",
      "description": "Error message",
      "example": "The amount of refund exceeds available amount for the transaction"
    }
  }
}