POST
/
watchlists
/
{watchListId}
/
members2
curl --request POST \
  --url https://api.tic.io/watchlists/{watchListId}/members2 \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "companyIds": [
    123
  ],
  "personIds": [
    123
  ]
}'
[
  {
    "teamWatchListMemberId": 123,
    "companyId": 123,
    "personId": 123,
    "externalId": "<string>",
    "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
  }
]

This endpoints allows up adding multiple companies and/or persons to a watchlist in a single request. Up to 10 000 records are allowed to be added with one request. If a company or person has already been added it will jump over the record and only recorded added will be returned.

Please note that this endpoint doesn’t allow you to include custom identifiers (externalId) that the single endpoint for adding companies or persons allows for.

Authorizations

x-api-key
string
header
required

Path Parameters

watchListId
integer
required

Body

application/json

The payload

companyIds
integer[] | null
personIds
integer[] | null

Response

201
application/json

Created

teamWatchListMemberId
integer
companyId
integer | null
personId
integer | null
externalId
string | null
lastUpdatedAtUtc
string | null