Dashboard Sign InKR

[DELETE] Delete Session

You can refer this document when you want to delete data from a specific session. Session data, uploaded audio data, and analysis data will all be deleted. If the requested session data is deleted from the Asleep server, it will be difficult to provide specific evidence for the deleted session during future billing analysis.

Request

URL

DELETE https://api.asleep.ai/ai/v1/sessions/{session_id}

Header

FieldTypeRequiredDescription
x-api-keyStringOAPI Key
x-user-idStringOIssued user id

Path parameter

FieldTypeRequiredDescription
session_idStringOCreated session id

Example

curl "https://api.asleep.ai/ai/v1/sessions/{session_id}" -XDELETE \
  -H "x-api-key: <YOUR_API_KEY>" \
  -H "x-user-id: <USER_ID>"

Response

204 No Content

  • session corresponding to session_id has been successfully deleted

401 Unauthorized

  • x-user-id is empty or in an invalid format
{
  "detail": "x-user-id is invalid"
}

404 Not Found

  • user corresponding to x-user-id does not exist
{
  "detail": "user does not exist"
}
  • session corresponding to session_id does not exist
{
  "detail": "session does not exist"
}