Naar hoofdinhoud gaan

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.

Feedback

Productfeedback en bugrapporten vanuit agents indienen. De voorbeelden gebruiken de A2A-codemodus. MCP biedt dezelfde codemodus via het hulpmiddel execute.

Functies

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: feedback.submit.
EigenschapWaardeEigenschapWaarde
Authenticatie vereistjaUitvoermodussync
Openbare API-routePOST /v1/public/accounts/{account_id}/feedback
NaamTypeVereist
account_idstrja
category"bug_report" | "product_feedback" | "feature_request" | "other"ja
descriptionstrja
titlestrja
attributes{}nee
paid_product_featureboolnee
VeldTypeVereist
account_idstrja
attributes{}ja
category"bug_report" | "product_feedback" | "feature_request" | "other"ja
created_atstrja
created_by_user_idstrja
descriptionstrja
idstrja
paid_product_featureboolja
status"new" | "triaged" | "planned" | "in_progress" | "closed"ja
submitter_emailstrja
submitter_namestrja
titlestrja
updated_atstrja
admin_notesstr | nullnee
Aanvraag:
{
  "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)"
}
Respons:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": "<string>"
  },
  "responses": [
    {
      "index": 0,
      "function": "feedback.submit",
      "status": "completed",
      "result": "<string>"
    }
  ],
  "complexity_score": 1
}
Aanvraag:
{
  "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)"
    }
  }
}
Respons:
{
  "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
  }
}