Home / Resources / API Reference

Project

Base route: /api/project

Create project

This API endpoint creates a new project within a specific workspace. Projects serve as the primary container for deployment processes, releases, and variables.

Request

Parameters
workspaceId
string
required
The unique identifier of the workspace.
name
string
required
The name of the project.
description
string
optional
A brief summary of the project purpose.
Request body

POST /api/project {   "workspaceId": "string",   "name": "string",   "description": "string" }

Response

Parameters
projectId
string
The unique ID assigned to the new project.
Response body

{   "projectId": "string" }