Delete Employee Typing Skill
ลบทักษะพิมพ์ดีดของพนักงาน
การลบข้อมูลไม่สามารถกู้คืนได้ กรุณาตรวจสอบให้แน่ใจก่อนดำเนินการ
employee_typing_skill_id ต้องส่งเป็น Base64-encoded string
Endpoint
POST /api/v1/open-apis/employee/delete-employee-profile?path_action=typing-skillQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
path_action | string | Yes | ต้องเป็น typing-skill |
language_code | string | No | ภาษา (TH / EN) |
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
employee_typing_skill_id | string | Yes | ID ของทักษะพิมพ์ที่ต้องการลบ (Base64 encoded) |
Response Format
Success Response
{
"code": 200,
"message": "Delete Typing Skill Success",
"payload": {
"employee_typing_skill_id": "20260121TS01E2F3A4B5",
"deleted": true
}
}Error Response
{
"code": 400,
"message": "ไม่สำเร็จ",
"error": "Typing skill record not found"
}Code Examples
cURL
curl -X POST "https://openapi.humansoft.co.th/api/v1/open-apis/employee/delete-employee-profile?path_action=typing-skill" \
-H "Content-Type: application/json" \
-H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
-d '{
"employee_typing_skill_id": "MjAyNjAxMjFUUzAxRTJGM0E0QjU="
}'Related APIs
- List Typing Skills - ดึงรายการทักษะการพิมพ์ทั้งหมด
- Get Typing Skill - ดึงข้อมูลทักษะการพิมพ์ตาม ID
- Add Typing Skill - เพิ่มทักษะการพิมพ์
- Update Typing Skill - แก้ไขทักษะการพิมพ์
Last updated on