Skip to main content
POST
/
watchlists
/
{watchListId}
/
members
Add member to watchlist
curl --request POST \
  --url https://api.tic.io/watchlists/{watchListId}/members \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "companyId": 123,
  "personId": 123,
  "externalId": "<string>"
}
'
{
  "teamWatchListMemberId": 123,
  "companyId": 123,
  "personId": 123,
  "externalId": "<string>",
  "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
This endpoint is used to add a single company or person per request. If you want to add multiple companies and/or persons you can use this endpoint instead.

Authorizations

x-api-key
string
header
required

Path Parameters

watchListId
integer<int32>
required

Body

application/json

The payload

companyId
integer<int32> | null
personId
integer<int32> | null
externalId
string | null
Maximum string length: 255

Response

Created

teamWatchListMemberId
integer<int32>
companyId
integer<int32> | null
personId
integer<int32> | null
externalId
string | null
lastUpdatedAtUtc
string<date-time> | null