Home / Resources / API Reference

Project

Base route: /api/project

Get project channels

Retrieves all release channels defined for a specific project, including their lifecycle rules and default status.

Request

Parameters
projectId
string
required
The identifier of the project to query.
Query string

GET /api/project/channels?projectId=...

Response

Parameters
channels
array
A list of channel objects belonging to the project.
Response body

{   "projectId": "string",   "channels": [     {       "channelId": "string",       "name": "string",       "lifecycleId": "string",       "isDefault": true     }   ] }