Guest User

Untitled

a guest
Jul 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. var xhr = new XMLHttpRequest();
  2. xhr.open("POST", "http://<your server>/sitecore/api/ssc/item/sitecore%2Fcontent%2Fhome ");
  3. xhr.setRequestHeader("Content-Type", "application/json");
  4. xhr.onreadystatechange = function () {
  5. if (this.readyState == 4) {
  6. alert('Status: '+this.status+'nHeaders: '+JSON.stringify(this.getAllResponseHeaders())+'nBody: '+this.responseText);
  7. }
  8. };
  9. xhr.send("{ n "ItemName": "Home", n "TemplateID": "76036f5e-cbce-46d1-af0a-4143f9b557aa", n "Title": "Sitecore", n "Text": "\r\n\t\tu003Cpu003EWelcome to Sitecoreu003C/pu003E\r\n" n}");
Add Comment
Please, Sign In to add comment