Przelewy24 · Schema

NetworkTokenNotificationCard

Card data.
The object is sent if any of the following parameters change

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
bin string BIN value of the card
mask string Card mask
expire_date object
View JSON Schema on GitHub

JSON Schema

NetworkTokenNotificationCard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NetworkTokenNotificationCard",
  "type": "object",
  "description": "Card data. </br><i>The object is sent if any of the following parameters change</i>",
  "properties": {
    "bin": {
      "type": "string",
      "description": "BIN value of the card",
      "example": "564125"
    },
    "mask": {
      "type": "string",
      "description": "Card mask",
      "example": "XXXX XXXX XXXX 1101"
    },
    "expire_date": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkTokenNotificationCardExpireDate"
        }
      ]
    }
  }
}