Path parameters
-
The id of the list
DELETE /lists/{listId}
curl \
-X DELETE https://api.lassomoderation.com/api/v1/lists/{listId} \
-H "Content-Type: application/json" \
-H "Authorization: string" \
-d '{"items":["Bad word"]}'
Request example
{
"items": [
"Bad word"
]
}
Response examples (200)
{
"success": true,
"deletedItems": [
"bad word"
]
}