Create a content page
POST
/admin/v1/pages
const url = 'https://your-store.example.com/admin/v1/pages';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"slug":"example","title":"example","body":"example","locale":"fr","status":"draft","seoTitle":"example","seoDescription":"example"}'};
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/pages \ --header 'Content-Type: application/json' \ --data '{ "slug": "example", "title": "example", "body": "example", "locale": "fr", "status": "draft", "seoTitle": "example", "seoDescription": "example" }'