Logging
Start a session
POST
/
session
/
start
Authorization
Body
curl --request POST \
--url https://api.honeyhive.ai/session/start \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"project": "<string>",
"session_id": "<string>",
"session_name": "<string>",
"source": "<string>",
"user_properties": {}
}'
{
"project_id": "<string>",
"session_id": "<string>"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
project
string
The project name for the session
session_id
string
The ID of the session
session_name
string
The name for the session
source
string
The source of the session
user_properties
object
The user properties for the session
Response
200 - application/json
project_id
string
The ID of the project for the session
session_id
string
The ID of the started session
curl --request POST \
--url https://api.honeyhive.ai/session/start \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"project": "<string>",
"session_id": "<string>",
"session_name": "<string>",
"source": "<string>",
"user_properties": {}
}'
{
"project_id": "<string>",
"session_id": "<string>"
}