Upsert skill proficiency rating
Skills
Upsert skill proficiency rating
Upsert skill proficiency rating
POST
Upsert skill proficiency rating
Record a skill on an employee, with an optional proficiency rating, attributed to the provider configured on the connection. Re-sending the same skill from the same source replaces it in place.
Authorizations
Headers
ID of the integration you want to interact with.
Body
application/json
POST /hris/skill-proficiency-ratings Request body
The Kombo ID of the employee.
The Kombo ID of the skill.
The proficiency to record. For a NUMERIC skill, submit the numeric value (within the scale's min–max range). For a SINGLE_SELECT skill, submit the ID of the proficiency option. Omit to assign the skill without a rating.
Required range:
x >= -1.7976931348623157e+308Response
POST /hris/skill-proficiency-ratings Positive response
Allowed value:
"success"Example:
{
"id": "8AvRLpxwY5J6pGxfY6fUD81Z",
"remote_id": "238476582-99123",
"employee_id": "26vafvWSRmbhNcxJYqjCzuJg",
"skill_id": "28KMdr68N8kG9EzLwjsN9aoz",
"proficiency": {
"type": "SINGLE_SELECT",
"options": [
{
"id": "3aKMdr68N8kG9EzLwjsN1",
"remote_id": "1",
"name": "Proficiency Level 1"
},
{
"id": "3aKMdr68N8kG9EzLwjsN2",
"remote_id": "2",
"name": "Proficiency Level 2"
},
{
"id": "3aKMdr68N8kG9EzLwjsN3",
"remote_id": "3",
"name": "Proficiency Level 3"
},
{
"id": "3aKMdr68N8kG9EzLwjsN4",
"remote_id": "4",
"name": "Proficiency Level 4"
},
{
"id": "3aKMdr68N8kG9EzLwjsN5",
"remote_id": "5",
"name": "Proficiency Level 5"
}
],
"selected_option_id": "3aKMdr68N8kG9EzLwjsN4"
},
"rating_source": "EXTERNAL",
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null
}