Project

On this Employee Project page you can use the method :

1. GET
  • Get detail Employee Projects with employeeNo parameter

Objective : To get the details of the project that is being done by employees with the Employeeno parameter

Method : GET
API Endpoint : [[baseurl]]/api/integration/v1/employee/projects?active=[[value]]&employeeNo=[[employeenumber]]

๐Ÿ“Notes Parameter [[value]] filled with “true” If the employee's data is active or “false” If the employee's data is not active. And parameters [[employeenumber]] Filled with the desired employee number.

HEADER

X-TenantID: [[tenantid]]
Authorization: Bearer [[accesstoken]]
CONSUME VIA CURL

curl --location --request GET '[[baseurl]]/api/integration/v1/employee/projects?active=[[value]]&employeeNo=[[employeenumber]]' 
--header 'X-TenantID: [[tenantid]]' 
--header 'Authorization: Bearer [[accesstoken]]'

๐Ÿ“Notes To find out [[baseurl]], And [[tenantid]], You can learn about it on the page Integration Credential. And for [[accesstoken]] can be studied on the page Authorization Token.

API Response :

[
  {
    "employeeId": "eba2b46b-929c-11eb-97ce-0adbcc9eaaa8",
    "employeeNo": "1219003",
    "details": [
      {
        "id": "7278cf35-4a7a-42ca-87a0-820af196062e",
        "name": "StarConnect",
        "startDate": "2021-02-01",
        "endDate": "2021-12-31",
        "projectManagerEmployeeNo": "1119031",
        "projectMaangerEmployeeName": "Tonny Soeroso",
        "active": true
      },
      {
        "id": "83250377-5acc-40b3-afaa-ccf5c5f3bda7",
        "name": "Project Expense",
        "startDate": "2021-08-20",
        "endDate": "2021-08-29",
        "projectManagerEmployeeNo": "1119031",
        "projectMaangerEmployeeName": "Tonny Soeroso",
        "active": true
      }
    ]
  }
]