Gofive OpenAPI
empeo
VenioeTaxGo
empeo
VenioeTaxGo
  1. Attendance
  • Authentication
    • Authorization
      POST
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
    • Get Overtimes
      GET
  • Recruitment
    • Get Candidate
      GET
  • Core HR
    • Attendance
      • Get Time Attendance
        GET
      • Workin
        POST
      • Get Employee WorkIn Site
        GET
      • Get Timestamps
        GET
      • Get TimeStamp Attachments
        GET
      • Get Workin Sites
        GET
      • Get IOMO Logs
        GET
      • Add Timestamps
        POST
    • Asset
      • Get Asset list
      • Update Asset
      • Get Employee Assets
    • Employee
      • Get Employee
      • Update Employee
      • Get Employees List
      • Get Mastertypes List
      • Get Name Prefixes
      • Get Document Types
      • Update Employee
      • Add Employee Attachment
      • Update Employee Address
      • Update Employee Family
      • Update Employee Contact
      • Update Employee Education
      • Update Employee Experience
      • Update Employee CustomField
      • Delete Employee
      • Get Employee Role
      • Get Employee Movement Lists
    • 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
      POST
    • Update Financial Transactions
      PUT
    • Create Loan
      POST
    • Get Cost Center
      POST
  • 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. Attendance

Workin

POST
https://api.gofive.co.th/empeo/api/v1/workin
📎 Attachment Limit
จำนวนไฟล์แนบสูงสุดต่อ 1 Request: 20 ไฟล์
หากส่งเกินจำนวนนี้ ระบบจะตอบกลับ HTTP 429 Too Many Requests

Request

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

Body Params application/jsonRequired

Example
{
    "EmployeeRefId": "EMP001",
    "WorkinType": 1,
    "Latitude": 13.736717,
    "Longitude": 100.523186,
    "Location": "13.736717,100.523186",
    "LocationName": "อาคารตัวอย่าง ชั้น 10",
    "UUID": "a1b2c3d4-0000-0000-0000-000000000020",
    "Major": "1001",
    "Minor": "2001",
    "Note": "เข้างานปกติ",
    "IsWorkFromHome": false,
    "Distance": 12.5,
    "DeviceId": "DEVICE-EXAMPLE-0001",
    "Attachments": [
        {
            "AttachmentFilename": "workin-photo.jpg",
            "AttachmentURL": "https://cdn.example.com/timestamp/workin-photo.jpg"
        }
    ]
}

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/workin' \
--header 'Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY' \
--header 'x-DeviceId: DEVICE-EXAMPLE-0001' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "EmployeeRefId": "EMP001",
    "WorkinType": 1,
    "Latitude": 13.736717,
    "Longitude": 100.523186,
    "Location": "13.736717,100.523186",
    "LocationName": "อาคารตัวอย่าง ชั้น 10",
    "UUID": "a1b2c3d4-0000-0000-0000-000000000020",
    "Major": "1001",
    "Minor": "2001",
    "Note": "เข้างานปกติ",
    "IsWorkFromHome": false,
    "Distance": 12.5,
    "DeviceId": "DEVICE-EXAMPLE-0001",
    "Attachments": [
        {
            "AttachmentFilename": "workin-photo.jpg",
            "AttachmentURL": "https://cdn.example.com/timestamp/workin-photo.jpg"
        }
    ]
}'

Responses

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

Example
{
    "Status": {
        "Code": "1000",
        "Description": "Success!"
    },
    "Data": {
        "result": true,
        "message": "บันทึกเวลาเรียบร้อย",
        "message_EN": "Saved successfully."
    }
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429
🔴500Server Error
Modified at 2026-08-17 17:14:05
Previous
Get Time Attendance
Next
Get Employee WorkIn Site
Built with