Home / Resources / API Reference

Project

Base route: /api/project

Get project steps

Retrieves the full list of deployment steps configured for a specific project, including filtering rules, execution conditions, and properties.

Request

Parameters
projectId
string
required
The unique identifier of the project to retrieve steps for.
Query string

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

Response

Parameters
steps
array
An array containing step definitions and their configurations.
Response body

{   "projectId": "string",   "steps": [     {       "projectStepId": "string",       "name": "string",       "order": 0,       "disabled": false     }   ] }