Trigger metadata sync
POST
/api/v1/catalogs/sync
const url = 'https://example.com/api/v1/catalogs/sync';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/catalogs/syncManually trigger metadata sync.
Useful for:
- Testing the sync process
- Immediate refresh after schema changes
- On-demand updates before important operations
Note: Works independently of background sync service. If background sync is enabled, it runs automatically every hour.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example