GET api/Dashboard/GetTracker?employeeId={employeeId}&type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | string |
Required |
|
| type | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Tracker| Name | Description | Type | Additional information |
|---|---|---|---|
| TrackerId | integer |
None. |
|
| TrackerType | string |
None. |
|
| NoOfHours | integer |
None. |
|
| HourDesc | string |
None. |
|
| Link | Link |
None. |
Response Formats
application/json, text/json
Sample:
{
"trackerId": 1,
"trackerType": "sample string 2",
"noOfHours": 3,
"hourDesc": "sample string 4",
"link": {
"text": "sample string 1",
"url": "sample string 2"
}
}
application/xml, text/xml
Sample:
<Tracker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
<HourDesc>sample string 4</HourDesc>
<Link>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Link>
<NoOfHours>3</NoOfHours>
<TrackerId>1</TrackerId>
<TrackerType>sample string 2</TrackerType>
</Tracker>