Passer au contenu principal

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.

Commentaires

Envoyer des commentaires produit et des rapports de bogues depuis les agents. Les exemples utilisent le mode code A2A. MCP expose le même mode code via son outil execute.

Fonctions

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
Commentaires: feedback.submit.
PropriétéValeurPropriétéValeur
Authentification requiseouiMode d’exécutionsync
Route API publiquePOST /v1/public/accounts/{account_id}/feedback
NomTypeRequis
account_idstroui
category"bug_report" | "product_feedback" | "feature_request" | "other"oui
descriptionstroui
titlestroui
attributes{}non
paid_product_featureboolnon
ChampTypeRequis
account_idstroui
attributes{}oui
category"bug_report" | "product_feedback" | "feature_request" | "other"oui
created_atstroui
created_by_user_idstroui
descriptionstroui
idstroui
paid_product_featurebooloui
status"new" | "triaged" | "planned" | "in_progress" | "closed"oui
submitter_emailstroui
submitter_namestroui
titlestroui
updated_atstroui
admin_notesstr | nullnon
Requête:
{
  "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)"
}
Réponse:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": "<string>"
  },
  "responses": [
    {
      "index": 0,
      "function": "feedback.submit",
      "status": "completed",
      "result": "<string>"
    }
  ],
  "complexity_score": 1
}
Requête:
{
  "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)"
    }
  }
}
Réponse:
{
  "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
  }
}