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"
}