Skip to main content
PATCH
/
watchlists
/
{watchlistId}
/
query
/
tags
Update watchlist tags query
curl --request PATCH \
  --url https://api.nevua.markets/watchlists/{watchlistId}/query/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": [
    {
      "tagSlug": "sports",
      "include": true
    },
    {
      "tagSlug": "esports",
      "include": true
    }
  ],
  "searchMatchOperator": "OR"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

watchlistId
string
required

Watchlist identifier.

Body

application/json
tags
object[]
required
searchMatchOperator
enum<string>
Available options:
AND,
OR

Response

Tags updated successfully

The response is of type object.