Verifone Checkout API

Create, retrieve, update, and manage checkout sessions. A checkout session generates a hosted payment page URL that the customer visits to complete payment.

Operations 1

POST /v2/checkout Create a checkout #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/verifone-checkout-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

verifone-checkout-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 3D Secure 3DS Authentication Checkout API
  version: 3.43.0
  description: Operations for listing and retrieving 3DS authentication records. Use these endpoints to query historical authentication results filtered by amount, currency, card, status, and more.
servers:
- url: https://emea.gsc.verifone.cloud/oidc/3ds-service
  description: EMEA Production
- url: https://us.gsc.verifone.cloud/oidc/3ds-service
  description: Americas Production
- url: https://nz.gsc.verifone.cloud/oidc/3ds-service
  description: New Zealand Production
- url: https://cst.test-gsc.vfims.com/oidc/3ds-service
  description: Global Sandbox
- url: https://uscst-gb.gsc.vficloud.net/oidc/3ds-service
  description: Americas Sandbox
security:
- BearerAuth: []
- BasicAuth: []
tags:
- name: Checkout
  description: Create, retrieve, update, and manage checkout sessions. A checkout session generates a hosted payment page URL that the customer visits to complete payment.
paths:
  /v2/checkout:
    post:
      tags:
      - Checkout
      summary: Create a checkout
      operationId: postV2Checkout
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/CreateCheckoutRequest'
              - $ref: '#/components/schemas/CardCaptureRequest'
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateCheckoutResponse'
                - type: object
                  properties:
                    details:
                      type: object
                      description: The details object displays any errors or warnings that occur during the request.
                      properties:
                        errors:
                          type: array
                          items:
                            type: object
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '504':
          description: Gateway Time-out
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SMSNotification:
      type: object
      properties:
        phone_number:
          maxLength: 15
          pattern: ^[0-9-\s\-+().-]+$
          type: string
          description: Phone number to which notification will be sent. This field can only be used for Pay By Link feature.
    ThreeDSData:
      description: Used for <a target="_blank" href="https://docs.verifone.com/online-payments/checkout/accepting-payments/3d-secure-payments">3D-Secure payments</a>
      required:
      - threeds_contract_id
      - transaction_mode
      type: object
      properties:
        account_age_indicator:
          type: string
          description: 'Length of time cardholder has had account. <br /> Possible Values: <br />  * 01 - No account <br />  * 02 - Created during transaction <br />  * 03 - Less than 30 days <br />  * 04 - 30-60 days <br />  * 05 - More than 60 days <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
        account_create_date:
          type: string
          description: 'Date the cardholder opened the account. `Format: YYYYMMDD`'
          format: date
        account_change_indicator:
          type: string
          description: 'Length of time since the last change to the cardholder account. This includes shipping address, <br /> new payment account or new user added. Possible Values: <br /> * 01 - Changed during transaction <br /> * 02 - Less than 30 days <br /> * 03 - 30-60 days <br /> * 04 - More than 60 days <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
        account_change_date:
          type: string
          description: 'Date the cardholder''s account was last changed. This includes changes to the billing or shipping address, new payment accounts or new users added.` Format: YYYYMMDD` <br />'
          format: date
        account_pwd_change_indicator:
          type: string
          description: 'Length of time since the cardholder changed or reset the password on the account. <br />  Possible Values: <br />  * 01 - No change <br />  * 02 - Changed during transaction <br />  * 03 - Less than 30 days <br />  * 04 - 30-60 days <br />  * 05 - More than 60 days <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
        account_pwd_change_date:
          type: string
          description: 'Date the cardholder last changed or reset password on account. `Format: YYYYMMDD`'
          format: date
        account_id:
          maxLength: 64
          type: string
          description: Additional cardholder account information.
        account_purchases:
          maximum: 9999
          type: integer
          description: Number of purchases with this cardholder account during the previous six months.
        acs_window_size:
          type: string
          description: 'An override field that a merchant can pass in to set the challenge window size to display to the end <br /> cardholder.The ACS will reply with content that is formatted appropriately to this window size to allow <br /> for the best user experience. The sizes are width x height in pixels of the window displayed in <br /> the cardholder browser window. Possible values: <br />  * 01 - 250x400 <br />  * 02 - 390x400 <br />  * 03 - 500x600 <br />  * 04 - 600x400 <br />  * 05 - Full page <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
        add_card_attempts:
          maximum: 999
          type: integer
          description: Number of add card attempts in the last 24 hours.
        address_match:
          type: string
          description: 'Indicates whether cardholder billing and shipping addresses match. <br /> Possible Values: <br />  * Y - Shipping address matches billing address <br />  * N - Shipping address does not match billing address <br />'
          enum:
          - Y
          - N
        alternate_authentication_method:
          type: string
          description: 'Mechanism used by the cardholder to authenticate to the 3DS requester. <br />  Possible Values: <br />  * 01 - No authentication occurred (e.g. Guest Checkout) <br />  * 02 - Login to the cardholder account at the Merchant system using Merchant system credentials <br />  * 03 - Login to the cardholder account at the Merchant system using a Federated ID <br />  * 04 - Login to the cardholder account at the Merchant system using Issuer credentials <br />  * 05 - Login to the cardholder account at the Merchant system using third-party authentication <br />  * 06 - Login to the cardholder account at the Merchant system using FIDO Authenticator <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
          - '06'
        alternate_authentication_date:
          type: string
          description: 'Date and time in UTC of the cardholder authentication. ` Format: YYYYMMDDHHMM`'
          format: date
        alternate_authentication_data:
          maxLength: 2048
          type: string
          description: Data that documents and supports a specific authentication <br /> process that was sent in the AlternateAuthenticationMethod field. <br />
        threeds_contract_id:
          maxLength: 36
          type: string
          description: The ID of the threeDSContract used.
        authentication_indicator:
          type: string
          description: Indicates the type of Authentication request. 01 - Payment transaction <br />  02 - Recurring transaction  <br />  03 - Installment transaction  <br />  04 - Add card  <br />  05 - Maintain card  <br />  06 - Cardholder verification as part of EMV token ID&V <br />
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
          - '06'
        category_code:
          maximum: 9999
          type: integer
          description: 'Merchant category code (MCC) NOTE: This field is required by Mastercard and VISA Brazil extensions. <br />'
        challenge_indicator:
          type: string
          description: 'NOTE: This is a 2.0 required field, Cardinal will default to 01 on Merchant Configuration <br /> - can be overridden by the merchant. Possible Values: <br /> * 01 - No preference <br /> * 02 - No challenge requested <br /> * 03 - Challenge requested (3DS Requestor Preference) <br /> * 04 - Challenge requested (Mandate) <br /> * 90 - CB specific value <br />'
          default: '01'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '90'
        delivery_email:
          maxLength: 255
          type: string
          description: For electronic delivery, email address to which the merchandise was delivered.
        delivery_time_frame:
          type: string
          description: 'Indicates the delivery timeframe.  <br /> Possible Values: <br />  * 01 - Electronic delivery <br />  * 02 - Same day shipping <br />  * 03 - Overnight shipping <br />  * 04 - Two or more day shipping <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
        enabled:
          type: boolean
          description: Whether 3DS should be used.
          default: true
        fraud_activity:
          type: string
          description: 'Indicates whether the merchant experienced suspicious activity (including previous fraud) on the account. <br /> Possible Values: <br />  * 01 - No suspicious activity <br />  * 02 - Suspicious activity observed <br />'
          enum:
          - '01'
          - '02'
        gift_card_amount:
          maximum: 999999999999999
          type: integer
          description: 'The purchase amount total for prepaid gift cards in major units. <br /> Example: $123.45 USD = 12345 <br />'
        gift_card_currency_code:
          maxLength: 3
          minLength: 3
          type: string
          description: ISO 4217 currency code for the gift card purchased.
        gift_card_count:
          maximum: 99
          type: integer
          description: Total count of individual prepaid gift cards purchased.
        installment:
          maximum: 999
          minimum: 2
          type: number
          description: Indicates the maximum number of authorizations for installment payments. An integer value greater than 1 indicating the maximum number of permitted authorizations for installment payments. ** Required for Recurring and Installment transactions, when authenticationIndicator="02" & "03" **
        message_category:
          type: string
          description: 'Category of the message for a specific use case. <br />  Possible Values: <br />  * 01 - PA (payment) <br />  * 02 - NPA (non payment) <br />  NOTE: Default is payment (01). Configured on Merchant account, or can be overridden on transaction. <br />'
          enum:
          - '01'
          - '02'
        payment_use_case:
          type: string
          description: 'Indicates the type of payment.The value from this field will be mapped to the data field on the CB-USECASE extension <br />  Possible Values: <br />  * 01 - Single Payment <br />  * 02 - Fixed Amount and Term Subscription <br />  * 03 - Payment By Instalments <br />  * 04 - Payment By Shipment <br />  * 05 - Other Recurring Payments <br />  NOTE: Required for CB transactions (Required if message_category = 01, or message_category = 02 and authentication_indicator = 02 or 03 <br />'
          default: '01'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
        payment_account_indicator:
          type: string
          description: 'Indicates the length of time that the payment account was enrolled in the merchant account. <br /> Possible Values: <br />  * 01 - No account (guest checkout) <br />  * 02 - During the transaction <br />  * 03 - Less than 30 days <br />  * 04 - 30-60 days <br />  * 05 - More than 60 days <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
        payment_account_age:
          type: string
          description: 'Date the payment account was added to the cardholder account. ` Format: YYYYMMDD`'
          format: date
        pre_order_indicator:
          type: string
          description: 'Indicates whether cardholder is placing an order with a future availability or release date. <br />  Possible Values: <br />  * 01 - Merchandise available <br />  * 02 - Future availability <br />'
          enum:
          - '01'
          - '02'
        pre_order_date:
          type: string
          description: 'Expected date that a pre-ordered purchase will be available. `Format: YYYYMMDD`'
          format: date
        prior_authentication_data:
          maxLength: 2048
          type: string
          description: This field carry data that the ACS can use to verify the authentication process
        prior_authentication_method:
          type: string
          description: Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. <br />  * 01 - Frictionless authentication occurred by ACS <br />  * 02 - Cardholder challenge occurred by ACS <br />  * 03 - AVS verified <br />  * 04 - Other issuer methods <br />
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
        prior_authentication_time:
          type: string
          description: 'Date and time in UTC of the prior cardholder authentication. ` Format: YYYYMMDDHHMM`'
          format: date
        prior_authentication_ref:
          maxLength: 36
          type: string
          description: This data element contains a ACS Transaction ID for a prior authenticated transaction. <br /> For example, the first recurring transaction that was authenticated with the cardholder <br />
        product_code:
          type: string
          description: 'Merchant product code.  <br /> Possible Values:  <br />  * PHY - Goods/Service Purchase  <br />  * CHA - Check Acceptance  <br />  * ACF - Account Funding  <br />  * QCT - Quasi-Cash Transaction  <br />  * PAL - Prepaid Activation and Load  <br /> NOTE: This value defaults to PHY. This field can be used to override that value if applicable.  <br />'
          enum:
          - PHY
          - CHA
          - ACF
          - QCT
          - PAL
        recurring_end:
          type: string
          description: 'The date after which no further recurring authorizations should be performed. `Format: YYYYMMDD` ** Required for Recurring and Installment transactions, when authenticationIndicator="02" & "03" **'
          format: date
        recurring_frequency:
          maximum: 9999
          type: number
          description: 'Conditional: Integer value indicating the minimum number of days between recurring authorizations. A frequency of monthly is indicated by the value 28. Multiple of 28 days will be used to indicate months. Example: 6 months = 168 ** Required for Recurring and Installment transactions, when authenticationIndicator="02" & "03" **'
        reorder_indicator:
          type: string
          description: 'Indicates whether cardholder is placing an order with a future availability or release date. <br />  Possible Values: <br />  * 01 - Merchandise available <br />  * 02 - Future availability <br />'
          enum:
          - '01'
          - '02'
        requestor_id:
          maxLength: 35
          type: string
          description: 'This value is a Directory Server assigned 3DS Requestor Name value, each DS may provide a unique ID. <br /> NOTE: This is a 2.0 value only and if passed will override the Requestor Name value that is, <br /> configured on the Merchant''s profile.'
        requestor_name:
          maxLength: 40
          type: string
          description: 'This value is a Directory Server assigned 3DS Requestor Name value, each DS may provide a unique ID. <br /> NOTE: This is a 2.0 value only and if passed will override the Requestor Name value that is configured <br /> on the Merchant''s profile.'
        shipping_address_usage_indicator:
          type: string
          description: 'Indicates when the shipping address used for transaction was first used. <br /> Possible Values: <br />  * 01 - This transaction <br />  * 02 - Less than 30 days <br />  * 03 - 30-60 days <br />  * 04 - More than 60 days <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
        shipping_address_usage_date:
          type: string
          description: 'Date when the shipping address used for this transaction was first used. <br />  `Format: YYYYMMDD` <br />'
          format: date
        shipping_method_indicator:
          type: string
          description: 'Indicates shipping method chosen for the transaction. <br />  Possible Values:  <br />  * 01 - Ship to cardholder billing address <br />  * 02 - Ship to another verified address on file with merchant <br />  * 03 - Ship to address that is different than billing address <br />  * 04 - Ship to store (store address should be populated on request) <br />  * 05 - Digital goods <br />  * 06 - Travel and event tickets, not shipped <br />  * 07 - Other <br />'
          enum:
          - '01'
          - '02'
          - '03'
          - '04'
          - '05'
          - '06'
          - '07'
        shipping_name_indicator:
          type: string
          description: 'Indicates if the cardholder name on the account is identical to the <br /> shipping name used for the transaction. Possible Values: <br /> * 01 - Account and shipping name identical <br /> * 02 - Account and shipping name differ <br />'
          enum:
          - '01'
          - '02'
        total_items:
          pattern: ^[0-9]{2}$
          type: string
          description: Total items in the shopping cart of the shopper
        merchant_score:
          maxLength: 20
          type: string
          description: Merchant score
        transaction_count_day:
          maximum: 999
          type: integer
          description: Number of transactions (successful or abandoned) for this cardholder account within the last 24 hours. <br />
        transaction_count_year:
          maximum: 999
          type: integer
          description: Number of transactions (successful or abandoned) for this cardholder account within the last year. <br />
        transaction_mode:
          type: string
          description: 'Transaction mode identifier. Identifies the channel the transaction originates from. Available Options: <br /> M - Moto (Mail Order Telephone Order) <br /> P - Mobile Device <br /> R - Retail (Physical Store) <br /> S - Computer Device <br /> T - Tablet Device <br />'
          enum:
          - M
          - P
          - R
          - S
          - T
        version:
          type: string
          description: This field contains the 3DS version that can be leveraged to force a transaction down the 1.0 rails.
          enum:
          - 1.0.2
          - 2.1.0
          - 2.2.0
          deprecated: true
    details:
      type: object
    shopper_interaction:
      type: string
      description: Used to indicate the channel used by to send they checkout link <br /> * ECOMMERCE <br /> * MAIL - value is used only in Virtual terminal transactions and cannot be used in createCheckout API call <br /> * TELEPHONE - value is used only in Virtual terminal transactions and cannot be used in createCheckout API call <br />
      default: ECOMMERCE
      enum:
      - ECOMMERCE
      - MAIL
      - TELEPHONE
    payment_contract_id:
      oneOf:
      - type: string
        description: This parameter can be found in the portal on the Payment Provider Contract attached to your organization or given to you by a Verifone employee. It is used to retrieve MID and other merchant configurations necessary for a card payment.
      - type: object
        $ref: '#/x-alt-definitions/paymentContractIdDef'
    additional_business_data:
      type: object
      properties:
        addendum1:
          maxLength: 300
          type: string
          description: Additional field 1 for processor data.
        addendum2:
          maxLength: 300
          type: string
          description: Additional field 2 for processor data.
      description: Merchant defined additional data fields for ABS Acquirer.
    basic_card:
      type: object
      properties:
        mode:
          $ref: '#/components/schemas/card_mode'
        card_capture_mode:
          $ref: '#/components/schemas/card_capture_mode'
        cvv_required:
          type: boolean
          description: Indicates whether cvv is required
          default: false
        input_overrides:
          anyOf:
          - $ref: '#/x-alt-definitions/input_overrides'
          - $ref: '#/x-alt-definitions/Model2'
      description: Card payment configuration
    CardModePayment:
      allOf:
      - $ref: '#/components/schemas/basic_card'
      - type: object
        required:
        - payment_contract_id
        properties:
          dynamic_descriptor:
            maxLength: 25
            type: string
            description: Value is displayed as short text on the bank statement of the cardholder
          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
          shopper_interaction:
            $ref: '#/components/schemas/shopper_interaction'
          account_validation:
            type: boolean
            description: 'Indicates whether the card transaction should be processed as Account Validation request instead. If set to true, the amount provided for the Checkout would be ignored and the transaction be processed with amount: 0'
            default: false
          authorization_type:
            type: string
            description: Card Authorization Type (PRE_AUTH, FINAL_AUTH).  When capture now is set to true pre-authorization transactions cannot be done.
            default: FINAL_AUTH
          payment_contract_id:
            $ref: '#/components/schemas/payment_contract_id'
          token_preference:
            $ref: '#/x-alt-definitions/card_token_preference'
          credit_term:
            type: string
            description: 'Determines the transaction type. Only applicable for ABS Acquirer.Available options: <br /> STANDARD - Sale <br /> PREFERRED - Sale - Preferred Isracard <br /> DEBIT - Sale - Direct Debit <br /> INSTALMENT_STANDARD - Instalment standard <br /> INSTALMENT_CREDIT - Instalment credit<br />'
            enum:
            - DEBIT
            - STANDARD
            - PREFERRED
            - INSTALMENT_CREDIT
            - INSTALMENT_STANDARD
          instalment:
            $ref: '#/components/schemas/InstalmentConfiguration'
          stored_credential:
            $ref: '#/components/schemas/stored_credential'
          additional_business_data:
            $ref: '#/components/schemas/additional_business_data'
          reuse_token:
            maxLength: 4096
            type: string
            description: The identifier used to represent the Cardholder data.
          fraud_protection_contract:
            type: string
            description: Fraud Protection Contract Id
    plcc_mode:
      type: string
      description: '- `CARD_CAPTURE` - A checkout is created with intent to retrieve customer''s card data. The checkout captures the card data of the shopper, encrypts it and returns it to the Merchant. The Merchant then uses the encrypted card data to perform 3DS and/or payments with it.<br /> Following fields are not required: <br />  * amount <br />  * currency_code <br />  * receipt_type

        - `PAYMENT` - A checkout is created with the intent to perform a card payment. Verifone takes care of the full payment process and returns the final transaction response to the merchant, alongside any related details to it. Requires providing payment provider contract details. <br>'
      enum:
      - CARD_CAPTURE
      - PAYMENT
    EmailNotification:
      type: object
      properties:
        email_address:
          maxLength: 255
          type: string
          description: Email address to which notification will be sent. This field can only be used for Pay By Link feature.
    notification_methods:
      type: object
      description: Parameter is used for the PAYMENT_LINK interaction type in order to specify the payment link delivery method ( Email or SMS )
      properties:
        email:
          $ref: '#/components/schemas/EmailNotification'
        sms:
          $ref: '#/components/schemas/SMSNotification'
    LineItem:
      required:
      - name
      - total_amount
      type: object
      properties:
        image_url:
          maxLength: 2000
          type: string
          description: Image URL for the line item
        item_url:
          maxLength: 2000
          type: string
          description: Item URL for the line item
        name:
          maxLength: 255
          type: string
          description: Descriptive name of the order line item
        quantity:
          type: integer
          default: 1
          description: Quantity of the order line item
        unit_price:
          type: number
          description: Unit Price
        unit_price_tax:
          type: number
          description: Unit Price Tax
        tax_rate:
          type: number
          description: Additional details specific to this type of event
        total_tax_amount:
          type: number
          description: Total tax amount
        total_amount:
          type: number
          description: Total Amount
        sku:
          maxLength: 127
          type: string
          description: The stock keeping unit (SKU) for the item.
        description:
          maxLength: 127
          type: string
          description: The detailed item description.
        category:
          type: string
          description: 'The item category type. <br />  The possible values are: <br />  * DIGITAL_GOODS - Goods that are stored, delivered, and used in their electronic format. <br />  * PHYSICAL_GOODS - A tangible item that can be shipped with proof of delivery.'
          enum:
          - DIGITAL_GOODS
          - PHYSICAL_GOODS
    CreateCheckoutResponse:
      required:
      - id
      type: object
      properties:
        id:
          type: string
          description: Checkout ID
        url:
          type: string
          description: URL of the Checkout
    VippsCardConfigRequest:
      required:
      - sca_compliance_level
      - threed_secure
      type: object
      properties:
        sca_compliance_level:
          type: string
          description: "Strong Customer Authentication (SCA) compliance level, possible values </br>\n     * NONE: No SCA required. </br>\n     * WALLET: Depend on the wallet SCA mechanism. For Google Pay this means that MasterCard will shift liability, Visa will not. </br>\n     * FORCE_3DS: Do an additional 3DS step regardless of whether the wallet indicates the token is SCA-compliant."
          enum:
          - NONE
          - WALLET
          - FORCE_3DS
        threed_secure:
          $ref: '#/components/schemas/ThreeDSData'
        authorization_type:
          type: string
          description: Card Authorization Type (PRE_AUTH, FINAL_AUTH).  When capture now is set to true pre-authorization transactions cannot be done.
          default: FINAL_AUTH
    processing_model_details:
      required:
      - processing_model
      type: object
      properties:
        processing_model:
          type: string
          description: <br />  * RECURRING - allows only for RECURRING subsequent charges to be done. <br />  * NONE - does not specify what is the type of subsequent charges. Only allows CREDENTIAL_ON_FILE and UNSCHEDULED_CREDENTIAL_ON_FILE charges. <br />  * If it is RECURRING for SIGNUP should be RECURRING FOR CHARGE TOO. <br />  * If it is NONE for SIGNUP should be CREDENTIAL_ON_FILE or UNSCHEDULED_CREDENTIAL_ON_FILE FOR CHARGE.
          enum:
          - RECURRING
          - NONE
        total_payment_number:
          maximum: 9007199254740991
          minimum: 0
          type: integer
          description: Total number of payments for the stored credential series. Usage applies to specific acquirers. Used only for processing_model=RECURRING
        total_payment_amount:
          maximum: 9007199254740991
          minimum: 0
          type: integer
          description: Total amount for all the payments in the stored credential series. Usage applies to specific acquirers. Used only for processing_model=RECURRING
        first_payment_amount:
          maximum: 9007199254740991
          minimum: 0
          type: integer
          description: Amount of first payment for the stored credential series. Usage applies to specific acquirers. Used only for processing_model=RECURRING
        payment_frequency:
          $ref: '#/components/schemas/payment_frequency'
        merchant_signup_code:
          type: string
          description: Merchant signup code for the stored credential series. Usage applies to specific acquirers. Used only for processing_model=NONE
    card_req:
      required:
      - sca_compliance_level
      - threed_secure
      type: object
      properties:
        sca_compliance_level:
          type: string
          description: "Strong Customer Authentication (SCA) compliance level, possible values </br>\n     * NONE: No SCA required. </br>\n     * WALLET: Depend on the wallet SCA mechanism. For Google Pay this means that MasterCard will shift liability, Visa will not. </br>\n     * FORCE_3DS: Do an additional 3DS step regardless of whether the wallet indicates the token is SCA-compliant."
          enum:
          - NONE
          - WALLET
          - FORCE_3DS
        threed_secure:
          $ref: '#/components/schemas/threed_secure'
        authorization_type:
          type: string
          description: Card Authorization Type (PRE_AUTH, FINAL_AUTH).  When capture now is set to true pre-authorization transactions cannot be done.
          default: FINAL_AUTH
        encrypted_card:
          maxLength: 4096
          type: string
          description: Encrypted card details
        card_encryption_key_alias:
          type: string
          description: Public key alias
        return_url:
          type: string
          description: URL belonging to the Merchant website, where the Customer would be redirected after the Checkout has been completed. If this parameter is used, the customer will be redirected after spending 10 seconds on the payment confirmation page provided by Verifone in case of HPP and PAYMENT LINK transactions. For IFRAME transaction the redirect is performed right after the checkout page without passing through the payment confirmation page.   <br /> <b>Note 1:</b> The return_url accepts only securely connected URLs i.e., via https protocol. <br /> <b>Note 2:</b> The time after which redirection happens can be customized using redirect_method.
    CardModeCapture:
      allOf:
      - $ref: '#/components/schemas/basic_card'
      - type: object
    threed_secure:
      required:
    

# --- truncated at 32 KB (101 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/openapi/verifone-checkout-api-openapi.yml