PUT
/
workspaces
/
{workspace}
/
autostart
curl --request PUT \
  --url https://cloud.local.wirtual.dev/api/v2/workspaces/{workspace}/autostart \
  --header 'Content-Type: application/json' \
  --header 'Wirtual-Session-Token: <api-key>' \
  --data '{
  "schedule": "<string>"
}'

Authorizations

Wirtual-Session-Token
string
header
required

Path Parameters

workspace
string
required

Workspace ID

Body

application/json
Schedule update request
schedule
string

Schedule is expected to be of the form CRON_TZ=<IANA Timezone> <min> <hour> * * <dow> Example: CRON_TZ=US/Central 30 9 * * 1-5 represents 0930 in the timezone US/Central on weekdays (Mon-Fri). CRON_TZ defaults to UTC if not present.