Verifone · Schema

promo_financing_details

promo_financing_details from Checkout API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
promo_financing_type string Type of special financing information requested. Promotional information may be requested for duration of the promo only (`PROMO_APR`) or for during and after promo period (`PROMO_AND_AFTER_APR`).
promo_plan string The code or name of a promotional financing plan as set up between merchant and issuer.
promo_plan_expiry string Expiry date for the requested promo plan. The format for the date is Mongo DB ISO 8601.
Example: 2026-03-20T10:48:00.000Z
View JSON Schema on GitHub

JSON Schema

checkout-api-promo_financing_details.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/checkout-api-promo_financing_details.json",
  "title": "promo_financing_details",
  "description": "promo_financing_details from Checkout API",
  "type": "object",
  "properties": {
    "promo_financing_type": {
      "type": "string",
      "enum": [
        "PROMO_APR",
        "PROMO_AND_AFTER_APR"
      ],
      "description": "Type of special financing information requested. Promotional information may be requested for duration of the promo only (`PROMO_APR`) or for during and after promo period (`PROMO_AND_AFTER_APR`)."
    },
    "promo_plan": {
      "type": "string",
      "description": "The code or name of a promotional financing plan as set up between merchant and issuer."
    },
    "promo_plan_expiry": {
      "type": "string",
      "format": "date",
      "description": "Expiry date for the requested promo plan. The format for the date is Mongo DB ISO 8601. <br /> <b>Example:</b> 2026-03-20T10:48:00.000Z <br />"
    }
  }
}