Bulk delete (empty) presentation links

Hi!
I just wrote a few lines of code to delete my empty review links and it looks like it’s just what I needed. I was checking out the API documentation to do the same for presentation links and it states it’s deprecated. Does think mean it won’t work at all, or that it won’t be supported much longer?

Is there another way to delete presentation links other than the `presentation_id = “YOUR_presentation_id_PARAMETER”
url = “https://api.frame.io/v2/presentations/” + presentation_id

headers = {“Authorization”: “Bearer <YOUR_JWT_HERE>”}

response = requests.delete(url, headers=headers)

data = response.json()
print(data)` code?

Thanks!

I marked it as deprecated because I was told we were disabling the endpoint entirely. So you can give it a try, but I’m pretty sure it won’t work.

Unfortunately there is no other way to deleted presentation links, you’ll notice you can’t do it from within the web app either.

The reason for all these caveats when working with presentation links is that they’re a legacy feature, that for the most part has been superseded by review links.