Skip to main content
POST
/
api
/
run
/
matching
/
index
/
getMatchHistory
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"
    }
  ]
}

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