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
Example request
{
"logo_url": "https://cdn.my-store.com/logo.png",
"ui_config": {
"branding": {
"brand_color": "#1A2B3C"
},
"theme": {
"shapes": "rounded"
}
}
}Response
Configuration saved successfully
Example response
{
"ui_config": {
"branding": {
"brand_color": "#1A2B3C"
},
"theme": {
"shapes": "rounded"
}
}
}