Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function testPOST() {
  2.  
  3. var url = "https://europe-west1-process-simplifier.cloudfunctions.net/email-sender"
  4.  
  5. var payload =
  6. {
  7. "sferien":
  8. {
  9. "name": "BALON",
  10. "surname": "ANTOINE"
  11. },
  12. "status": "BAD",
  13. "error": "TOO_MANY_DAYS"
  14. };
  15.  
  16. var options =
  17. {
  18. "method" : "POST",
  19. "payload" : payload,
  20. "followRedirects" : true,
  21. "muteHttpExceptions": true
  22. };
  23.  
  24. var result = UrlFetchApp.fetch(url, options);
  25.  
  26. if (result.getResponseCode() == 200) {
  27.  
  28. var params = JSON.parse(result.getContentText());
  29.  
  30. Logger.log(params.name);
  31. }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement