SmartMemory
POST
/memory/ontology/hitl/{item_id}/resolve

Resolve one HITL queue item (open → resolved).

404 if the id is not in the caller's workspace (covers missing and cross-tenant). 422 for an invalid action (Pydantic catches it first).

Path Parameters

item_id*Item Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Resolve a HITL queue item. Invalid action → 422 (Pydantic), before core.

Response Body

application/json

application/json

curl -X POST "https://example.com/memory/ontology/hitl/string/resolve" \  -H "Content-Type: application/json" \  -d '{    "action": "accepted"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}