Endpoints
Feedback
Feedback endpoints of the Elnora REST API.
Base URL https://platform.elnora.ai/api/v1. Authenticate every request with the X-API-Key header — see Authentication.
POST /feedback
Submit user feedback (bug report or feature request) to Linear
curl -X POST https://platform.elnora.ai/api/v1/feedback \
-H "X-API-Key: $ELNORA_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "type": 0, "title": "...", "description": "..." }'Request body
| Field | Type | Required |
|---|---|---|
type | FeedbackType | yes |
title | string | yes |
description | string | yes |
context | string | no |
url | string | no |
pageType | string | no |
screenSize | string | no |
viewportSize | string | no |
deviceType | string | no |
environment | string | no |
protocolId | string | no |
protocolTitle | string | no |
protocolStatus | string | no |
acquisitionMethod | string | no |
activeTab | string | no |
versionIteration | int32 | no |
Responses: 200 · 401 · 403 · 404