curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/presence/heartbeat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"user_email": "<string>",
"user_name": "<string>",
"user_avatar": "<string>",
"agent_id": "<string>",
"session_id": "<string>",
"execution_id": "<string>",
"is_typing": false
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}HTTP endpoint for updating presence (fallback for non-WebSocket)
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/presence/heartbeat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"user_email": "<string>",
"user_name": "<string>",
"user_avatar": "<string>",
"agent_id": "<string>",
"session_id": "<string>",
"execution_id": "<string>",
"is_typing": false
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?