Delete Presentation
curl --request DELETE \
--url https://api.example.com/api/v1/ppt/presentation/{id}import requests
url = "https://api.example.com/api/v1/ppt/presentation/{id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/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": {}
}
]
}Open Source API v1
Delete Presentation
DELETE
/
api
/
v1
/
ppt
/
presentation
/
{id}
Delete Presentation
curl --request DELETE \
--url https://api.example.com/api/v1/ppt/presentation/{id}import requests
url = "https://api.example.com/api/v1/ppt/presentation/{id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/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": {}
}
]
}Path Parameters
Response
Successful Response
Was this page helpful?
⌘I