Authorizations
Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Body
application/json
curl --request POST \
--url https://connvo-dev.convex.cloud/api/run/insights/queries/getMeetingInsights \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"meetingId": "me_82f8c0a8bce1a2d5f4e7b6c9"
}
}'{
"status": "success",
"errorMessage": "",
"errorData": {},
"value": {
"_id": "insights_ck9hx2g1v0001",
"summary": "This 45-minute meeting involved 2 participants and covered topics including ai-ml, product-strategy, user-research. Key points were documented in the shared notes.",
"actionItems": [
"Follow up on the AI model training pipeline discussion",
"Share the user research findings document",
"Schedule next sprint planning session"
],
"recommendations": [
{
"type": "learning",
"content": "Consider exploring advanced topics in ai-ml to deepen your expertise",
"confidence": 0.7
},
{
"type": "networking",
"content": "Consider connecting with other participants to continue the conversation",
"confidence": 0.8
}
],
"links": [
{
"type": "resource",
"url": "https://example.com/resources/ai-ml",
"title": "Learn more about ai-ml"
}
],
"createdAt": 1714066800000,
"meetingTitle": "Product Strategy Sync",
"meetingDate": 1714066200000
}
}Calls a query at the path insights/queries.js:getMeetingInsights
curl --request POST \
--url https://connvo-dev.convex.cloud/api/run/insights/queries/getMeetingInsights \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"meetingId": "me_82f8c0a8bce1a2d5f4e7b6c9"
}
}'{
"status": "success",
"errorMessage": "",
"errorData": {},
"value": {
"_id": "insights_ck9hx2g1v0001",
"summary": "This 45-minute meeting involved 2 participants and covered topics including ai-ml, product-strategy, user-research. Key points were documented in the shared notes.",
"actionItems": [
"Follow up on the AI model training pipeline discussion",
"Share the user research findings document",
"Schedule next sprint planning session"
],
"recommendations": [
{
"type": "learning",
"content": "Consider exploring advanced topics in ai-ml to deepen your expertise",
"confidence": 0.7
},
{
"type": "networking",
"content": "Consider connecting with other participants to continue the conversation",
"confidence": 0.8
}
],
"links": [
{
"type": "resource",
"url": "https://example.com/resources/ai-ml",
"title": "Learn more about ai-ml"
}
],
"createdAt": 1714066800000,
"meetingTitle": "Product Strategy Sync",
"meetingDate": 1714066200000
}
}Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Show child attributes