Dokploy

Project

POST
/project.create

Project create

/project.create

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

name
Required
string

Minimum length: 1

descriptionstring | null

curl -X POST "http://your-dokploy-instance.com/api/project.create" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "description": "string"
  }'

Successful response

GET
/project.one

Project one

/project.one

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Query Parameters

projectId
Required
string

Minimum length: 1
curl -X GET "http://your-dokploy-instance.com/api/project.one?projectId=string" \
  -H "Authorization: Bearer <token>"

Successful response

GET
/project.all

Project all

/project.all

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

curl -X GET "http://your-dokploy-instance.com/api/project.all" \
  -H "Authorization: Bearer <token>"

Successful response

POST
/project.remove

Project remove

/project.remove

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

projectId
Required
string

Minimum length: 1
curl -X POST "http://your-dokploy-instance.com/api/project.remove" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "projectId": "string"
  }'

Successful response

POST
/project.update

Project update

/project.update

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

name
Required
string

Minimum length: 1

descriptionstring | null

projectId
Required
string

Minimum length: 1
curl -X POST "http://your-dokploy-instance.com/api/project.update" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "description": "string",
    "projectId": "string"
  }'

Successful response