v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-011518127.5 KB
Hosted Checkout

Set Business Configuration

Sets the default UI configuration (logo and styles) for all your Hosted Checkout sessions. This configuration will be applied to all payment sessions unless overridden at the session level.

post/checkout/v1/business/config

Request body

logo_urlstring uri

A publicly accessible URL for your business logo

Example request

{
  "logo_url": "https://cdn.my-store.com/logo.png",
  "ui_config": {
    "branding": {
      "brand_color": "#1A2B3C"
    },
    "theme": {
      "shapes": "rounded"
    }
  }
}

Response

Configuration saved successfully

logo_urlstring uri

Example response

{
  "ui_config": {
    "branding": {
      "brand_color": "#1A2B3C"
    },
    "theme": {
      "shapes": "rounded"
    }
  }
}