---
title: "POST /feedback - Feedback · RUAL Documentation"
description: "POST: Submit feedback about the application"
canonical: https://docs.rual.nl/cluster/api/feedback/feedback-post
language: en
---

# POST /feedback

Submit feedback about the application

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **[authorization](https://docs.rual.nl/cluster/api#token-providing)** required | `string` | `"Bearer access_token"` | Access token |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **blueprint_title** optional | `string` | `"example"` |  |
| **context** optional | `object` | `{ "hostname": "test-blueprints.rual.dev", "path": "example" }` |  |
| **message** required | `string` | `"ok"` |  |
| **subject** required | `string` | `"example"` |  |
| **type** required | `string` | `"bug"` | Allowed: `"bug"`, `"feature"`, `"improvement"`, `"question"`, `"other"` |

```
{
  "success": true
}
```

```
{
  "code": 401,
  "error": "INVALID_ACCESS_TOKEN"
}
```

| Status | Error Code | Description |
| --- | --- | --- |
| `401` | `INVALID_ACCESS_TOKEN` | Authentication required or invalid token |
| `403` | `INSUFFICIENT_PERMISSIONS` | Insufficient permissions for this operation |

| Permission | Description |
| --- | --- |
| `Bearer token` | Access token required via Authorization header, x-authtoken, x-token, query param, or cookie |
| `*_*` | Required scope: *_* |
