Skip to main content
DELETE
/
api
/
v1
/
ppt
/
presentation
/
{id}
Delete Presentation By Id
curl --request DELETE \
  --url https://api.presenton.ai/api/v1/ppt/presentation/{id} \
  --header 'Authorization: <authorization>'
import requests

url = "https://api.presenton.ai/api/v1/ppt/presentation/{id}"

headers = {"Authorization": "<authorization>"}

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

print(response.text)
const options = {method: 'DELETE', headers: {Authorization: '<authorization>'}};

fetch('https://api.presenton.ai/api/v1/ppt/presentation/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Headers

Authorization
string
required

Bearer JWT or API Key

Path Parameters

id
string<uuid>
required

Response

Successful Response