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
[
{
"EventDate": "2025-11-24T10:28:45.0898946+00:00",
"Description": "sample string 2",
"EmployeeName": "sample string 3"
},
{
"EventDate": "2025-11-24T10:28:45.0898946+00:00",
"Description": "sample string 2",
"EmployeeName": "sample string 3"
},
{
"EventDate": "2025-11-24T10:28:45.0898946+00:00",
"Description": "sample string 2",
"EmployeeName": "sample string 3"
}
]
text/html
[{"EventDate":"2025-11-24T10:28:45.0898946+00:00","Description":"sample string 2","EmployeeName":"sample string 3"},{"EventDate":"2025-11-24T10:28:45.0898946+00:00","Description":"sample string 2","EmployeeName":"sample string 3"},{"EventDate":"2025-11-24T10:28:45.0898946+00:00","Description":"sample string 2","EmployeeName":"sample string 3"}]
application/xml, text/xml
<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-11-24T10:28:45.0898946+00:00</EventDate>
</ManagementTODO>
<ManagementTODO>
<Description>sample string 2</Description>
<EmployeeName>sample string 3</EmployeeName>
<EventDate>2025-11-24T10:28:45.0898946+00:00</EventDate>
</ManagementTODO>
<ManagementTODO>
<Description>sample string 2</Description>
<EmployeeName>sample string 3</EmployeeName>
<EventDate>2025-11-24T10:28:45.0898946+00:00</EventDate>
</ManagementTODO>
</ArrayOfManagementTODO>