Authentication
All endpoints require App authentication via two headers.
| Header | Description |
|---|---|
X-App-ID | Your application identifier. Alphanumeric, underscore, hyphen; max 64 chars. |
X-API-Key | API key for your application. Validated via constant-time comparison. |
Session ownership
Section titled “Session ownership”Acting on a session requires that the session exists and its app_id matches your X-App-ID. Otherwise you receive:
404 Not Found— the session does not exist.403 Forbidden— the session exists but belongs to another app.