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!