DELETE
/
api
/
v1
/
projects
/
{projectId}
/
sessions
/
{sessionId}
curl -X DELETE \
  -H "Authorization: Bearer YOUR_API_KEY" \
  https://cloud.specstory.com/api/v1/projects/proj_abc123/sessions/550e8400-e29b-41d4-a716-446655440000
{
  "success": true,
  "data": {
    "success": true
  }
}
This action cannot be undone. The session and all its content will be permanently deleted.

Request

projectId
string
required
The unique identifier of the project
sessionId
string
required
The unique identifier of the session to delete
Authorization
string
required
Bearer token for authentication

Response

success
boolean
Indicates if the request was successful
data
object
curl -X DELETE \
  -H "Authorization: Bearer YOUR_API_KEY" \
  https://cloud.specstory.com/api/v1/projects/proj_abc123/sessions/550e8400-e29b-41d4-a716-446655440000
{
  "success": true,
  "data": {
    "success": true
  }
}