Logging
Delete a session
DELETE
/
session
/
{session_id}
Authorization
Path
curl --request DELETE \
--url https://api.honeyhive.ai/session/{session_id} \
--header 'Authorization: <authorization>'
{
"id": "<string>",
"success": true
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
session_id
string
requiredResponse
200 - application/json
id
string
The ID of the created object
success
boolean
Indicates whether the request was successful
curl --request DELETE \
--url https://api.honeyhive.ai/session/{session_id} \
--header 'Authorization: <authorization>'
{
"id": "<string>",
"success": true
}