curl --request PUT \
--url https://{FUSION HOST}/api/jobs/{resource}/schedule \
--header 'Content-Type: */*' \
--data '{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<string>"
}
}'
{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<string>"
},
"enabled": true,
"triggers": [
{
"enabled": true,
"type": "<string>"
}
],
"default": true
}
Configure the schedule for the specified job.
curl --request PUT \
--url https://{FUSION HOST}/api/jobs/{resource}/schedule \
--header 'Content-Type: */*' \
--data '{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<string>"
}
}'
{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<string>"
},
"enabled": true,
"triggers": [
{
"enabled": true,
"type": "<string>"
}
],
"default": true
}
The job ID.
Validate that the job config exists.
JSON-formatted configuration values.
The body is of type object
.
successful operation
The response is of type object
.
Was this page helpful?