Skip to main content
DELETE
/
hris
/
employee-skill-assignments
/
{employee_skill_assignment_id}
Delete employee skill assignment
curl --request DELETE \
  --url https://api.kombo.dev/v1/hris/employee-skill-assignments/{employee_skill_assignment_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{}'
{
"status": "success",
"data": {
"id": "8AvRLpxwY5J6pGxfY6fUD81Z",
"employee_id": "26vafvWSRmbhNcxJYqjCzuJg",
"skill_id": "28KMdr68N8kG9EzLwjsN9aoz",
"current_level": "Proficiency Level 1"
}
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Headers

X-Integration-Id
string
required

ID of the integration you want to interact with.

Path Parameters

employee_skill_assignment_id
string
required

The ID of the employee skill assignment

Body

application/json · object

DELETE /hris/employee-skill-assignments/:employee_skill_assignment_id Request body

The body is of type object.

Response

DELETE /hris/employee-skill-assignments/:employee_skill_assignment_id Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"id": "8AvRLpxwY5J6pGxfY6fUD81Z",
"employee_id": "26vafvWSRmbhNcxJYqjCzuJg",
"skill_id": "28KMdr68N8kG9EzLwjsN9aoz",
"current_level": "Proficiency Level 1"
}