Skip to content

Instantly share code, notes, and snippets.

@vgrem
Created November 9, 2014 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vgrem/6720d8607b10c45b4677 to your computer and use it in GitHub Desktop.
Save vgrem/6720d8607b10c45b4677 to your computer and use it in GitHub Desktop.
Getting SP.List Author property using SharePoint REST
getListProperties('Discussion Board')
.done(function(properties)
{
console.log('List created by: ' + properties.Author);
})
.fail(
function(error){
console.log(JSON.stringify(error));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment