List Employee Typing Skills
ดึงรายการทักษะการพิมพ์ทั้งหมดของพนักงาน
Endpoint
GET /api/v1/open-apis/employee/get-employee-data-filter?path_action=list-typing-skillQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
path_action | string | Yes | ต้องเป็น list-typing-skill |
employee_code | string | Yes | รหัสพนักงาน |
language_code | string | No | ภาษา (TH / EN) |
Response Format
Success Response
{
"code": 200,
"message": "สำเร็จ",
"payload": [
{
"employee_typing_skill_id": "20260121TS01E2F3A4B5",
"employee_id": "20260121EM01A2B3C4D5",
"language_name": "ภาษาไทย",
"typing_speed": 45,
"created": "2026-01-10 09:00:00",
"last_upd": "2026-01-12 14:30:00"
},
{
"employee_typing_skill_id": "20260121TS02F3A4B5C6",
"employee_id": "20260121EM01A2B3C4D5",
"language_name": "ภาษาอังกฤษ",
"typing_speed": 55,
"created": "2026-01-11 10:00:00",
"last_upd": "2026-01-11 10:00:00"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
employee_typing_skill_id | string | ID ของทักษะการพิมพ์ |
employee_id | string | ID ของพนักงาน |
language_name | string | ภาษาที่พิมพ์ |
typing_speed | number | ความเร็ว (คำ/นาที) |
created | datetime | วันเวลาที่สร้าง |
last_upd | datetime | วันเวลาที่อัปเดตล่าสุด |
Error Response
{
"code": 400,
"message": "ไม่สำเร็จ",
"error": "Employee not found with code: EMP999"
}Code Examples
cURL
curl -X GET "https://openapi.humansoft.co.th/api/v1/open-apis/employee/get-employee-data-filter?path_action=list-typing-skill&employee_code=EMP001" \
-H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"Related APIs
- Get Typing Skill - ดึงข้อมูลทักษะการพิมพ์ตาม ID
- Add Typing Skill - เพิ่มทักษะการพิมพ์
- Update Typing Skill - แก้ไขทักษะการพิมพ์
- Delete Typing Skill - ลบทักษะการพิมพ์
Last updated on