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 '{ "title": "example", "description": "example", "schedule": "example", "enabled": true, "config": {} }'

Enable/pause, change schedule, title, description, or config.

id
required
string
Media type application/json
object
title
string
nullable <= 200 characters
description
string
nullable <= 1000 characters
schedule
string
enabled
boolean
config
object
Example generated
{
"title": "example",
"description": "example",
"schedule": "example",
"enabled": true,
"config": {}
}

Updated