Submit Feedback
Submit feedback, report a bug, or request a feature.
Use this endpoint to tell the AgentLine team about anything you
encounter while using the platform:
- **bug** — something is broken or not working as expected
- **feature_request** — you wish a capability existed
- **difficulty** — something was hard or confusing to use
- **feedback** — general comments, suggestions, or praise
Your feedback is reviewed by the team. Include as much detail as
possible — for bugs, describe what you expected vs. what happened
and any steps to reproduce it. You can check back on submitted
feedback via GET /v1/feedback to see its status.
### Responses:
**200**: Successful Response (Success Response)
Content-Type: application/json
**Example Response:**
```json
{
"id": "Id",
"account_id": "Account Id",
"category": "Category",
"message": "Message",
"severity": "Severity",
"status": "Status",
"created_at": "2023-01-01T00:00:00Z"
}
```
**Output Schema:**
```json
{
"properties": {
"id": {
"type": "string",
"title": "Id",
"description": "Unique feedback identifier (e.g. 'fb_abc123')"
},
"account_id": {
"type": "string",
"title": "Account Id",
"description": "Account that submitted this feedback"
},
"category": {
"type": "string",
"title": "Category",
"description": "Feedback type: 'bug', 'feature_request', 'difficulty', or 'feedback'"
},
"message": {
"type": "string",
"title": "Message",
"description": "Full feedback message"
},
"subject": {
"title": "Subject",
"description": "Short summary title"
},
"severity": {
"type": "string",
"title": "Severity",
"description": "Impact level: 'low', 'normal', 'high', or 'critical'"
},
"agent_id": {
"title": "Agent Id",
"description": "Related AI agent ID, if any"
},
"contact_email": {
"title": "Contact Email",
"description": "Follow-up email, if provided"
},
"status": {
"type": "string",
"title": "Status",
"description": "Current status: 'open', 'acknowledged', 'in_progress', 'resolved', or 'closed'"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At",
"description": "When the feedback was submitted"
}
},
"type": "object",
"required": [
"id",
"account_id",
"category",
"message",
"severity",
"status",
"created_at"
],
"title": "FeedbackOut"
}
```
**422**: Validation Error
Content-Type: application/json
**Example Response:**
```json
{
"detail": [
{
"loc": [],
"msg": "Message",
"type": "Error Type",
"ctx": {}
}
]
}
```
**Output Schema:**
```json
{
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"items": {},
"type": "array",
"title": "Location"
},
"msg": {
"type": "string",
"title": "Message"
},
"type": {
"type": "string",
"title": "Error Type"
},
"input": {
"title": "Input"
},
"ctx": {
"type": "object",
"title": "Context"
}
},
"type": "object",
"required": [
"loc",
"msg",
"type"
],
"title": "ValidationError"
},
"type": "array",
"title": "Detail"
}
},
"type": "object",
"title": "HTTPValidationError"
}
```