Verifone · Schema

gift_card

Gift Card payment configuration

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
capture_now boolean True - transaction will be sent as authCapture and automatically captured.
False - transaction will be sent as auth and only authorized. NOT CAPTURED.
If you don't have any value in the
card object
View JSON Schema on GitHub

JSON Schema

checkout-api-gift_card.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-gift_card.json",
  "title": "gift_card",
  "description": "Gift Card payment configuration",
  "type": "object",
  "properties": {
    "capture_now": {
      "type": "boolean",
      "description": "True - transaction will be sent as authCapture and automatically captured. <br /> False - transaction will be sent as auth and only authorized. NOT CAPTURED. <br /> If you don't have any value in the capture_now parameter, at the moment of the call the value will be set as TRUE.",
      "default": true
    },
    "card": {
      "$ref": "#/components/schemas/GiftCardCardConfig"
    }
  }
}