curl -X POST '{backend_url}/admin/index/sync' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"strategy": "full"
}'Trigger reindexing or re-ingestion of the Index Module.
curl -X POST '{backend_url}/admin/index/sync' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"strategy": "full"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The details of the index sync.
The syncing strategy. full indicates a full reindex, while reset truncates tables and performs a fresh sync.
full, reset OK