Risk Summary
GET
/org/sessions/{session_id}/risk-summary
const url = 'https://engine.bindly.insure/org/sessions/example/risk-summary';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://engine.bindly.insure/org/sessions/example/risk-summaryUnderwriter-facing risk flags for the session’s collected intake, the REST twin of the MCP risk_summary tool. Empty list = clean risk.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”session_id
required
Session Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
SessionRiskSummaryResponse
object
flags
required
Flags
Array<object>
RiskFlagobject
title
required
Title
string
detail
required
Detail
1-2 sentences: the concern and why it matters.
string
severity
required
Severity
“high” | “medium” | “low”
string
category
Category
E.g. property, liability, operations, data, financial.
string
Example
{ "flags": [ { "category": "general" } ]}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}