PUT
/
watchlists
/
{watchListId}
/
members
/
{memberId}
curl --request PUT \
  --url https://api.tic.io/watchlists/{watchListId}/members/{memberId} \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "externalId": "<string>"
}'
{
  "teamWatchListId": 123,
  "watchListName": "<string>",
  "watchListDescription": "<string>",
  "numberOfMembersOnWatchList": 123,
  "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

watchListId
integer
required

The watchlist id

memberId
integer
required

The member id

Body

The payload
externalId
string | null
Maximum length: 255

Response

200
application/json
OK
teamWatchListId
integer
watchListName
string | null
watchListDescription
string | null
numberOfMembersOnWatchList
integer
lastUpdatedAtUtc
string | null