For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quality Events

Create quality event

post

Creates a quality event for the specified execution.

Path parameters
execution_idintegerRequired

Execution ID

Body
Responses
201

Quality event response

application/json
post/api/executions/{execution_id}/quality_events
POST /api/executions/{execution_id}/quality_events HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 81

{
  "quality_event": {
    "message": "Execution completed successfully",
    "type": "SUCCESS"
  }
}
{
  "data": {
    "execution_id": 1,
    "id": 1,
    "inserted_at": "2026-06-10T10:00:00Z",
    "message": "Execution completed successfully",
    "type": "SUCCESS"
  }
}

Last updated