Skip to main content
POST
/
api
/
v1
/
kg
/
tick
/
run-now
Run Tick Now
curl --request POST \
  --url https://api.example.com/api/v1/kg/tick/run-now \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "board_id": "<string>",
  "force_full_rebuild": false
}
'
{
  "scheduled_at": "<string>",
  "status": "<string>",
  "tick_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.oktolabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
board_id
string | null
force_full_rebuild
boolean
default:false

Response

Successful Response

scheduled_at
string
required
status
string
required
tick_id
string
required
Last modified on May 8, 2026