Is deleting lists and list items blocked?
goova8 opened this issue · 3 comments
goova8 commented
I'm submitting a...
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report
[ ] Performance issue
[x ] Feature request (generic to all classes)
[ ] Documentation issue or request
[ ] Other... Please describe:
Expected Behavior
Want to delete a customer owned list but this does not work
handler_input.service_client_factory.get_list_management_service()
list_metadata = list_client.get_lists_metadata()
meta_dict = list_metadata.to_dict()
lists = meta_dict["lists"]
for i in lists:
if i["name"] == "new_list":
listId = i["list_id"]
list_client.delete_list(list_id = listId)
Is this feature blocked or do I need other permissions than ["write::alexa:household:list", "read::alexa:household:list"]
?
Context
I am trying to write a skill for my bachelor's thesis that should manipulate lists and purposely perform wrong actions. Therefor I would like to add and delete custom lists and list items.