Verifone · Schema

ErrorResponse

ErrorResponse from 3D Secure API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
code number A 3-digit code which uniquely identify an error.
details object
message string A description of the error.
timestamp number Error timestamp
View JSON Schema on GitHub

JSON Schema

3ds-authentication-api-errorresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/3ds-authentication-api-errorresponse.json",
  "title": "ErrorResponse",
  "description": "ErrorResponse from 3D Secure API",
  "required": [
    "code",
    "message"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "number",
      "description": "A 3-digit code which uniquely identify an error."
    },
    "details": {
      "$ref": "#/components/schemas/ErrorDetails"
    },
    "message": {
      "type": "string",
      "description": "A description of the error."
    },
    "timestamp": {
      "type": "number",
      "description": "Error timestamp"
    }
  }
}