Gofive OpenAPI
empeo
VenioeTaxGo
empeo
VenioeTaxGo
  1. Employee
  • Authentication
    • Authorization
      POST
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
    • Get Overtimes
      GET
  • Recruitment
    • Get Candidate
  • Core HR
    • Attendance
      • Get Time Attendance
      • Workin
      • Get Employee WorkIn Site
      • Get Timestamps
      • Get TimeStamp Attachments
      • Get Workin Sites
      • Get IOMO Logs
      • Add Timestamps
    • Asset
      • Get Asset list
      • Update Asset
      • Get Employee Assets
    • Employee
      • Get Employee
        GET
      • Update Employee
        PUT
      • Get Employees List
        GET
      • Get Mastertypes List
        GET
      • Get Name Prefixes
        GET
      • Get Document Types
        GET
      • Update Employee
        POST
      • Add Employee Attachment
        POST
      • Update Employee Address
        POST
      • Update Employee Family
        POST
      • Update Employee Contact
        POST
      • Update Employee Education
        POST
      • Update Employee Experience
        POST
      • Update Employee CustomField
        POST
      • Delete Employee
        POST
      • Get Employee Role
        GET
      • Get Employee Movement Lists
        GET
    • Leave
      • Get Employee Documents
    • Shifts
      • Get Shift Details
      • Update Employee Shifts
      • Get Employee Shifts
      • Swap Employee Shifts
    • Timesheet
      • Search Projects
      • Search Tasks
      • Create Timesheet Entry
  • Payroll
    • Get Financial Transactions
    • Update Financial Transactions
    • Create Loan
    • Get Cost Center
  • Welfare
    • Shuttle Buses
    • Passengers
  • Goals
    • Update KPI
  • Engagement
    • Achievement
      • Get Employee Achievements
      • Create Achievement Card
      • Create Achievement Award Document
      • Get Achievement Events
    • Praise
      • Get Employee Praises
      • Get Praise Types
      • Create Praise Reward Manager
    • StampCard
      • Get Stamp Cards
      • Get Stamp Card Detail
      • Add Stamp
    • Celebration
      • Get Upcoming Celebrations
    • Mission
      • ดึงคิวงานรอตรวจ
      • ดึงรายละเอียดงาน 1 ใบ
      • ดึงตัวเลขสรุปงานตามสถานะ
      • อนุมัติงานหลายใบพร้อมกัน
      • ส่งงานกลับให้แก้หลายใบพร้อมกัน
  • Overtime
    • Get Overtimes Preriods
    • Get Overtimes Documents
  • Employee
    • User Info
    • Update Employee Information
  1. Employee

Update Employee Experience

POST
https://api.gofive.co.th/empeo/api/v1/employees/experience
แก้ไขประสบการณ์ทำงานของพนักงาน
เพิ่มหรือแก้ไขประสบการณ์ทำงานก่อนหน้าของพนักงาน 1 รายการ — ExperienceNo คือลำดับของรายการ
ส่งเลขที่มีอยู่แล้วเพื่อแก้ไข หรือเลขใหม่เพื่อเพิ่ม
📘 ฟิลด์ที่ต้องรู้
เงินเดือน (StartingSalary / LatestSalary) มีหน่วยเป็นบาท
วันที่ใช้รูปแบบ YYYY-MM-DD
⚠️ บันทึกไม่สำเร็จจะได้ 204 ไม่ใช่ 400
🔐 ต้องมีสิทธิ์ Open API โมดูล Employee ระดับ ReadAndWrite

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Header Params

Body Params application/jsonRequired

Example
{
    "EmployeeRefId": "EMP001",
    "CompanyName": "Acme",
    "ExperienceNo": 1,
    "Workplace": "บริษัทตัวอย่างเดิม จำกัด",
    "DateStart": "2020-01-01",
    "DateEnd": "2023-12-31",
    "StartingPosition": "นักพัฒนาระบบ",
    "LatestPosition": "นักพัฒนาระบบอาวุโส",
    "StartingSalary": 30000,
    "LatestSalary": 45000,
    "Responsibility": "พัฒนาและดูแลระบบภายใน",
    "TerminationReasonDetail": "ต้องการความก้าวหน้าในสายอาชีพ"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.gofive.co.th/empeo/api/v1/employees/experience' \
--header 'Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "EmployeeRefId": "EMP001",
    "CompanyName": "Acme",
    "ExperienceNo": 1,
    "Workplace": "บริษัทตัวอย่างเดิม จำกัด",
    "DateStart": "2020-01-01",
    "DateEnd": "2023-12-31",
    "StartingPosition": "นักพัฒนาระบบ",
    "LatestPosition": "นักพัฒนาระบบอาวุโส",
    "StartingSalary": 30000,
    "LatestSalary": 45000,
    "Responsibility": "พัฒนาและดูแลระบบภายใน",
    "TerminationReasonDetail": "ต้องการความก้าวหน้าในสายอาชีพ"
}'

Responses

🟢200OK
application/json
บันทึกสำเร็จ — ผลอยู่ใน Data
Bodyapplication/json

Example
{
    "Status": {
        "Code": "1000",
        "Description": "Success!"
    },
    "Data": {
        "result": true,
        "message": "Edited Successfully."
    }
}
🟢204No Content
🟠401Unauthorized
🟠403Forbidden
🟠429Too Many Requests
🔴500Server Error
Modified at 2026-08-20 06:06:34
Previous
Update Employee Education
Next
Update Employee CustomField
Built with