Skip to content

Update a job

PATCH
/v1/jobs/{id}
curl --request PATCH \
--url https://shareout.site/v1/jobs/example \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "schedule": "example", "enabled": true, "config": {} }'

Enable/pause, change schedule, or update config.

id
required
string
Media type application/json
object
schedule
string
enabled
boolean
config
object
Example generated
{
"schedule": "example",
"enabled": true,
"config": {}
}

Updated