Home / Resources / API Reference

Lifecycle

Base route: /api/lifecycle

Add lifecycle phase

Adds a new step or phase to an existing lifecycle, specifying criteria for progression and environment targets.

Request

Parameters
lifecycleId
string
required
Parent lifecycle ID.
name
string
required
Name of the new phase (e.g., Testing).
Request body

POST /api/lifecycle/phase {   "lifecycleId": "string",   "name": "string",   "sortOrder": 0,   "environments": [] }

Response

Parameters
phaseId
string
The generated identifier for the new phase.
Response body

{   "phaseId": "string" }