Skip to main content
POST
/
v1
/
game
/
schedules
/
{serverId}
Create schedule
curl --request POST \
  --url https://api.waterfall.host/v1/game/schedules/{serverId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "minute": "<string>",
  "hour": "<string>",
  "day_of_week": "<string>",
  "day_of_month": "<string>",
  "month": "<string>",
  "is_active": true,
  "only_when_online": true
}
'

Authorizations

Authorization
string
header
required

API key generated from your Waterfall dashboard

Path Parameters

serverId
string
required

Body

application/json
name
string
required
minute
string
required
hour
string
required
day_of_week
string
required
day_of_month
string
required
month
string
required
is_active
boolean
only_when_online
boolean

Response

200

Schedule created