← Back to Hub

Admin Settings & Branding API ⚙️

Manage the dynamic ALO brand identity and core store configuration.

1. Get Global Settings

GET /api/settings (Public)

Returns the current brand name, primary color, tax rate, and currency.

2. Update Settings

PATCH /api/settings (Requires Admin Token)

{
  "brand_name": "ALO Exclusive",
  "brand_color": "#ff0000",
  "currency": "USD",
  "tax_rate": 16.0,
  "free_shipping_threshold": 5000,
  "contact_email": "hello@alo.com",
  "social_links": {
    "instagram": "https://instagram.com/alo"
  }
}