Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2015 08:00
Show Gist options
  • Save anonymous/f4558424f5bd91a8c302 to your computer and use it in GitHub Desktop.
Save anonymous/f4558424f5bd91a8c302 to your computer and use it in GitHub Desktop.
Update Voog content areas
// Article body
$.ajax({
type: "PUT",
contentType: "application/json",
url: '/admin/api/articles/566710',
data: JSON.stringify({ body: '' }),
dataType: "json"
});
// Content text
$.ajax({
type: "PUT",
contentType: "application/json",
url: '/admin/api/texts/3100562',
data: JSON.stringify({ body: '' }),
dataType: "json"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment