Jobs
Update a job
Update the configuration details of an existing job.
put/api/v1/project/{projectid}/jobs/{id}
Path parameters
projectidstring required
project id (default is 123)
idinteger required
job id
Request body
Example request
{
"activate": true,
"advanced_settings": {
"max_discover_threads": 50
},
"destination": {
"config": "{\"host\":\"localhost\",\"port\":5432}",
"id": 1,
"name": "my-postgres-source",
"type": "postgres",
"version": "v0.2.7"
},
"difference_streams": "[]",
"frequency": "0 */12 * * *",
"name": "my-sync-job-updated",
"source": {
"config": "{\"host\":\"localhost\",\"port\":5432}",
"id": 1,
"name": "my-postgres-source",
"type": "postgres",
"version": "v0.2.7"
}
}Response
job updated successfully
Changes
Changed in 2 of the 2 revisions of this API.4
- ○
added the non-success response with the status
404response-non-success-status-added
- ○
added the non-success response with the status
413response-non-success-status-added
- ○
- ○
removed the non-success response with the status
404response-non-success-status-removed
- ○
removed the non-success response with the status
413response-non-success-status-removed
- ○