v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Release Templates

Create or update a milestone progression

Enterprise feature

Creates or updates a milestone progression by source milestone ID. If a progression with the given source milestone exists, it will be updated; otherwise, a new one will be created.

put/api/admin/projects/{project}/features/{featureName}/environments/{environment}/progressions/{id}

Path parameters

projectstring required
featureNamestring required
environmentstring required
idstring required

Request body

targetMilestonestring required

The ID of the target milestone

Example request

{
  "targetMilestone": "11K7NXD655W7R89659K58RE07B",
  "transitionCondition": {
    "intervalMinutes": 30
  }
}

Response

#/components/schemas/milestoneProgressionSchema

sourceMilestonestring required

The ID of the source milestone

targetMilestonestring required

The ID of the target milestone

Example response

{
  "sourceMilestone": "milestone-1",
  "targetMilestone": "milestone-2",
  "transitionCondition": {
    "intervalMinutes": 30
  }
}