Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1.  
  2. var mailingLists = (function (requestCompleted) {
  3. var endpointUrl = "http://localhost:59688/api/mailinglists/";
  4. var userId = "a60ff43a-b844-4162-9cdd-3fd67d82975a";
  5. var apiKey = "cf5f31ef-e765-4c6c-9386-6bafc48b06ab";
  6.  
  7.  
  8. return $.ajax({
  9. url: endpointUrl + userId + "/" + apiKey + "?format=json",
  10. dataType: "json",
  11. complete: function (data) {
  12. requestCompleted(requestCompleted);
  13. }
  14. });
  15. });
  16.  
  17. mailingLists(function(data){
  18. //data.responseText
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement