Skip to main content
PUT
/
watch-folders
/
{watch_folder_id}
Update a watch folder
curl --request PUT \
  --url http://localhost:6699/api/v1/watch-folders/{watch_folder_id} \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "enabled": true,
  "enable_visual_analysis": true,
  "enable_audio_analysis": true,
  "enable_face_analysis": true,
  "audio_language": "<string>",
  "cluster_job_name": "<string>",
  "face_eps": 123,
  "face_min_samples": 123,
  "cache_dir": "<string>",
  "excluded_extensions": [
    "<string>"
  ],
  "excluded_filename_globs": [
    "<string>"
  ]
}
'
{
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjumper.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Path Parameters

watch_folder_id
string
required

Body

application/json
enabled
boolean
enable_visual_analysis
boolean
enable_audio_analysis
boolean
enable_face_analysis
boolean
audio_language
string
cluster_job_name
string
face_eps
number
face_min_samples
integer
cache_dir
string
excluded_extensions
string[]
excluded_filename_globs
string[]

Response

Watch folder updated

Last modified on May 7, 2026