GET api/Project?taskListId={taskListId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taskListId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MyItemsDetailsViewDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | integer |
None. |
|
| ProjectName | string |
None. |
|
| ItemId | integer |
None. |
|
| ParentItemId | integer |
None. |
|
| Title | string |
None. |
|
| StepName | string |
None. |
|
| Color | string |
None. |
|
| IsLastStep | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProjectId": 1,
"ProjectName": "sample string 2",
"ItemId": 3,
"ParentItemId": 1,
"Title": "sample string 4",
"StepName": "sample string 5",
"Color": "sample string 6",
"IsLastStep": true
},
{
"ProjectId": 1,
"ProjectName": "sample string 2",
"ItemId": 3,
"ParentItemId": 1,
"Title": "sample string 4",
"StepName": "sample string 5",
"Color": "sample string 6",
"IsLastStep": true
}
]
application/xml, text/xml
Sample:
<ArrayOfMyItemsDetailsViewDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpmNew.Model.MobileDTO">
<MyItemsDetailsViewDTO>
<Color>sample string 6</Color>
<IsLastStep>true</IsLastStep>
<ItemId>3</ItemId>
<ParentItemId>1</ParentItemId>
<ProjectId>1</ProjectId>
<ProjectName>sample string 2</ProjectName>
<StepName>sample string 5</StepName>
<Title>sample string 4</Title>
</MyItemsDetailsViewDTO>
<MyItemsDetailsViewDTO>
<Color>sample string 6</Color>
<IsLastStep>true</IsLastStep>
<ItemId>3</ItemId>
<ParentItemId>1</ParentItemId>
<ProjectId>1</ProjectId>
<ProjectName>sample string 2</ProjectName>
<StepName>sample string 5</StepName>
<Title>sample string 4</Title>
</MyItemsDetailsViewDTO>
</ArrayOfMyItemsDetailsViewDTO>