Skip to main content
POST
/
api
/
run
/
insights
/
queries
/
getUserInsights
getUserInsights
curl --request POST \
  --url https://connvo-dev.convex.cloud/api/run/insights/queries/getUserInsights \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "limit": 10,
    "offset": 0
  }
}'
{
  "status": "success",
  "errorMessage": "",
  "errorData": {},
  "value": [
    {
      "_id": "insights_ck9hx2g1v0001",
      "_creationTime": 1714066800000,
      "meetingId": "me_82f8c0a8bce1a2d5f4e7b6c9",
      "summary": "This 45-minute meeting involved 2 participants and covered topics including ai-ml, product-strategy.",
      "actionItems": [
        "Follow up on the AI model training pipeline discussion",
        "Share the user research findings document"
      ],
      "recommendations": [
        {
          "type": "learning",
          "content": "Consider exploring advanced topics in ai-ml to deepen your expertise",
          "confidence": 0.7
        }
      ],
      "createdAt": 1714066800000,
      "meetingTitle": "Product Strategy Sync",
      "meetingDate": 1714066200000
    },
    {
      "_id": "insights_ck9hx2g1v0002",
      "_creationTime": 1714063200000,
      "meetingId": "me_xyz789",
      "summary": "This 30-minute meeting involved 3 participants and covered topics including design-systems, frontend-architecture.",
      "actionItems": [
        "Review the component library documentation",
        "Schedule design review session"
      ],
      "recommendations": [
        {
          "type": "networking",
          "content": "Consider connecting with other participants to continue the conversation",
          "confidence": 0.8
        }
      ],
      "createdAt": 1714063200000,
      "meetingTitle": "Design System Review",
      "meetingDate": 1714062600000
    }
  ]
}

Authorizations

Authorization
string
header
required

Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.

Body

application/json
args
object
required

Response

Convex executed your request and returned a result

status
enum<string>
required
Available options:
success,
error
errorMessage
string
errorData
object
value
object[]