Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. {
  2. "From": {
  3. "Address": "code@exacttarget.com",
  4. "Name": "EmailTest"
  5. },
  6. "To": {
  7. "Address": "recipient@email.com",
  8. "SubscriberKey": "recipient@email.com",
  9. "ContactAttributes": {
  10. "SubscriberAttributes": {
  11. "content" : "hello"
  12. }
  13. }
  14. }
  15. }
  16.  
  17. $ curl -H 'Authorization: Bearer SessionId' -H 'X-PrettyPrint:1' -H 'Content-Type: application/json' -d @jsonfile BaseURL/services/data/v36.0/actions/standard/emailSimple
  18.  
  19. {
  20. "inputs" : [
  21. {
  22. "emailBody" : "This is the body of the email",
  23. "emailAddresses" : "user1@email.com,user2@email.com",
  24. "emailSubject" : "An email from salesforce",
  25. "senderType" : "CurrentUser"
  26. }
  27. ]
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement