Enable a module (start its sandboxed worker)
POST
/admin/v1/modules/{name}/enable
const url = 'https://your-store.example.com/admin/v1/modules/example/enable';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://your-store.example.com/admin/v1/modules/example/enableParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” name
required
string