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
  • Overtime
    • Get Overtimes Preriods
    • Get Overtimes Documents
  • Employee
    • User Info
    • Update Employee Information
  1. Employee

Update Employee Family

POST
https://api.gofive.co.th/empeo/api/v1/employees/family
แก้ไขข้อมูลครอบครัวของพนักงาน
เพิ่มหรือแก้ไขสมาชิกครอบครัวของพนักงาน 1 รายการ — FamilyRefNo คือลำดับของสมาชิกในรายการครอบครัว
ส่งเลขที่มีอยู่แล้วเพื่อแก้ไข หรือเลขใหม่เพื่อเพิ่ม
RelationShipId ใช้รหัสจากกลุ่มความสัมพันธ์ (GET /api/v1/masters/items?groups=13) ส่วน IsReduceTax
บอกว่าสมาชิกคนนี้ใช้ลดหย่อนภาษีได้หรือไม่ ซึ่งมีผลต่อการคำนวณภาษีของพนักงาน
บันทึกไม่สำเร็จจะได้ 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",
    "FamilyRefNo": 1,
    "RelationShipId": 30051,
    "TitleId": 3,
    "Gender": 5002,
    "Name": "ผู้ติดตามตัวอย่าง",
    "Surname": "หนึ่ง",
    "DateOfBirth": "1996-05-20",
    "OccupationName": "พนักงานบริษัท",
    "Contact": "0800000009",
    "IsStudy": false,
    "IsReduceTax": true
}

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/family' \
--header 'Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "EmployeeRefId": "EMP001",
    "CompanyName": "Acme",
    "FamilyRefNo": 1,
    "RelationShipId": 30051,
    "TitleId": 3,
    "Gender": 5002,
    "Name": "ผู้ติดตามตัวอย่าง",
    "Surname": "หนึ่ง",
    "DateOfBirth": "1996-05-20",
    "OccupationName": "พนักงานบริษัท",
    "Contact": "0800000009",
    "IsStudy": false,
    "IsReduceTax": true
}'

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-19 15:23:58
Previous
Update Employee Address
Next
Update Employee Contact
Built with