> ## 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.

# フィードバック

> エージェントから製品フィードバックとバグレポートを送信します。

# フィードバック

エージェントから製品フィードバックとバグレポートを送信します。

<script src="/locale-bridge.js" />

例では A2A コードモードを使用します。MCP は `execute` ツールを通じて同じコードモードを公開します。

## 関数

### `feedback.submit`

```text theme={null}
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` |       |        |

<AccordionGroup>
  <Accordion title="引数">
    | 名前                     | 型                                                                    | 必須  |
    | ---------------------- | -------------------------------------------------------------------- | --- |
    | `account_id`           | `str`                                                                | はい  |
    | `category`             | `"bug_report" \| "product_feedback" \| "feature_request" \| "other"` | はい  |
    | `description`          | `str`                                                                | はい  |
    | `title`                | `str`                                                                | はい  |
    | `attributes`           | `{}`                                                                 | いいえ |
    | `paid_product_feature` | `bool`                                                               | いいえ |
  </Accordion>

  <Accordion title="戻り値">
    | フィールド                  | 型                                                                    | 必須  |
    | ---------------------- | -------------------------------------------------------------------- | --- |
    | `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`                                                        | いいえ |
  </Accordion>

  <Accordion title="A2A の例">
    リクエスト:

    ```json theme={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)"
    }
    ```

    レスポンス:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": "<string>"
      },
      "responses": [
        {
          "index": 0,
          "function": "feedback.submit",
          "status": "completed",
          "result": "<string>"
        }
      ],
      "complexity_score": 1
    }
    ```
  </Accordion>

  <Accordion title="MCP の例">
    リクエスト:

    ```json theme={null}
    {
      "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)"
        }
      }
    }
    ```

    レスポンス:

    ```json theme={null}
    {
      "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
      }
    }
    ```
  </Accordion>
</AccordionGroup>
