POST api/GetManagementTODOList
Get an employee's TODO List
Request Information
Payload
Name | Payload Parameters | Additional information |
---|---|---|
Parameters | int Personnel_Number |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
[ { "EventDate": "2025-04-29T19:40:57.7922423+01:00", "Description": "sample string 2", "EmployeeName": "sample string 3" }, { "EventDate": "2025-04-29T19:40:57.7922423+01:00", "Description": "sample string 2", "EmployeeName": "sample string 3" }, { "EventDate": "2025-04-29T19:40:57.7922423+01:00", "Description": "sample string 2", "EmployeeName": "sample string 3" } ]
text/html
Sample:
[{"EventDate":"2025-04-29T19:40:57.7922423+01:00","Description":"sample string 2","EmployeeName":"sample string 3"},{"EventDate":"2025-04-29T19:40:57.7922423+01:00","Description":"sample string 2","EmployeeName":"sample string 3"},{"EventDate":"2025-04-29T19:40:57.7922423+01:00","Description":"sample string 2","EmployeeName":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfManagementTODO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Carval.SelfService.BLL.Management"> <ManagementTODO> <Description>sample string 2</Description> <EmployeeName>sample string 3</EmployeeName> <EventDate>2025-04-29T19:40:57.7922423+01:00</EventDate> </ManagementTODO> <ManagementTODO> <Description>sample string 2</Description> <EmployeeName>sample string 3</EmployeeName> <EventDate>2025-04-29T19:40:57.7922423+01:00</EventDate> </ManagementTODO> <ManagementTODO> <Description>sample string 2</Description> <EmployeeName>sample string 3</EmployeeName> <EventDate>2025-04-29T19:40:57.7922423+01:00</EventDate> </ManagementTODO> </ArrayOfManagementTODO>