Home / Resources / API Reference

Project

Base route: /api/project

Update project channel

Updates the configuration of an existing project channel, including its name, description, associated lifecycle, and default status.

Request

Parameters
channelId
string
required
The unique identifier of the channel to update.
lifecycleId
string
required
The ID of the lifecycle to be assigned to this channel.
isDefault
boolean
required
Set to true to make this the primary channel for the project.
Request body

PUT /api/project/channel {   "channelId": "string",   "name": "string",   "description": "string",   "lifecycleId": "string",   "isDefault": true }

Response

200 OK