GET v1/Employees/GetEmployeeIncidentsByEmployeeNumber/{employeeNumber}
Retrieves a list of Employee Incidents by Employee Number
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeNumber | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EmployeeIncidentMetaData| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeIncidentID |
Unique ID for specific employee incident |
integer |
None. |
| IncidentType |
The type of incident by description, required for adding or updating incidents |
string |
None. |
| IncidentRating |
The rating for the incident |
string |
None. |
| ReportedBy |
The userID who reported the incident |
globally unique identifier |
None. |
| Date |
Date of the incident (optional) |
date |
None. |
| FollowUpDate |
Follow up date (optional) |
date |
None. |
| Notes |
Note details for the incident |
string |
None. |
| IncludeInNotifications |
Include in notifications |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EmployeeIncidentID": 1,
"IncidentType": "sample string 2",
"IncidentRating": "sample string 3",
"ReportedBy": "fbb75cda-27f4-4fe3-b50f-95e85ad697fe",
"Date": "2026-05-14T08:53:22.345736-04:00",
"FollowUpDate": "2026-05-14T08:53:22.345736-04:00",
"Notes": "sample string 4",
"IncludeInNotifications": true
},
{
"EmployeeIncidentID": 1,
"IncidentType": "sample string 2",
"IncidentRating": "sample string 3",
"ReportedBy": "fbb75cda-27f4-4fe3-b50f-95e85ad697fe",
"Date": "2026-05-14T08:53:22.345736-04:00",
"FollowUpDate": "2026-05-14T08:53:22.345736-04:00",
"Notes": "sample string 4",
"IncludeInNotifications": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployeeIncidentMetaData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.TimeAttendance.WebAPI.Models">
<EmployeeIncidentMetaData>
<Date>2026-05-14T08:53:22.345736-04:00</Date>
<EmployeeIncidentID>1</EmployeeIncidentID>
<FollowUpDate>2026-05-14T08:53:22.345736-04:00</FollowUpDate>
<IncidentRating>sample string 3</IncidentRating>
<IncidentType>sample string 2</IncidentType>
<IncludeInNotifications>true</IncludeInNotifications>
<Notes>sample string 4</Notes>
<ReportedBy>fbb75cda-27f4-4fe3-b50f-95e85ad697fe</ReportedBy>
</EmployeeIncidentMetaData>
<EmployeeIncidentMetaData>
<Date>2026-05-14T08:53:22.345736-04:00</Date>
<EmployeeIncidentID>1</EmployeeIncidentID>
<FollowUpDate>2026-05-14T08:53:22.345736-04:00</FollowUpDate>
<IncidentRating>sample string 3</IncidentRating>
<IncidentType>sample string 2</IncidentType>
<IncludeInNotifications>true</IncludeInNotifications>
<Notes>sample string 4</Notes>
<ReportedBy>fbb75cda-27f4-4fe3-b50f-95e85ad697fe</ReportedBy>
</EmployeeIncidentMetaData>
</ArrayOfEmployeeIncidentMetaData>