Verifone · Schema

ErrorResponse

ErrorResponse from Customer API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
code integer A 3-digit code that uniquely identifies the error.
details object Additional error details.
message string A human-readable description of the error.
timestamp integer Unix timestamp of when the error occurred.
View JSON Schema on GitHub

JSON Schema

customer-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/customer-api-errorresponse.json",
  "title": "ErrorResponse",
  "description": "ErrorResponse from Customer API",
  "type": "object",
  "properties": {
    "code": {
      "type": "integer",
      "description": "A 3-digit code that uniquely identifies the error."
    },
    "details": {
      "type": "object",
      "description": "Additional error details."
    },
    "message": {
      "type": "string",
      "description": "A human-readable description of the error."
    },
    "timestamp": {
      "type": "integer",
      "description": "Unix timestamp of when the error occurred."
    }
  }
}