Skip to main content
POST
/
api
/
run
/
insights
/
queries
/
getConnectionRecommendations
getConnectionRecommendations
curl --request POST \
  --url https://connvo-dev.convex.cloud/api/run/insights/queries/getConnectionRecommendations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "limit": 5
  }
}'
{
  "status": "success",
  "errorMessage": "",
  "errorData": {},
  "value": [
    {
      "type": "connection",
      "content": "Consider connecting with other participants to continue the conversation",
      "confidence": 0.8,
      "meetingId": "me_82f8c0a8bce1a2d5f4e7b6c9",
      "meetingTitle": "Product Strategy Sync",
      "createdAt": 1714066800000
    },
    {
      "type": "follow-up",
      "content": "Schedule a follow-up meeting to track progress on action items",
      "confidence": 0.75,
      "meetingId": "me_xyz789",
      "meetingTitle": "Design System Review",
      "createdAt": 1714063200000
    },
    {
      "type": "connection",
      "content": "Reach out to discuss shared interests in ai-ml and product-strategy",
      "confidence": 0.7,
      "meetingId": "me_abc456",
      "meetingTitle": "Tech Innovation Discussion",
      "createdAt": 1714059600000
    }
  ]
}

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[]