curl --request POST \
--url https://api.boostgpt.co/v1/bot/heartbeat/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"bot_id": "<string>",
"heartbeat_id": "<string>"
}
'{
"result": {
"status": "success",
"response": "<string>",
"duration_ms": 123,
"tokens_used": 123,
"credits_charged": 123
}
}Manually trigger a single heartbeat execution for testing
curl --request POST \
--url https://api.boostgpt.co/v1/bot/heartbeat/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"bot_id": "<string>",
"heartbeat_id": "<string>"
}
'{
"result": {
"status": "success",
"response": "<string>",
"duration_ms": 123,
"tokens_used": 123,
"credits_charged": 123
}
}Was this page helpful?