POST api/SubProject/GetTaskBoardFolderTree

Get project task board folder tree in a management space

Request Information

URI Parameters

None.

Body Parameters

TaskBoardFolderTreeBinder
NameDescriptionTypeAdditional information
ProjectId

integer

None.

SpaceId

integer

None.

IncludeClosed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "SpaceId": 2,
  "IncludeClosed": true
}

application/xml, text/xml

Sample:
<TaskBoardFolderTreeBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
  <IncludeClosed>true</IncludeClosed>
  <ProjectId>1</ProjectId>
  <SpaceId>2</SpaceId>
</TaskBoardFolderTreeBinder>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Get project task board folder tree in a management space

API_Data_SubProjectNodeModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

SubProjectNodeModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  },
  "Data": {
    "projectId": 1,
    "subprojectId": 2,
    "subprojectName": "sample string 3",
    "subprojectType": 4,
    "isClosed": true,
    "sprintState": 1,
    "hasChild": true,
    "nodes": []
  }
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.