Authorization: ********************{
"q": "001",
"limit": 10,
"includeInactive": false
}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
}'{
"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"
}
]
}