Get conversation operator results

Returns the latest result per operator across the full conversation — a roll-up of every session that contributed. Set per_session=true to receive a separate entry per (session, operator) pair instead.

Required scope: intelligence:read

Path Parameters
  • conversation_id
    Type: string · Conversation Id
    required

    The conversation identifier returned when a session was created.

Query Parameters
  • per_session
    Type: boolean · Per Session

    When true, returns one entry per (session, operator) pair instead of rolling up.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/conversations/{conversation_id}/operator-results
curl 'https://api.simwood.com/intelligence/v1/conversations/{conversation_id}/operator-results' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
  {
    "event_type": "operator_result",
    "operator": {
      "name": "string"
    },
    "output_type": "string",
    "result": {
      "additionalProperty": "anything"
    },
    "confidence": 1,
    "reasoning": "string",
    "configuration_id": "string",
    "session_id": "string"
  }
]