Dokploy
Generated

Schedule

POST
/schedule.create

Schedule create

/schedule.create

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Request Body

application/jsonRequired

scheduleIdstring

name
Required
string

cronExpression
Required
string

appNamestring

serviceNamestring | null

shellTypestring

Value in: "bash" | "sh"

scheduleTypestring

Value in: "application" | "compose" | "server" | "dokploy-server"

command
Required
string

scriptstring | null

applicationIdstring | null

composeIdstring | null

serverIdstring | null

userIdstring | null

enabledboolean

createdAtstring

curl -X POST "https://your-dokploy-instance.com/api/schedule.create" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "scheduleId": "string",
    "name": "string",
    "cronExpression": "string",
    "appName": "string",
    "serviceName": "string",
    "shellType": "bash",
    "scheduleType": "application",
    "command": "string",
    "script": "string",
    "applicationId": "string",
    "composeId": "string",
    "serverId": "string",
    "userId": "string",
    "enabled": true,
    "createdAt": "string"
  }'

Successful response

{}

POST
/schedule.update

Schedule update

/schedule.update

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Request Body

application/jsonRequired

scheduleId
Required
string

Minimum length: 1

name
Required
string

cronExpression
Required
string

appNamestring

serviceNamestring | null

shellTypestring

Value in: "bash" | "sh"

scheduleTypestring

Value in: "application" | "compose" | "server" | "dokploy-server"

command
Required
string

scriptstring | null

applicationIdstring | null

composeIdstring | null

serverIdstring | null

userIdstring | null

enabledboolean

createdAtstring

curl -X POST "https://your-dokploy-instance.com/api/schedule.update" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "scheduleId": "string",
    "name": "string",
    "cronExpression": "string",
    "appName": "string",
    "serviceName": "string",
    "shellType": "bash",
    "scheduleType": "application",
    "command": "string",
    "script": "string",
    "applicationId": "string",
    "composeId": "string",
    "serverId": "string",
    "userId": "string",
    "enabled": true,
    "createdAt": "string"
  }'

Successful response

{}

POST
/schedule.delete

Schedule delete

/schedule.delete

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Request Body

application/jsonRequired

scheduleId
Required
string

curl -X POST "https://your-dokploy-instance.com/api/schedule.delete" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "scheduleId": "string"
  }'

Successful response

{}

GET
/schedule.list

Schedule list

/schedule.list

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Query Parameters

id
Required
string

scheduleType
Required
string

Value in: "application" | "compose" | "server" | "dokploy-server"
curl -X GET "https://your-dokploy-instance.com/api/schedule.list?id=string&scheduleType=application" \
  -H "Authorization: <token>"

Successful response

{}

GET
/schedule.one

Schedule one

/schedule.one

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Query Parameters

scheduleId
Required
string

curl -X GET "https://your-dokploy-instance.com/api/schedule.one?scheduleId=string" \
  -H "Authorization: <token>"

Successful response

{}

POST
/schedule.runManually

Schedule run Manually

/schedule.runManually

The Authorization access token

Authorization

Authorization<token>

API key authentication using Authorization header

In: header

Request Body

application/jsonRequired

scheduleId
Required
string

Minimum length: 1
curl -X POST "https://your-dokploy-instance.com/api/schedule.runManually" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "scheduleId": "string"
  }'

Successful response

{}