Skip to main content
POST
/
project
/
create
Create Project
curl --request POST \
  --url http://localhost:5252/project/create \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: <api-key>' \
  --data '
{
  "project_name": "<string>"
}
'
{
  "id": "<string>",
  "project_name": "<string>",
  "path": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-token
string
header
required

Body

application/json
project_name
string
required

Response

Created

id
string
project_name
string
path
string
created_at
string<date-time>