To do the clear operation, you must know the correct ListItemEntityTypeFullName property of the list and pass that as the value of type in the Send an HTTP request to SharePoint body.
It seems that the ListItemEntityTypeFullName property value SP.Data.BTToolsDataListItem specified in the flow may not be correct.
Use the following rest call to get the ListItemEntityTypeFullName

Uri:
_api/web/lists/GetByTitle('People')?$select=ListItemEntityTypeFullName
Headers:
{
"Accept": "application/json;odata=nometadata"
}
Then examine the runtime output of the request to get the text for the ListItemEntityTypeFullName

Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.