1. Config
Eticksystem
  • eticksystem Sell API
    • Config
      • Bootstrap the checkout
        GET
      • The checkout palettes
        GET
      • Which sites may frame this key's checkout
        GET
    • Catalog
      • List the events this key sells
      • One event, as something you can sell
    • Pricing
      • What a basket costs
    • Checkout
      • Start a purchase
      • Where a checkout got to
    • Orders
      • The sales for this key's events
      • One order
    • Schemas
      • Error
      • Config
      • ThemePreset
      • PaymentProvider
      • PaymentMethod
      • EventStatus
      • Seating
      • EventSummary
      • Tier
      • Question
      • EventDetail
      • BasketItem
      • QuoteRequest
      • QuoteLine
      • QuoteResponse
      • Customer
      • CheckoutRequest
      • CheckoutResponse
      • OrderTicket
      • Order
      • WebhookEvent
  1. Config

The checkout palettes

Prod Env
Prod Env
GET
/api/v1/sell/themes
Every preset's CSS custom properties, in light and dark. Useful if you want
to draw a preview of the popup in your own admin. No key required — these
are colours.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
API Key
Add parameter in header
X-Etick-Key
Example:
X-Etick-Key: ********************
or

Responses

🟢200
application/json
OK
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/sell/themes' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": "ocean",
        "name": "Ocean",
        "swatch": "#0284c7",
        "light": {
            "property1": "string",
            "property2": "string"
        },
        "dark": {
            "property1": "string",
            "property2": "string"
        }
    }
]
Modified at 2026-09-02 12:00:03
Previous
Bootstrap the checkout
Next
Which sites may frame this key's checkout
Built with