# Feedback

Source: https://docs.elnora.ai/docs/api/reference/feedback
Last modified: 2026-09-08T22:34:42-06:00

> 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](https://docs.elnora.ai/docs/get-started/authentication).

## `POST` /feedback

Submit user feedback (bug report or feature request) to Linear

```bash
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`
