FruxonDocs
ApiAgent

Generates a version note from a diff summary via Server-Sent Events

Produces a short, human-readable release note summarizing a set of staged changes, streamed over SSE. Unlike the chat endpoint this is stateless — it neither reads nor writes conversation history — so it can be called on its own whenever a draft is about to be published.

POST
/v1/tenants/{tenant}/agents/{agent}/copilot:generateVersionNote
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

agent*string

The agent identifier.

tenant*string

The tenant identifier

The request containing the diff summary text.

diffSummary?string|null

A human-readable summary of changes (added/removed/modified steps, parameter changes, etc.) produced by the frontend diff engine.

[key: string]?never

Response Body

curl -X POST "https://api.fruxon.com/v1/tenants/string/agents/string/copilot:generateVersionNote" \  -H "Content-Type: application/json" \  -d '{}'
"string"
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}