Guest User

Untitled

a guest
Feb 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. {
  2. "Subject": "TestSubject",
  3. "Body": "TestBody",
  4. "PreferredLanguage": "en-US",
  5. "Recipients": [
  6. {
  7. "FirstName": "TestName",
  8. "EmailAddress": "TestEmail"
  9. }
  10. ]
  11. }
  12.  
  13. request.post(
  14. 'https://someURL.com/messages',
  15. {
  16. json:
  17. {
  18. Subject: "TestSubject",
  19. Body: "TestBody",
  20. PreferredLanguage: "en-US",
  21. Recipients: [
  22. {
  23. FirstName: "TestName",
  24. EmailAddress: "TestEmail"
  25. }
  26. ]
  27. }
  28. }
  29. )
Add Comment
Please, Sign In to add comment