POST
/
watchlists
/
{watchListId}
/
members
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
required

Body

application/json
The payload
companyId
integer | null
personId
integer | null
externalId
string | null
Maximum length: 255

Response

201
application/json
Created
teamWatchListMemberId
integer
companyId
integer | null
personId
integer | null
externalId
string | null
lastUpdatedAtUtc
string | null