Przelewy24 · Schema

CardPaymentPositiveNotificationResult

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
error string Error code
message string Description of error
cardInfoData object Detailed information about the card
View JSON Schema on GitHub

JSON Schema

CardPaymentPositiveNotificationResult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CardPaymentPositiveNotificationResult",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "example": "0",
      "description": "Error code"
    },
    "message": {
      "type": "string",
      "description": "Description of error",
      "example": "Correct Transaction"
    },
    "cardInfoData": {
      "type": "object",
      "description": "Detailed information about the card",
      "allOf": [
        {
          "$ref": "#/components/schemas/CardPaymentPositiveNotificationCardInfoData"
        }
      ]
    }
  }
}