Bolt · Schema

three-ds-error

An error that occurs during 3D Secure authentication or verification.

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string The type of 3DS error returned
message string A human-readable error message about the 3DS failure.
View JSON Schema on GitHub

JSON Schema

three-ds-error.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/three-ds-error",
  "title": "three-ds-error",
  "type": "object",
  "description": "An error that occurs during 3D Secure authentication or verification.",
  "required": [
    ".tag",
    "message"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "three_ds_authentication_failed",
        "three_ds_verification_failed",
        "three_ds_reference_missing"
      ],
      "description": "The type of 3DS error returned",
      "example": "three_ds_authentication_failed"
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message about the 3DS failure.",
      "example": "3DS authentication with the card issuer failed"
    }
  }
}