Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $.ajaxSetup({
  2. headers: {
  3. 'Authorization': "Basic " + btoa("test:1234")
  4. }
  5. });
  6.  
  7.  
  8. $.ajax
  9. ({
  10. type: "GET",
  11. url: "https://stage01.one-flow.de/cl-customer/api/v1/orders",
  12. dataType: 'json',
  13. success: function (ret){
  14. console.log(ret);
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement