Home / Resources / API Reference

Project

Base route: /api/project

Create project channel

Creates a new channel for release management, allowing for parallel versions and specific promotion rules via lifecycles.

Request

Parameters
projectId
string
required
The project where the channel will be created.
name
string
required
The name of the new channel.
lifecycleId
string
required
The ID of the lifecycle that governs this channel.
Request body

POST /api/project/channel {   "projectId": "string",   "name": "string",   "description": "string",   "lifecycleId": "string",   "isDefault": false }

Response

Parameters
channelId
string
The unique identifier of the new channel.
Response body

{   "channelId": "string" }