/api/admin/trigger/calibrate-fit
POST
/api/admin/trigger/calibrate-fit
const url = 'https://example.com/api/admin/trigger/calibrate-fit';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"dryRun":true,"publish":true}'};
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/admin/trigger/calibrate-fit \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "dryRun": true, "publish": true }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”object
dryRun
boolean
publish
boolean
Example generated
{ "dryRun": true, "publish": true}object
dryRun
boolean
publish
boolean
Example generated
{ "dryRun": true, "publish": true}object
dryRun
boolean
publish
boolean
Example generated
{ "dryRun": true, "publish": true}Responses
Section titled “ Responses ”OK