Skip to main content
DELETE
http://localhost:3000
/
session
/
{id}
curl -X DELETE http://localhost:3000/session/session-123 \
  -H "Authorization: Bearer $ISOL8_API_KEY"
{ "ok": true }
Deletes a persistent session and stops its container.
id
string
required
Persistent session ID to destroy.
ok
boolean
Always true after delete handling.
curl -X DELETE http://localhost:3000/session/session-123 \
  -H "Authorization: Bearer $ISOL8_API_KEY"
{ "ok": true }
This endpoint is idempotent. It returns { "ok": true } even when the session does not exist.