Documentation Index
Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt
Use this file to discover all available pages before exploring further.
从代理提交产品反馈和错误报告。
示例使用 A2A 代码模式。MCP 通过 execute 工具公开相同的代码模式。
feedback.submit
feedback.submit(account_id: str, category: "bug_report" | "product_feedback" | "feature_request" | "other", description: str, title: str, attributes?: {}, paid_product_feature?: bool) -> Feedback
反馈: feedback.submit.
| 属性 | 值 | 属性 | 值 |
|---|
| 需要身份验证 | 是 | 执行模式 | sync |
| 公共 API 路由 | POST /v1/public/accounts/{account_id}/feedback | | |
| 名称 | 类型 | 必需 |
|---|
account_id | str | 是 |
category | "bug_report" | "product_feedback" | "feature_request" | "other" | 是 |
description | str | 是 |
title | str | 是 |
attributes | {} | 否 |
paid_product_feature | bool | 否 |
| 字段 | 类型 | 必需 |
|---|
account_id | str | 是 |
attributes | {} | 是 |
category | "bug_report" | "product_feedback" | "feature_request" | "other" | 是 |
created_at | str | 是 |
created_by_user_id | str | 是 |
description | str | 是 |
id | str | 是 |
paid_product_feature | bool | 是 |
status | "new" | "triaged" | "planned" | "in_progress" | "closed" | 是 |
submitter_email | str | 是 |
submitter_name | str | 是 |
title | str | 是 |
updated_at | str | 是 |
admin_notes | str | null | 否 |
请求:{
"request_id": "example",
"session_id": "session_123",
"code": "feedback.submit(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", category=\"<string>\", description=\"<string>\", title=\"<string>\", attributes=\"<string>\", paid_product_feature=true)"
}
响应:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "feedback.submit",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
请求:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "feedback.submit(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", category=\"<string>\", description=\"<string>\", title=\"<string>\", attributes=\"<string>\", paid_product_feature=true)"
}
}
}
响应:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": \"<string>\"\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"feedback.submit\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}