Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. "ticket": {
  2. "assignee": {
  3. "id": "testing1@test.com",
  4. "name": "John Doe"
  5. },
  6. "events": [
  7. {
  8. "author": {
  9. "id": "testing@test.com",
  10. "name": "testing",
  11. "type": "agent1"
  12. },
  13. "date": "2014-08-18T10:05:05Z",
  14. "is_private": false,
  15. "message": "Hey, I have a problem with...",
  16. "source": {
  17. "type": "agent-app-manual",
  18. "url": null
  19. },
  20. "type": "message"
  21. }
  22. ],
  23.  
  24. "groups": [
  25. {
  26. "id": 0,
  27. "name": "All operators"
  28. }
  29. ],
  30. "id": "CCWWM",
  31.  
  32. "requester": {
  33. "mail": "test@test.com",
  34. "name": "Mary Brown"
  35. },
  36. "status": "test1",
  37. "subject": "issue1"
  38. }
  39.  
  40. $data = file_get_contents('php://input');
  41. $data = json_decode($data);
  42.  
  43. $email = $data->visitor->email;
  44.  
  45. $email = $data->ticket->visitor->email;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement