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

One order

Prod Env
Prod Env
GET
/api/v1/sell/orders/{id}
Secret key only. An order belonging to another organizer returns 404,
not 403 — a wrong id and somebody else's id are the same answer.

Request

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

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🟠404NotFound
🟠429RateLimited
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/sell/orders/66f1b2c3d4e5f6a7b8c9d0e1' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "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
The sales for this key's events
Next
Error
Built with