Delete a presentation
curl --request DELETE \
--url http://localhost:5001/api/v1/ppt/presentation/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:5001/api/v1/ppt/presentation/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:5001/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": {}
}
]
}Manage Presentations
Delete a presentation
Permanently delete one presentation from this instance.
DELETE
/
api
/
v1
/
ppt
/
presentation
/
{id}
Delete a presentation
curl --request DELETE \
--url http://localhost:5001/api/v1/ppt/presentation/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:5001/api/v1/ppt/presentation/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:5001/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": {}
}
]
}Was this page helpful?