Realtime
WebSocket tickets for live console updates (schedule, notifications, billing).
1 endpoint · base URL https://api.aerscheduler.com
post
/realtime/ticketMint a WebSocket ticket
Returns a short-lived, single-use ticket. Connect to /realtime/ws (see path / url) and send { "v": 1, "type": "auth", "ticket": "…" } as the first frame so the ticket never sits in a URL. Prefer this over putting a JWT in the WebSocket URL. The upgrade itself is not part of this OpenAPI document.
Responses
200 | OK | Success.→ { data: object } |
401 | Unauthorized | Not signed in. |
403 | Forbidden | Not a member of an organization. |
429 | Too Many Requests | Too many ticket requests. |
Example request
curl -X POST https://api.aerscheduler.com/realtime/ticket \
-H "Authorization: Bearer $AERSCHEDULER_KEY"