Skip to main content
DELETE
/
:projectId
/
lists
/
:listId
Delete List
curl --request DELETE \
  --url https://api.replyke.com/api/v6/:projectId/lists/:listId
{
  "status": "<string>"
}
Deletes a sub-list owned by the authenticated user. Root lists cannot be deleted.

Path Parameters

listId
string
required
The ID of the list to delete

Response

status
string
Returns 204 No Content on successful deletion

Error Responses

{
  "error": "Missing list ID",
  "code": "list/invalid-id"
}
{
  "error": "Root lists cannot be deleted",
  "code": "list/cannot-delete-root"
}
{
  "error": "List not found",
  "code": "list/not-found"
}
{
  "error": "Server error",
  "code": "list/server-error",
  "details": "<Error message>"
}

Notes

  • Only sub-lists (lists with a non-null parentId) can be deleted.
  • Returns 204 No Content on successful deletion.
  • Root lists are protected and cannot be deleted.
I