Gofive OpenAPI
empeo
VenioeTaxGo
empeo
VenioeTaxGo
  1. Timesheet
  • Authentication
    • Authorization
      POST
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
  • Recruitment
    • Get Candidate
      GET
    • Get Recruitment หน้าหลัก
      POST
  • Core HR
    • Attendance
      • Get Time Attendance
      • Get Time Attendances Lite
      • 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
      • Update Employee
      • Get List Employees
      • 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 Information
      • 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
      • SearchProjects
        POST
      • SearchTasks
        POST
      • AddTimeSheetEntry
        POST
  • Payroll
    • Create Loan
      POST
    • Get Loan
      GET
    • Get Cost Center
      POST
    • Get Financial Transactions
      POST
    • Update Financial Transactions
      PUT
  • Welfare
    • Get Shuttle Buses
      GET
    • Get Passengers
      GET
  • Goals
    • Update KPI
  • Engagement
    • Achievement
      • GetEmployeeAchievementsByEmployeeNoAsync
      • CreateAchievementCardAsync
      • CreateAchievementAwardDocumentAsync
    • Praise
      • GetEmployeePraisesByEmployeeNoAsync
      • GetPraiseTypesAsync
      • CreatePraiseRewardManagerAsync
  1. Timesheet

SearchTasks

POST
https://api-bff-dev.empeo.com/api/v1/timesheets/tasks/search
API to search for tasks information by using text query

Request

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

Body Params application/jsonRequired

Example
{
    "q": "001",
    "limit": 10,
    "includeInactive": false
  }

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-bff-dev.empeo.com/api/v1/timesheets/tasks/search' \
--header 'Ocp-Apim-Subscription-Key: <key>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "q": "001",
    "limit": 10,
    "includeInactive": false
  }'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
  "status": {
    "code": "200",
    "description": "Success"
  },
  "data": [
    {
      "taskId": "TASK-1001",
      "taskName": "Development",
      "taskStatus": "ACTIVE",
      "hasAccountingInfo": true,
      "accountCode": "IMC001"
    },
    {
      "taskId": "TASK-1002",
      "taskName": "Development Support",
      "taskStatus": "ACTIVE",
      "hasAccountingInfo": true,
      "accountCode": "IMC002"
    }
  ]
}
🟠401User authentication required V2.
Modified at 2026-04-28 10:40:28
Previous
SearchProjects
Next
AddTimeSheetEntry
Built with