Get Mi Effectiveness
GET
/api/canvas/learning/mi-effectiveness
const url = 'https://example.com/api/canvas/learning/mi-effectiveness?deal_type=cre&asset_type=multifamily§ion_type=financial_analysis&months=6&deal_id=example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://example.com/api/canvas/learning/mi-effectiveness?deal_type=cre&asset_type=multifamily§ion_type=financial_analysis&months=6&deal_id=example' \ --header 'Authorization: Bearer <token>'MI warning effectiveness: resolved vs overridden vs corrected.
Returns both lifetime totals and monthly trend for the specified deal_type/asset_type/section_type combination. Answers the question: “Are our MI warnings useful, or do users just override them?”
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” deal_type
Deal Type
Deal type
string
Deal type
asset_type
Asset Type
Asset type
string
Asset type
section_type
Section Type
Section type
string
Section type
months
Months
Trend months
integer
Trend months
deal_id
required
Deal Id
string
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}