Verifone · Schema

swish_req

Swish payment configuration

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
app_phone_number string Indicates the phone number registered with Swish Mobile APP.
shopper_interaction string Used to indicate the channel used by to send they checkout link
* ECOMMERCE
* MCOMMERCE
View JSON Schema on GitHub

JSON Schema

checkout-api-swish_req.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-swish_req.json",
  "title": "swish_req",
  "description": "Swish payment configuration",
  "type": "object",
  "properties": {
    "app_phone_number": {
      "maxLength": 18,
      "pattern": "^[0-9-\\s\\-+().-]+$",
      "type": "string",
      "description": "Indicates the phone number registered with Swish Mobile APP."
    },
    "shopper_interaction": {
      "type": "string",
      "description": "Used to indicate the channel used by to send they checkout link <br /> * ECOMMERCE <br /> * MCOMMERCE ",
      "default": "ECOMMERCE",
      "enum": [
        "ECOMMERCE",
        "MCOMMERCE"
      ]
    }
  }
}