Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
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": {} } ] }
Permanently delete one presentation from this instance.
Read the presentation workflow guide.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successful Response
Was this page helpful?