Get Enabled Widgets
GET
/settings/enabled-widgets/
const url = 'https://example.com/api/settings/enabled-widgets/';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/settings/enabled-widgets/Return enabled widget IDs. null = no restriction (all shown), [] = none, […ids] = only those.
Responses
Section titled “ Responses ”Successful Response
Media type application/json