Skip to content

Acknowledge Bear Case

POST
/api/canvas/{deal_id}/acknowledge-bear-case
curl --request POST \
--url https://example.com/api/canvas/example/acknowledge-bear-case \
--header 'Authorization: Bearer <token>'

Acknowledge the recomputed bear case (W4-01 Tier 2) and finalize if ready.

Persists a bear_acknowledgement artifact covering the current bear_flagged set, then — when every section is approved — promotes the document to APPROVED (the finalize the bear gate had blocked). Idempotent: re-acknowledging refreshes the artifact. RequireEditor, same as approve.

deal_id
required
Deal Id
string

Successful Response

Media typeapplication/json
BearAcknowledgementResponse

Response from POST /canvas/{deal_id}/acknowledge-bear-case (W4-01 T2).

object
success
required
Success
boolean
acknowledged
required
Acknowledged
boolean
auto_promoted
Any of:
boolean
message
required
Message
string
Examplegenerated
{
"success": true,
"acknowledged": true,
"auto_promoted": true,
"message": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}