Skip to content

Resume a paused job

POST
/api/v1/jobs/{job_id}/resume
curl --request POST \
--url https://example.com/api/v1/jobs/1/resume \
--header 'Content-Type: application/json' \
--data '{}'

Resumes a paused job by restoring its schedule. The schedule must be provided in the request body.

job_id
required
Job Id
integer
X-Environment-Id
Any of:
string
Media typeapplication/json
Schedule Config
object
key
additional properties
any
Examplegenerated
{}

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}