Lybic Docs

Create Project

Creates a new project.

POST
/api/orgs/{orgId}/projects

Creates a new project.

Path Parameters

orgId*string

The organization ID

Request Body

application/json

name*string

Name of the project.

Response Body

application/json

curl -X POST "https://loading/api/orgs/string/projects" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "id": "string",
  "name": "string",
  "createdAt": "string",
  "defaultProject": true
}