Gofive OpenAPI
empeo
VenioeTaxGo
empeo
VenioeTaxGo
  1. Timesheet
  • Employee
    • Get Employee
      GET
    • Update Employee
      PUT
    • Get List Employees
      GET
    • 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 Information
      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
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
  • Shifts
    • Get Shift Details
      GET
    • Update Employee Shifts
      POST
    • Get Employee Shifts
      GET
    • Swap Employee Shifts
      POST
  • Authentication API
    • Authorization
  • Leave
    • Get Employee Documents
  • Payroll
    • Create Loan
    • Get Loan (Draft)
    • Get Cost Center
    • Get Financial Transactions
    • Update Financial Transactions
  • Attendance
    • Get Time Attendance
    • Get Time Attendances Lite
  • Welfare
    • Get Shuttle Buses
    • Get Passengers
  • Time
    • Workin
    • Get Employee WorkIn Site
    • Get Timestamps
    • Get TimeStamp Attachments
    • Get Workin Sites
    • Get IOMO Logs
    • Add Timestamps
  • AppMan
    • Update status criminal checker
    • Send Email Notification when completed
  • Asset
    • Get Asset list
    • Update Asset
    • Get Employee Assets
  • Recruitment
    • Get Candidate
    • Get Recruitment หน้าหลัก
  • Goals
    • Update KPI
  • Learn
    • GetCourse
  • Praise
    • GetEmployeePraisesByEmployeeNoAsync
    • GetPraiseTypesAsync
    • CreatePraiseRewardManagerAsync
  • Achievement
    • GetEmployeeAchievementsByEmployeeNoAsync
    • CreateAchievementCardAsync
    • CreateAchievementAwardDocumentAsync
  • Timesheet
    • SearchProjects
      POST
    • SearchTasks
      POST
    • AddTimeSheetEntry
      POST
  1. Timesheet

SearchProjects

Developing
POST
https://localhost:5055/api/v1/timesheets/projects/search
API to search for projects 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 --request POST 'https://localhost:5055/api/v1/timesheets/projects/search' \
--header 'Ocp-Apim-Subscription-Key: <key>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "q": "001",
    "limit": 10,
    "includeInactive": false
  }'

Responses

🟢200Success
application/json
Body

Example
{
    "status": {
        "code": "200",
        "description": "Success"
    },
    "data": [
        {
            "projectCode": "A001",
            "projectName": "emrena Gamification Project",
            "projectStatus": "ACTIVE",
            "assignmentType": "INDIVIDUAL",
            "assignees": [
                {
                    "employeeCode": "EMP00123",
                    "employeeName": "Ornyak..."
                },
                {
                    "employeeCode": "EMP00124",
                    "employeeName": "Piyapo..."
                },
                {
                    "employeeCode": "EMP00125",
                    "employeeName": "Jirawut..."
                }
            ],
            "hasProjectPeriod": true,
            "startDate": "2025-09-17",
            "endDate": null,
            "hasAccountingInfo": true,
            "accountCode": "SKU112"
        }
    ]
}
🟠401User authentication required V2.
Modified at 2026-03-31 03:38:46
Previous
CreateAchievementAwardDocumentAsync
Next
SearchTasks
Built with