POST api/agile/createiterations

Create 1 or more iterations

Request Information

URI Parameters

None.

Body Parameters

NewIteration
NameDescriptionTypeAdditional information
Start

date

None.

DaysPerIteration

integer

None.

NumberOfIterations

integer

None.

TargetPoints

integer

None.

TargetHours

integer

None.

PlannerId

globally unique identifier

None.

GlobalIteration

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Start": "2024-10-18T08:34:27.826741+00:00",
  "DaysPerIteration": 2,
  "NumberOfIterations": 3,
  "TargetPoints": 4,
  "TargetHours": 5,
  "PlannerId": "dac039e1-c345-4fa7-adaa-8b2144d269eb",
  "GlobalIteration": true
}

Response Information

Resource Description

Collection of Iteration
NameDescriptionTypeAdditional information
PlanId

globally unique identifier

None.

Name

string

None.

Start

date

None.

End

date

None.

TargetPoints

integer

None.

TargetHours

integer

None.

ExternalId

string

None.

ExternalUrl

string

None.

id

globally unique identifier

None.

ConfigId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PlanId": "7356d46e-e735-43f4-b682-ffec5028aa3d",
    "Name": "sample string 2",
    "Start": "2024-10-18T08:34:27.826741+00:00",
    "End": "2024-10-18T08:34:27.826741+00:00",
    "TargetPoints": 5,
    "TargetHours": 6,
    "ExternalId": "sample string 7",
    "ExternalUrl": "sample string 8",
    "id": "ddfa35be-f65f-461d-a524-7b66cad5cb95",
    "ConfigId": "f2f44651-c3b7-481d-a199-d25e05e24987"
  },
  {
    "PlanId": "7356d46e-e735-43f4-b682-ffec5028aa3d",
    "Name": "sample string 2",
    "Start": "2024-10-18T08:34:27.826741+00:00",
    "End": "2024-10-18T08:34:27.826741+00:00",
    "TargetPoints": 5,
    "TargetHours": 6,
    "ExternalId": "sample string 7",
    "ExternalUrl": "sample string 8",
    "id": "ddfa35be-f65f-461d-a524-7b66cad5cb95",
    "ConfigId": "f2f44651-c3b7-481d-a199-d25e05e24987"
  }
]