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/matching/index/getMatchHistory \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"limit": 123,
"offset": 123
}
}'{
"status": "success",
"errorMessage": "<string>",
"errorData": {},
"value": [
{
"_id": "<string>",
"createdAt": 123,
"features": {
"experienceGap": 123,
"industryMatch": 123,
"interestOverlap": 123,
"languageOverlap": 123,
"orgConstraintMatch": 123,
"roleComplementarity": 123,
"timezoneCompatibility": 123,
"vectorSimilarity": 123
},
"feedback": {
"comments": "<string>",
"rating": 123
},
"matchId": "<string>",
"outcome": "accepted"
}
]
}Calls a query at the path matching/index.js:getMatchHistory
curl --request POST \
--url https://connvo-dev.convex.cloud/api/run/matching/index/getMatchHistory \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"limit": 123,
"offset": 123
}
}'{
"status": "success",
"errorMessage": "<string>",
"errorData": {},
"value": [
{
"_id": "<string>",
"createdAt": 123,
"features": {
"experienceGap": 123,
"industryMatch": 123,
"interestOverlap": 123,
"languageOverlap": 123,
"orgConstraintMatch": 123,
"roleComplementarity": 123,
"timezoneCompatibility": 123,
"vectorSimilarity": 123
},
"feedback": {
"comments": "<string>",
"rating": 123
},
"matchId": "<string>",
"outcome": "accepted"
}
]
}Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Show child attributes