PATCH
/
v2
/
views
/
{view_id}
Update a saved filter view
curl --request PATCH \
  --url https://api-v2.watchcollect.com/v2/views/{view_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "status": "accepted",
  "event_ids": [
    "018f06e2-4f8d-7c01-8a0d-cc6fd78f7002"
  ],
  "request_id": "018f06e2-4f8d-7c01-8a0d-cc6fd78f7001"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

view_id
string<uuid>
required

Body

application/json
name
string
tab_key
string | null
filters
object

Universal saved-view filter grammar. Each application surface applies the filters it understands.

Example:
{
"side": ["for_sale"],
"brand": ["Rolex"],
"reference": ["126610LN"],
"country_codes": { "include": ["31"] },
"phone_numbers_exclude": ["85212345678"],
"price": { "lte": 1200000, "currency": "EUR" },
"message_timestamp_ms": { "gte": 1777800000000 }
}
sort
object[]

Ordered sort clauses for a saved view.

Example:
[
{
"field": "message_timestamp_ms",
"direction": "desc"
}
]
projection
enum<string>

Response projection requested by a saved view.

Available options:
message_card,
market_listing_card,
contact_profile_card
display_order
integer | null

Response

Saved view update event accepted. The read model is updated asynchronously by the saved view projector.

status
enum<string>
required
Available options:
accepted,
duplicate_accepted,
rejected,
conflict,
noop
event_ids
string<uuid>[]
required
request_id
string
required
resource_id
string | null