Skip to main content
PATCH
/
v1
/
monitors
/
{monitor_id}
Update monitor
curl --request PATCH \
  --url https://api.signa.so/v1/monitors/{monitor_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Updated monitor name",
  "webhook_url": "https://myapp.com/webhooks/new-endpoint",
  "webhook_events": [
    "new_filing",
    "status_change"
  ]
}
'
{
  "id": "<string>",
  "name": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use your API key from the dashboard. Include it in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Get your API key at https://signa.so/dashboard

Path Parameters

monitor_id
string
required

Monitor ID

Body

application/json
name
string

Monitor name

description
string

Monitor description

watches
object[]

Watch criteria

offices
string[]

Offices to monitor

webhook_url
string<uri>

Webhook endpoint URL

webhook_events
enum<string>[]

Events to trigger webhooks

Available options:
new_filing,
status_change,
similar_mark_detected,
trademark_published,
trademark_registered,
trademark_opposed,
trademark_cancelled

Response

Monitor updated

id
string
name
string
updated_at
string<date-time>