PATCH /v1/webspaces/{id}/cronjobs/{cid} PATCH /v1/webspaces/{id}/cronjobs/{cid}
Update a cronjob
Datenmodell
Diese Operation arbeitet auf der Entität webspace (webspace). Alle 32 Felder — Typ, Validierung, Pflichtangabe, Beziehungen — stehen in der Schema-Referenz .
Request Body
Name Typ Beschreibung schedulestringcommandstringenabledbooleannotifyOnErrorbooleannotifyEmailstringtagsstring[]
Pfad-Parameter
Name Typ Beschreibung iderforderlich stringciderforderlich string
Beispiel
curl -X PATCH https://api.codemeta-os.de/v1/webspaces/{id}/cronjobs/{cid} \
-H "X-Tenant-Id: $TENANT " \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"schedule": "string",
"command": "string",
"enabled": false,
"notifyOnError": false,
"notifyEmail": "string",
"tags": []
}' const result = await cm.webspaces. patch ({
"schedule" : "string" ,
"command" : "string" ,
"enabled" : false ,
"notifyOnError" : false ,
"notifyEmail" : "string" ,
"tags" : []
});
Antwortcodes
HTTP
Bedeutung
200
Default Response
Beschreibung folgt
Diese Operation hat noch keine kuratierte Annotation. Der Inhalt wird beim nächsten Doku-Update ergänzt.