Get Expertise
GET
/api/canvas/learning/expertise
const url = 'https://example.com/api/canvas/learning/expertise?deal_type=example&asset_type=example&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/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.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” 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
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": {} } ]}