Eticksystem
    • eticksystem Sell API
      • Config
        • Bootstrap the checkout
        • The checkout palettes
        • Which sites may frame this key's checkout
      • 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

    WebhookEvent

    What we POST to your webhook URL. Signed with X-Etick-Signature; see the
    API description for verification code.
    Deliveries can arrive more than once — key your bookkeeping on
    data.orderId, which never repeats.

    {
        "id": "evt_7KdM2sQ9xR4vLbYcT8nZaW3p",
        "type": "order.paid",
        "createdAt": "2026-07-01T12:31:06",
        "livemode": true,
        "apiClientId": "string",
        "data": {
            "orderId": "string",
            "checkoutId": "string",
            "eventId": "string",
            "eventTitle": "string",
            "customerName": "string",
            "customerEmail": "string",
            "customerPhone": "string",
            "quantity": 0,
            "currency": "AZN",
            "amount": 0,
            "originalAmount": 0,
            "promoCode": "string",
            "status": "paid",
            "paymentMethod": "card",
            "createdAt": "string",
            "ticketUrl": "string",
            "tickets": [
                {
                    "number": "BLT-7K2M9QX4",
                    "seat": "GA_vip_1751371245123_0_a4f9",
                    "tier": "vip",
                    "scanned": false
                }
            ]
        }
    }
    Built with