POST api/SubProject/Sprints

Get sprints of a space.

Request Information

URI Parameters

None.

Body Parameters

SprintsBinder
NameDescriptionTypeAdditional information
ProjectId

integer

None.

SpaceIds

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "SpaceIds": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<SprintsBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
  <ProjectId>1</ProjectId>
  <SpaceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </SpaceIds>
</SprintsBinder>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Get sprints of a space.

API_Data_IEnumerableOfSubProjectNodeModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

Collection of 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": []
    },
    {
      "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.