Verifone · Schema

Notification

Object containing the sent date-time and template used for the notification.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
sentDateTime string Date and Time when the notification was sent.
template string Template name used for the notification.
responseReferenceId string An ID from Messaging Service's response.
View JSON Schema on GitHub

JSON Schema

order-service-api-notification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-notification.json",
  "title": "Notification",
  "description": "Object containing the sent date-time and template used for the notification.",
  "type": "object",
  "properties": {
    "sentDateTime": {
      "description": "Date and Time when the notification was sent.",
      "type": "string",
      "format": "date-time"
    },
    "template": {
      "description": "Template name used for the notification.",
      "type": "string"
    },
    "responseReferenceId": {
      "description": "An ID from Messaging Service's response.",
      "type": "string"
    }
  }
}