Skip to main content
POST
/
v1
/
bot
/
heartbeat
/
trigger
Trigger Heartbeat
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
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Body

application/json
project_id
string
required

Project ID

bot_id
string
required

Agent ID

heartbeat_id
string
required

Heartbeat UUID

Response

Heartbeat execution result

result
object