Skip to main content
DELETE
/
api
/
v1
/
presentations
/
{presentation_id}
Delete Presentation
curl --request DELETE \
  --url https://slides-api.getalai.com/api/v1/presentations/{presentation_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "presentation_id": "<string>"
}
Delete a presentation and all its slides. This is a synchronous operation.

Path Parameters

ParameterTypeDescription
presentation_idstringID of the presentation to delete

Response

{
  "success": true,
  "presentation_id": "xyz789-..."
}

Example

curl -X DELETE "https://slides-api.getalai.com/api/v1/presentations/xyz789-..." \
  -H "Authorization: Bearer YOUR_API_KEY"

Error Responses

StatusDescription
401Invalid or missing API key
404Presentation not found or access denied
This permanently deletes the presentation and all its slides. This action cannot be undone.

Authorizations

Authorization
string
header
required

Your Alai API key. Get one from your account settings at app.getalai.com

Path Parameters

presentation_id
string
required

Response

Successful Response

success
boolean
required
presentation_id
string
required