PayPal · Schema

BLIK level_0 payment object

Information used to pay using BLIK level_0 flow.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
auth_code string The 6-digit code used to authenticate a consumer within BLIK.
View JSON Schema on GitHub

JSON Schema

paypal-blik-seamless-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/blik_seamless",
  "title": "BLIK level_0 payment object",
  "type": "object",
  "description": "Information used to pay using BLIK level_0 flow.",
  "properties": {
    "auth_code": {
      "type": "string",
      "description": "The 6-digit code used to authenticate a consumer within BLIK.",
      "minLength": 6,
      "maxLength": 6,
      "pattern": "^[0-9]{6}$"
    }
  },
  "required": [
    "auth_code"
  ]
}