Version: 2.x

Talentscan job matches

URL: URL: https://api.kazi.be/tagging/v2/bulk/talentscans/{id}/matches

Request parameters

NameDescription
idThe talent scan id.

Optional parameters

NameDescriptionDefault valueMax value
pageCurrent page1-
pageSizeAmount of rows per page20100
searchOptional search--
sortSort on fields (match, work-value, team-role, created). Prefix with - to sort descending-match-

Response

Returns the job matches of a talent scan.

{
"talentScan": {
"id": "guid",
"firstName": "string",
"lastName": "string"
},
"matches": [
{
"jobScan": {
"id": "guid",
"title": "string",
"employer": "string"
},
"match": "number",
"subtotalTeamRoles": "number",
"subtotalWorkValues": "number",
"expectations": [
{
"expectationId": "guid",
"expectationName": "string",
"match": "number",
"delta": "number",
"expectationTypeId": "number",
"expectationTypeName": "string"
}
]
}
],
"pagination": {
"currentPage": "number",
"amountOfPages": "number",
"pageSize": "number",
"totalAmount": "number",
"firstRowOnPage": "number",
"lastRowOnPage": "number"
}
}