SumUp · Schema

Hosted Checkout

Hosted Checkout configuration. Enable it to receive a SumUp-hosted payment page URL in the checkout response.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
enabled boolean Whether the checkout should include a SumUp-hosted payment page.
View JSON Schema on GitHub

JSON Schema

hostedcheckout.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Hosted Checkout",
  "description": "Hosted Checkout configuration. Enable it to receive a SumUp-hosted payment page URL in the checkout response.",
  "type": "object",
  "properties": {
    "enabled": {
      "description": "Whether the checkout should include a SumUp-hosted payment page.",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "enabled"
  ]
}