curl --request POST \
--url https://lens-api.tic.io/watchlists/{id}/members/{memberGuid}/move \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"memberGuids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"targetWatchListGuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'Moves a member from the source watchlist to the target watchlist within the same team. Returns 409 if the same entity already exists in the target.
curl --request POST \
--url https://lens-api.tic.io/watchlists/{id}/members/{memberGuid}/move \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"memberGuids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"targetWatchListGuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'Source watchlist GUID
Member GUID
Member moved