Delete Page
DELETE
/merchants/{merchantCode}/shops/{shopCode}/pages/{pageCode}
const url = 'https://cms.shopgate.io/v1/merchants/example/shops/example/pages/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://cms.shopgate.io/v1/merchants/example/shops/example/pages/examplePermanently removes a page and all its versions from the CMS.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”merchantCode
required
string
shopCode
required
string
pageCode
required
string
Responses
Section titled “Responses”Delete page response
Media typeapplication/json

