Przelewy24 · Schema

CardPaymentPositiveNotificationCardInfoData

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
cardType string Card type
bank string The bank issuing the card
refId string Card alias
bin string BIN number
mask string Card mask
cardDate string Card expiration date
hash string Card hash
cardCountry string Card issuing country code
security object Information regarding transaction security
View JSON Schema on GitHub

JSON Schema

CardPaymentPositiveNotificationCardInfoData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CardPaymentPositiveNotificationCardInfoData",
  "type": "object",
  "properties": {
    "cardType": {
      "type": "string",
      "description": "Card type"
    },
    "bank": {
      "type": "string",
      "description": "The bank issuing the card"
    },
    "refId": {
      "type": "string",
      "description": "Card alias"
    },
    "bin": {
      "type": "string",
      "description": "BIN number"
    },
    "mask": {
      "type": "string",
      "description": "Card mask"
    },
    "cardDate": {
      "type": "string",
      "description": "Card expiration date"
    },
    "hash": {
      "type": "string",
      "description": "Card hash"
    },
    "cardCountry": {
      "type": "string",
      "description": "Card issuing country code",
      "example": "PL"
    },
    "security": {
      "type": "object",
      "description": "Information regarding transaction security",
      "allOf": [
        {
          "$ref": "#/components/schemas/CardPaymentPositiveNotificationSecurity"
        }
      ]
    }
  }
}