createWebsiteAsset
POST
/api/v1/assets/websites
const url = 'https://example.com/api/v1/assets/websites';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/assets/websitesCreates configuration-only public website content without fetching the page.
Responses
Section titled “ Responses ”Website asset created
URL or website settings rejected