Logging
End a session
POST
/
session
/
{session_id}
/
end
Authorization
Path
curl --request POST \
--url https://api.honeyhive.ai/session/{session_id}/end \
--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 session
success
boolean
Indicates whether ending the session was successful
curl --request POST \
--url https://api.honeyhive.ai/session/{session_id}/end \
--header 'Authorization: <authorization>'
{
"id": "<string>",
"success": true
}