Przelewy24 · Schema

recurring

recurring transaction

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
traceID string Initialization transaction reference number (required for recurring, if the following have been provided: card, schemeToken)
View JSON Schema on GitHub

JSON Schema

recurring.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "recurring",
  "description": "recurring transaction",
  "allOf": [
    {
      "$ref": "#/components/schemas/cardData"
    }
  ],
  "properties": {
    "traceID": {
      "type": "string",
      "description": "Initialization transaction reference number (required for recurring, if the following have been provided: card, schemeToken)"
    }
  },
  "required": [
    "traceID"
  ],
  "type": "object"
}