GET V3/odata/WeekTaskPlanning({key})
Gets entity by key
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
TaskPlanningId from WeekTaskPlanning entity |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
QicsUnity.Api.Areas.V3.Models.WeekTaskPlanning| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskPlanningId |
Gets or sets task planning id |
integer |
Required 64-bit signed integer |
| TaskId |
Gets or sets task id |
integer |
Required 64-bit signed integer |
| Date |
Gets or sets date |
date |
Required date and time of day |
| Hours |
Gets or sets hours |
decimal number |
Required |
Response Formats
application/json, text/json, application/scim+json
Sample:
{
"TaskPlanningId": "1",
"TaskId": "2",
"Date": "2025-11-03T01:54:19.9693809+00:00",
"Hours": "4"
}
application/xml, text/xml
Sample:
<WeekTaskPlanning xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V3.Models"> <Date>2025-11-03T01:54:19.9693809+00:00</Date> <Hours>4</Hours> <TaskId>2</TaskId> <TaskPlanningId>1</TaskPlanningId> </WeekTaskPlanning>