Skip to main content
POST
/
admin
/
index
/
sync
cURL
curl -X POST '{backend_url}/admin/index/sync' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
  "strategy": "full"
}'

Authorizations

Authorization
string
header
required

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

Body

application/json

The details of the index sync.

strategy
enum<string>
required

The syncing strategy. full indicates a full reindex, while reset truncates tables and performs a fresh sync.

Available options:
full,
reset

Response

OK