- Authentication API
- Employee
- Get EmployeeGET
- Update EmployeePUT
- Get List EmployeesGET
- Get Employees List GET
- Get Mastertypes ListGET
- Get Name PrefixesGET
- Get Document TypesGET
- Update EmployeePOST
- Add Employee AttachmentPOST
- Update Employee AddressPOST
- Update Employee FamilyPOST
- Update Employee InformationPOST
- Update Employee ShiftsPOST
- Update Employee ContactPOST
- Update Employee EducationPOST
- Update Employee ExperiencePOST
- Update Employee CustomFieldPOST
- Delete EmployeePOST
- Get Employee ShiftsGET
- Get Employee RoleGET
- Get Employee Movement ListsGET
- Leave
- Master
- Payroll
- Attendance
- Welfare
- Time
- AppMan
- Asset
- Recruitment
Add Timestamps
Developing
POST
https://api.gofive.co.th/empeo/api/v1/timestamps
Request
Header Params
Ocp-Apim-Subscription-Key
string
required
Example:
WPe123a9RKbcfLQNSztr45
Authorization
string
required
Example:
bearer {token}
Body Params application/json
array of:
companyName
string
required
timeStamps
array [object {3}]
required
date
string
required
time
string
required
employeeNo
string
required
Example
[
{
"companyName": "โกไฟว์",
"timeStamps": [
{
"date": "2023-10-06",
"time": "10:00",
"employeeNo": "80100"
},
{
"date": "2023-10-02",
"time": "10:00",
"employeeNo": "80100"
},
{
"date": "2023-10-03",
"time": "10:00",
"employeeNo": "80100"
}
]
},
{
"companyName": "ที.เค.เอส.เทคโนโลยีจำกัดมหาชน",
"timeStamps": [
{
"date": "2023-10-01",
"time": "10:00",
"employeeNo": "71087"
},
{
"date": "2023-10-02",
"time": "10:00",
"employeeNo": "71087"
},
{
"date": "2023-10-03",
"time": "10:00",
"employeeNo": "71087"
}
]
}
]
Request 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 --request POST 'https://api.gofive.co.th/empeo/api/v1/timestamps' \
--header 'Ocp-Apim-Subscription-Key: WPe123a9RKbcfLQNSztr45' \
--header 'Authorization: bearer {token}' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"companyName": "โกไฟว์",
"timeStamps": [
{
"date": "2023-10-06",
"time": "10:00",
"employeeNo": "80100"
},
{
"date": "2023-10-02",
"time": "10:00",
"employeeNo": "80100"
},
{
"date": "2023-10-03",
"time": "10:00",
"employeeNo": "80100"
}
]
},
{
"companyName": "ที.เค.เอส.เทคโนโลยีจำกัดมหาชน",
"timeStamps": [
{
"date": "2023-10-01",
"time": "10:00",
"employeeNo": "71087"
},
{
"date": "2023-10-02",
"time": "10:00",
"employeeNo": "71087"
},
{
"date": "2023-10-03",
"time": "10:00",
"employeeNo": "71087"
}
]
}
]'
Responses
🟢200Success
application/json
Body
statusCode
integer
required
message
string
required
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": {
"result": true,
"message": "Save successfully!"
}
}
🟠400Bad Request
🟠403Forbidden
Modified at 2023-10-31 08:38:03