Skip to main content
PATCH
/
v1
/
watches
/
{id}
curl -X PATCH "https://api.signa.so/v1/watches/wat_01HK7M..." \
  -H "Authorization: Bearer $SIGNA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "delivery_mode": "digest_above_threshold" }'

Documentation Index

Fetch the complete documentation index at: https://docs.signa.so/llms.txt

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

Path Parameters

id
string
required
Watch ID (wat_*).

Body Parameters

All fields optional. Omitted fields are unchanged.
name
string
1—255 chars.
query
object
Replace the entire saved query DSL. Same validation rules as Create Watch.
delivery_mode
string
One of always_per_alert, digest_above_threshold, digest_only.
status
string
active or paused. Use Pause / Resume for clarity.
metadata
object
Free-form metadata.

Response

Returns the updated Watch.

Example

curl -X PATCH "https://api.signa.so/v1/watches/wat_01HK7M..." \
  -H "Authorization: Bearer $SIGNA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "delivery_mode": "digest_above_threshold" }'