# Submit feedback

URL: /en/docs/api/v1/feedback/post
Last Updated: 2026-07-30T21:15:44.947Z

## Description
No description available.

## Available Actions
- Execute POST request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### POST /api/v1/feedback

**Submit feedback**

Create a feedback entry scoped to the authenticated tenant. When `allow_email` is true, the
feedback is linked to the current user; otherwise it is stored without user attribution.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Request body** (`application/json`) - required:

- `message` (string, required): Feedback text from the user.
- `allow_email` (boolean): Allow follow-up via the user's email. If false, feedback is anonymous.

**Responses:**

- `201` - Feedback submitted (no response body)
- `400` - Invalid input
- `401` - Unauthorized
- `500` - Unexpected error

**Code samples:**

cURL:

```bash
curl -X POST "https://app.orbiqhq.com/api/v1/feedback" \
  -H "Authorization: Bearer <YOUR_TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{"message":"Would love to see bulk actions in the contacts table.","allow_email":true}'

```

