AurionAI Docs

Patch Ai Resolution

Act on an AI resolution suggestion (Issue #477 Phase 3). - send → send the stored draft as an AI reply, mark resolved - load_into_composer → return the draft HTML for the client (no DB writes) - dismiss → clear the draft, log to ai_resolution_audit

PATCH
/api/v2/conversations/{conversation_id}/ai-resolution

Act on an AI resolution suggestion (Issue #477 Phase 3).

  • send → send the stored draft as an AI reply, mark resolved
  • load_into_composer → return the draft HTML for the client (no DB writes)
  • dismiss → clear the draft, log to ai_resolution_audit

Authorization

AuthorizationBearer <token>

In: header

Path Parameters

conversation_id*Conversation Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

action*Action

Response Body

application/json

application/json

curl -X PATCH "https://loading/api/v2/conversations/string/ai-resolution" \  -H "Content-Type: application/json" \  -d '{    "action": "string"  }'
{}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}