1. Orders
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
        GET
      • One order
        GET
    • Schemas
      • Error
      • Config
      • ThemePreset
      • PaymentProvider
      • PaymentMethod
      • EventStatus
      • Seating
      • EventSummary
      • Tier
      • Question
      • EventDetail
      • BasketItem
      • QuoteRequest
      • QuoteLine
      • QuoteResponse
      • Customer
      • CheckoutRequest
      • CheckoutResponse
      • OrderTicket
      • Order
      • WebhookEvent
  1. Orders

The sales for this key's events

Prod Env
Prod Env
GET
/api/v1/sell/orders
Secret key only. A publishable key sits in the page source of a public
website; if it could list orders, every visitor could read every buyer's
name, e-mail and phone number. So this refuses it outright rather than
filtering what it returns.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🟠429RateLimited
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/sell/orders?event=summer-gala&source=&limit=' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "object": "list",
    "count": 1,
    "data": [
        {
            "id": "66f1b2c3d4e5f6a7b8c9d0e1",
            "eventId": "string",
            "eventTitle": "Summer Gala",
            "customerName": "Aysel Məmmədova",
            "customerEmail": "aysel@example.com",
            "customerPhone": "string",
            "status": "paid",
            "paymentMethod": "card",
            "currency": "AZN",
            "amount": 80,
            "originalAmount": 100,
            "promoCode": "EARLYBIRD",
            "quantity": 2,
            "tickets": [
                {
                    "number": "BLT-7K2M9QX4",
                    "seat": "GA_vip_1751371245123_0_a4f9",
                    "tier": "vip",
                    "scanned": false
                }
            ],
            "answers": {
                "property1": "string",
                "property2": "string"
            },
            "createdAt": "2026-07-01T12:31:04",
            "apiClientId": "string"
        }
    ]
}
Modified at 2026-09-02 07:39:25
Previous
Where a checkout got to
Next
One order
Built with