Home / Resources / API Reference

Project

Base route: /api/project

Update project step

Updates the configuration of an existing project step, including execution targets, error actions, and custom properties.

Request

Parameters
projectStepId
string
required
Unique identifier of the step to update.
disabled
boolean
required
Toggle to skip this step during deployment.
propertiesJson
string
optional
Serialized JSON string containing step-specific property values.
Request body

PUT /api/project/step {   "projectStepId": "string",   "name": "string",   "description": "string",   "disabled": true,   "parallelMachines": 1,   "propertiesJson": "string" }

Response

200 OK