Add entry to custom list
curl --request POST \
--url https://api.txcloud.io/v1/watchlist/lists/custom/{id}/entries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"type": "<string>",
"reason": "<string>",
"document_numbers": [
"<string>"
],
"notes": "<string>"
}
'Lists
Add entry to custom list
POST
/
watchlist
/
lists
/
custom
/
{id}
/
entries
Add entry to custom list
curl --request POST \
--url https://api.txcloud.io/v1/watchlist/lists/custom/{id}/entries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"type": "<string>",
"reason": "<string>",
"document_numbers": [
"<string>"
],
"notes": "<string>"
}
'Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Response
201
Entry added
⌘I