Skip to content

Get Expertise

GET
/api/canvas/learning/expertise
curl --request GET \
--url 'https://example.com/api/canvas/learning/expertise?deal_type=example&asset_type=example&deal_id=example' \
--header 'Authorization: Bearer <token>'

Return expertise profile for a deal_type/asset_type combination.

Shows how much learning data exists and overall AI confidence level.

MULTI-TENANCY: Uses team-scoped expertise to prevent cross-org signal leakage. Fail-closed when team_id unavailable.

deal_type
required
Deal Type

CRE deal type

string

CRE deal type

asset_type
required
Asset Type

CRE asset type

string

CRE asset type

deal_id
required
Deal Id
string

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/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
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}