Base route: /api/lifecycle
This API endpoint creates a new software delivery lifecycle. A lifecycle defines the phases and environments through which an application progresses.
POST /api/lifecycle
{
"workspaceId": "string",
"name": "string",
"description": "string",
"phases": [
{
"phaseId": "string",
"name": "string",
"sortOrder": 0,
"environments": []
}
]
}
{
"lifecycleId": "string"
}