Przelewy24 · Schema

NetworkTokenNotification

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
refid string Reference number for making debits during card transactions
token_status string Current token status
tokenExpire object
card_art object
card_logotype object
card object
View JSON Schema on GitHub

JSON Schema

NetworkTokenNotification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NetworkTokenNotification",
  "type": "object",
  "properties": {
    "refid": {
      "type": "string",
      "description": "Reference number for making debits during card transactions",
      "example": "BDA8DF2315F17426D1279776DE1E032"
    },
    "token_status": {
      "type": "string",
      "description": "Current token status",
      "example": "active",
      "enum": [
        "active",
        "suspended",
        "cancelled"
      ]
    },
    "tokenExpire": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkTokenNotificationTokenExpire"
        }
      ]
    },
    "card_art": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkTokenNotificationCardArt"
        }
      ]
    },
    "card_logotype": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkTokenNotificationCardLogotype"
        }
      ]
    },
    "card": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkTokenNotificationCard"
        }
      ]
    }
  }
}