Skills Endpoints
Manage organizational and employee skills.
Base Pathβ
/api/skill
Endpointsβ
List Skillsβ
GET /api/skill
Authorization: Bearer {token}
Response:
{
"items": [
{ "id": "uuid", "name": "TypeScript", "color": "#3178C6" },
{ "id": "uuid", "name": "React", "color": "#61DAFB" }
],
"total": 25
}
Create Skillβ
POST /api/skill
Authorization: Bearer {token}
{
"name": "GraphQL",
"color": "#E535AB",
"description": "GraphQL API development"
}
Update Skillβ
PUT /api/skill/:id
Authorization: Bearer {token}
Delete Skillβ
DELETE /api/skill/:id
Authorization: Bearer {token}
Assign Skill to Employeeβ
Skills are assigned through the employee update endpoint:
PUT /api/employee/:id
{
"skills": [{ "id": "skill-uuid-1" }, { "id": "skill-uuid-2" }]
}
Related Pagesβ
- Skills Management β feature guide
- Employee Endpoints β employee API