AerScheduler

Realtime

WebSocket tickets for live console updates (schedule, notifications, billing).

1 endpoint · base URL https://api.aerscheduler.com

post/realtime/ticket

Mint 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

200OKSuccess.{ data: object }
401UnauthorizedNot signed in.
403ForbiddenNot a member of an organization.
429Too Many RequestsToo many ticket requests.
Example request
curl -X POST https://api.aerscheduler.com/realtime/ticket \
  -H "Authorization: Bearer $AERSCHEDULER_KEY"