Trigger on-demand IAM sync
POST
/api/v1/iam/sync
const url = 'https://example.com/api/v1/iam/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/iam/syncManually triggers a full IAM sync to populate or refresh the cache.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example