Home / Resources / API Reference

Project

Base route: /api/project

Create project step

Initializes a new deployment step within a project based on a specific step template.

Request

Parameters
projectId
string
required
The target project identifier.
name
string
required
The name of the step as it appears in the process.
stepTemplateId
string
required
The ID of the template used for this step's logic.
Request body

POST /api/project/step {   "projectId": "string",   "name": "string",   "stepTemplateId": "string" }

Response

Parameters
projectStepId
string
The identifier for the newly created deployment step.
Response body

{   "projectStepId": "string" }