Skip to main content
PATCH
/
watchlists
/
{watchlistId}
/
query
/
tags
curl --request PATCH \
  --url https://api.nevua.markets/watchlists/{watchlistId}/query/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "includeTags": [
    "sports",
    "esports"
  ],
  "matchOperator": "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
includeTags
string[]
excludeTags
string[]
matchOperator
enum<string>
Available options:
AND,
OR

Response

Tags updated successfully

The response is of type object.