GET api/timeEmployee/employeeUnapproved/{employeeID}

Get summary of unapproved segments and unresolved issues for a specific employee

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeID

ID of Employee we're searching for.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of timeUnapprovedSummary
NameDescriptionTypeAdditional information
EmployeeID

integer

None.

EmployeeName

string

None.

OnDate

date

None.

UnapprovedSegmentCount

integer

None.

UnresolvedIssueCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EmployeeID": 1,
    "EmployeeName": "sample string 2",
    "OnDate": "2025-12-06T23:42:06.4142178+00:00",
    "UnapprovedSegmentCount": 4,
    "UnresolvedIssueCount": 5
  },
  {
    "EmployeeID": 1,
    "EmployeeName": "sample string 2",
    "OnDate": "2025-12-06T23:42:06.4142178+00:00",
    "UnapprovedSegmentCount": 4,
    "UnresolvedIssueCount": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOftimeUnapprovedSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <timeUnapprovedSummary>
    <EmployeeID>1</EmployeeID>
    <EmployeeName>sample string 2</EmployeeName>
    <OnDate>2025-12-06T23:42:06.4142178+00:00</OnDate>
    <UnapprovedSegmentCount>4</UnapprovedSegmentCount>
    <UnresolvedIssueCount>5</UnresolvedIssueCount>
  </timeUnapprovedSummary>
  <timeUnapprovedSummary>
    <EmployeeID>1</EmployeeID>
    <EmployeeName>sample string 2</EmployeeName>
    <OnDate>2025-12-06T23:42:06.4142178+00:00</OnDate>
    <UnapprovedSegmentCount>4</UnapprovedSegmentCount>
    <UnresolvedIssueCount>5</UnresolvedIssueCount>
  </timeUnapprovedSummary>
</ArrayOftimeUnapprovedSummary>