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

Authorizations

x-api-key
string
header
required

Body

application/json
The payload
watchListName
string
required
Required string length: 1 - 255
watchListDescription
string | null
Maximum length: 255

Response

201
application/json
Created
teamWatchListId
integer
watchListName
string | null
watchListDescription
string | null
numberOfMembersOnWatchList
integer
lastUpdatedAtUtc
string | null