Skip to content

Instantly share code, notes, and snippets.

@jsheely
Created December 28, 2012 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsheely/4393435 to your computer and use it in GitHub Desktop.
Save jsheely/4393435 to your computer and use it in GitHub Desktop.
Data Expose example of pulling all users from DotNetNuke installation
<script type="text/javascript">
(function($){
$(document).ready(function(){
$.ajax({
url:'/dataexpose_v1/DesktopModules/InspectorIT/DataExpose/API/Services/Execute',
dataType:'json',
data: {feed:'GetAllUsers',feedParams:'0,0,50,0,0'}
}).success(function(data){
//Do something with JSON Data
});
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment