desk_api 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +26 -8
  4. data/lib/desk.rb +1 -1
  5. data/lib/desk_api.rb +2 -3
  6. data/lib/desk_api/client.rb +6 -6
  7. data/lib/desk_api/configuration.rb +5 -2
  8. data/lib/desk_api/default.rb +2 -2
  9. data/lib/desk_api/error.rb +2 -2
  10. data/lib/desk_api/error/bad_gateway.rb +1 -1
  11. data/lib/desk_api/error/bad_request.rb +1 -1
  12. data/lib/desk_api/error/client_error.rb +1 -1
  13. data/lib/desk_api/error/configuration_error.rb +1 -1
  14. data/lib/desk_api/error/conflict.rb +1 -1
  15. data/lib/desk_api/error/follow_redirect_error.rb +1 -1
  16. data/lib/desk_api/error/forbidden.rb +1 -1
  17. data/lib/desk_api/error/gateway_timeout.rb +1 -1
  18. data/lib/desk_api/error/internal_server_error.rb +1 -1
  19. data/lib/desk_api/error/method_not_allowed.rb +1 -1
  20. data/lib/desk_api/error/not_acceptable.rb +1 -1
  21. data/lib/desk_api/error/not_found.rb +1 -1
  22. data/lib/desk_api/error/parser_error.rb +1 -1
  23. data/lib/desk_api/error/server_error.rb +1 -1
  24. data/lib/desk_api/error/service_unavailable.rb +1 -1
  25. data/lib/desk_api/error/too_many_requests.rb +1 -1
  26. data/lib/desk_api/error/unauthorized.rb +1 -1
  27. data/lib/desk_api/error/unprocessable_entity.rb +1 -1
  28. data/lib/desk_api/error/unsupported_media_type.rb +1 -1
  29. data/lib/desk_api/rate_limit.rb +2 -2
  30. data/lib/desk_api/request/encode_dates.rb +73 -0
  31. data/lib/desk_api/request/encode_json.rb +2 -2
  32. data/lib/desk_api/request/oauth.rb +2 -2
  33. data/lib/desk_api/request/retry.rb +4 -3
  34. data/lib/desk_api/resource.rb +22 -194
  35. data/lib/desk_api/resource/download.rb +57 -0
  36. data/lib/desk_api/resource/pagination.rb +77 -0
  37. data/lib/desk_api/resource/query_params.rb +106 -0
  38. data/lib/desk_api/resource/scrud.rb +145 -0
  39. data/lib/desk_api/response/follow_redirects.rb +2 -2
  40. data/lib/desk_api/response/parse_dates.rb +2 -2
  41. data/lib/desk_api/response/parse_json.rb +2 -2
  42. data/lib/desk_api/response/raise_error.rb +2 -2
  43. data/lib/desk_api/version.rb +2 -2
  44. data/spec/cassettes/DeskApi_Resource/_next_/returns_nil_on_non-page_resources.yml +207 -0
  45. data/spec/cassettes/DeskApi_Resource/_next_/throws_an_error_on_non-page_resources.yml +207 -0
  46. data/spec/cassettes/DeskApi_Resource_Download/downloads_the_attachment.yml +238 -0
  47. data/spec/cassettes/DeskApi_Resource_Download/throws_an_error_on_non_attachment_resources.yml +47 -0
  48. data/spec/cassettes/DeskApi_Resource_Pagination/_all/iterates_over_each_resource_on_each_page.yml +13538 -0
  49. data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/iterates_over_each_page.yml +13538 -0
  50. data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/raises_NoMethodError_is_called_on_non-page_resources.yml +2093 -0
  51. data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/uses_a_default_per_page_of_1000.yml +13538 -0
  52. data/spec/cassettes/DeskApi_Resource_QueryParams/_page/keeps_the_resource_as_loaded.yml +2093 -0
  53. data/spec/cassettes/DeskApi_Resource_QueryParams/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +1207 -0
  54. data/spec/cassettes/DeskApi_Resource_QueryParams/_page/sets_the_resource_to_not_loaded.yml +2093 -0
  55. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_create/creates_a_new_topic.yml +0 -0
  56. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_create/throws_an_error_creating_a_user.yml +0 -0
  57. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_delete/deletes_a_resource.yml +0 -0
  58. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_delete/throws_an_error_deleting_a_non_deletalbe_resource.yml +0 -0
  59. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_find/has_an_alias_by_id.yml +0 -0
  60. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_find/loads_the_requested_resource.yml +0 -0
  61. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_search/allows_searching_on_search_enabled_resources.yml +0 -0
  62. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_search/throws_an_error_if_search_is_not_enabled.yml +0 -0
  63. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_action_params.yml +0 -0
  64. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_links.yml +0 -0
  65. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_update_action_params.yml +0 -0
  66. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_replace_instead_of_append.yml +0 -0
  67. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_update_without_a_hash.yml +0 -0
  68. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/throws_an_error_updating_a_user.yml +0 -0
  69. data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/updates_a_topic.yml +0 -0
  70. data/spec/desk_api/client_spec.rb +33 -7
  71. data/spec/desk_api/configuration_spec.rb +4 -4
  72. data/spec/desk_api/default_spec.rb +1 -1
  73. data/spec/desk_api/error_spec.rb +1 -1
  74. data/spec/desk_api/rate_limit_spec.rb +1 -1
  75. data/spec/desk_api/request/encode_dates_spec.rb +63 -0
  76. data/spec/desk_api/request/encode_json_spec.rb +4 -4
  77. data/spec/desk_api/request/oauth_spec.rb +1 -1
  78. data/spec/desk_api/request/retry_spec.rb +1 -1
  79. data/spec/desk_api/resource/download_spec.rb +45 -0
  80. data/spec/desk_api/resource/pagination_spec.rb +77 -0
  81. data/spec/desk_api/resource/query_params_spec.rb +145 -0
  82. data/spec/desk_api/resource/scrud_spec.rb +216 -0
  83. data/spec/desk_api/resource_spec.rb +14 -321
  84. data/spec/desk_api/response/follow_redirects_spec.rb +1 -1
  85. data/spec/desk_api/response/parse_dates_spec.rb +1 -1
  86. data/spec/desk_api/response/parse_json_spec.rb +1 -1
  87. data/spec/desk_api/response/raise_error_spec.rb +1 -1
  88. data/spec/desk_api_spec.rb +1 -1
  89. data/spec/spec_helper.rb +1 -2
  90. data/spec/stubs/file.jpg +0 -0
  91. metadata +128 -104
  92. data/spec/cassettes/DeskApi_Resource/_all/iterates_over_each_resource_on_each_page.yml +0 -1953
  93. data/spec/cassettes/DeskApi_Resource/_each_page/iterates_over_each_page.yml +0 -1953
  94. data/spec/cassettes/DeskApi_Resource/_each_page/raises_NoMethodError_is_called_on_non-page_resources.yml +0 -207
  95. data/spec/cassettes/DeskApi_Resource/_each_page/uses_a_default_per_page_of_1000.yml +0 -1953
  96. data/spec/cassettes/DeskApi_Resource/_page/keeps_the_resource_as_loaded.yml +0 -113
  97. data/spec/cassettes/DeskApi_Resource/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +0 -62
  98. data/spec/cassettes/DeskApi_Resource/_page/sets_the_resource_to_not_loaded.yml +0 -113
@@ -0,0 +1,207 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/cases
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - desk.com Ruby Gem v0.6.1
14
+ Content-Type:
15
+ - application/json
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ accept-ranges:
22
+ - bytes
23
+ cache-control:
24
+ - must-revalidate, private, max-age=0
25
+ content-type:
26
+ - application/json; charset=utf-8
27
+ date:
28
+ - Mon, 14 Jul 2014 22:14:44 GMT
29
+ etag:
30
+ - '"8c3ee94dcdb6f5dfec65808273be48cc"'
31
+ status:
32
+ - 200 OK
33
+ vary:
34
+ - X-AppVersion
35
+ x-appversion:
36
+ - '15.99'
37
+ x-frame-options:
38
+ - SAMEORIGIN
39
+ x-rate-limit-limit:
40
+ - '240'
41
+ x-rate-limit-remaining:
42
+ - '238'
43
+ x-rate-limit-reset:
44
+ - '16'
45
+ x-request-id:
46
+ - 4e8a0083c67b2046ba2989839b7d5004
47
+ content-length:
48
+ - '86823'
49
+ connection:
50
+ - Close
51
+ body:
52
+ encoding: UTF-8
53
+ string: '{"total_entries":388,"page":1,"_links":{"self":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases?page=8&per_page=50","class":"page"},"previous":null,"next":{"href":"/api/v2/cases?page=2&per_page=50","class":"page"}},"_embedded":{"entries":[{"id":3012,"external_id":null,"blurb":null,"subject":"Re:
54
+ ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["client_spam","client_test"],"label_ids":[1789189,1789190],"language":"en","active_at":"2014-07-09T21:44:16Z","changed_at":"2014-07-09T21:45:00Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-07-09T21:45:00Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
55
+ 1","follow_up":null,"dependent":"Support::Testing"},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3012/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3012/history","class":"history"},"case_links":{"href":"/api/v2/cases/3012/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3012/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3012/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3012/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment","count":0}}},{"id":3013,"external_id":null,"blurb":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-10T18:28:14Z","changed_at":"2013-05-10T18:28:11Z","created_at":"2013-05-09T21:50:06Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":"2013-05-09T21:50:07Z","opened_at":"2013-05-09T21:50:07Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
56
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3013","class":"case"},"message":{"href":"/api/v2/cases/3013/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3013/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3013/history","class":"history"},"case_links":{"href":"/api/v2/cases/3013/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3013/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3013/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3013/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment","count":0}}},{"id":3014,"external_id":"","blurb":null,"subject":"Testing
57
+ Quick Case","priority":8,"locked_until":null,"description":"Some additional
58
+ Description regarding this email.","status":"resolved","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T19:08:27Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T19:08:10Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":"2013-05-10T19:08:10Z","resolved_at":"2013-05-10T19:08:10Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3014","class":"case"},"message":{"href":"/api/v2/cases/3014/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3014/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3014/history","class":"history"},"case_links":{"href":"/api/v2/cases/3014/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3014/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3014/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3014/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment","count":0}}},{"id":3015,"external_id":null,"blurb":null,"subject":"Testing
59
+ the Quick Case","priority":9,"locked_until":null,"description":"Additional
60
+ description.","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T20:21:21Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T20:20:18Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3015","class":"case"},"message":{"href":"/api/v2/cases/3015/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3015/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3015/history","class":"history"},"case_links":{"href":"/api/v2/cases/3015/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3015/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3015/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3015/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment","count":0}}},{"id":3016,"external_id":null,"blurb":null,"subject":"Testing
61
+ Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T22:01:36Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T22:01:25Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3016","class":"case"},"message":{"href":"/api/v2/cases/3016/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3016/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3016/history","class":"history"},"case_links":{"href":"/api/v2/cases/3016/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3016/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3016/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3016/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment","count":0}}},{"id":3017,"external_id":null,"blurb":null,"subject":"Testing
62
+ Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"label_ids":[],"language":null,"active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-10T22:11:43Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":"2013-05-10T22:11:43Z","resolved_at":"2013-05-10T22:11:43Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3017","class":"case"},"message":{"href":"/api/v2/cases/3017/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3017/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3017/history","class":"history"},"case_links":{"href":"/api/v2/cases/3017/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3017/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3017/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3017/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment","count":0}}},{"id":3018,"external_id":null,"blurb":null,"subject":"Quick
63
+ Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-16T01:10:29Z","changed_at":"2013-05-16T01:01:33Z","created_at":"2013-05-10T22:20:01Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
64
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3018","class":"case"},"message":{"href":"/api/v2/cases/3018/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3018/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3018/history","class":"history"},"case_links":{"href":"/api/v2/cases/3018/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3018/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3018/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3018/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment","count":0}}},{"id":3019,"external_id":null,"blurb":null,"subject":"Testing
65
+ Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T22:25:38Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-10T22:25:19Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3019","class":"case"},"message":{"href":"/api/v2/cases/3019/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3019/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3019/history","class":"history"},"case_links":{"href":"/api/v2/cases/3019/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3019/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3019/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3019/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment","count":0}}},{"id":3021,"external_id":null,"blurb":"","subject":"Testing
66
+ stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-23T23:15:51Z","changed_at":"2013-05-15T00:17:23Z","created_at":"2013-05-10T23:02:08Z","updated_at":"2014-04-14T19:40:51Z","received_at":"2013-05-15T00:17:23Z","first_opened_at":null,"opened_at":"2013-05-15T00:17:23Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
67
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3021","class":"case"},"message":{"href":"/api/v2/cases/3021/message","class":"phone"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3021/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3021/history","class":"history"},"case_links":{"href":"/api/v2/cases/3021/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3021/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3021/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3021/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3021/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3021/attachments","class":"attachment","count":0}}},{"id":3022,"external_id":null,"blurb":"Hugs,
68
+ wisdom, boundless affection\n\nThe moms in your life sure know how to deliver.
69
+ \nWouldn''t it be awesome to deliver for them this Mother''s Day?\n\nHire
70
+ a TaskRabbit to drop off flowers, chocolates, \ncupcakes, or anything else
71
+ to the amazing moms in y","subject":"The moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-11T01:43:17Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:03:08Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:03:08Z","first_opened_at":"2013-05-11T01:39:46Z","opened_at":"2013-05-11T01:39:46Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3022","class":"case"},"message":{"href":"/api/v2/cases/3022/message","class":"email"},"customer":{"href":"/api/v2/customers/85614510","class":"customer"},"labels":{"href":"/api/v2/cases/3022/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3022/history","class":"history"},"case_links":{"href":"/api/v2/cases/3022/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3022/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3022/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3022/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment","count":0}}},{"id":3023,"external_id":null,"blurb":"","subject":"Thomas
72
+ Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-16T18:12:22Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:05:00Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:05:00Z","first_opened_at":"2013-05-16T18:12:22Z","opened_at":"2013-05-16T18:12:22Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3023","class":"case"},"message":{"href":"/api/v2/cases/3023/message","class":"email"},"customer":{"href":"/api/v2/customers/85614731","class":"customer"},"labels":{"href":"/api/v2/cases/3023/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3023/history","class":"history"},"case_links":{"href":"/api/v2/cases/3023/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3023/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3023/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3023/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment","count":0}}},{"id":3024,"external_id":null,"blurb":"Please
73
+ use an HTML-capable email client to view this message.\n\n","subject":"[The
74
+ Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:49:57Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:49:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3024","class":"case"},"message":{"href":"/api/v2/cases/3024/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3024/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3024/history","class":"history"},"case_links":{"href":"/api/v2/cases/3024/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3024/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3024/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3024/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment","count":0}}},{"id":3025,"external_id":null,"blurb":"MyFonts:
75
+ Rising Stars, May 2013\r\n\r\n - the MyFonts newsletter of popular new fonts
76
+ (issue #110)\r\n\r\nIf the Best Seller lists on MyFonts are something of a
77
+ barometer of trends\r\nin typography, then there are two main currents - and
78
+ they are\r\ndiametricall","subject":"Rising Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T01:23:54Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T01:23:54Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3025","class":"case"},"message":{"href":"/api/v2/cases/3025/message","class":"email"},"customer":{"href":"/api/v2/customers/85623855","class":"customer"},"labels":{"href":"/api/v2/cases/3025/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3025/history","class":"history"},"case_links":{"href":"/api/v2/cases/3025/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3025/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3025/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3025/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment","count":0}}},{"id":3026,"external_id":null,"blurb":"iohojho","subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"label_ids":[],"language":null,"active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T01:41:04Z","updated_at":"2014-04-14T19:40:51Z","received_at":"2013-05-11T01:41:05Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3026","class":"case"},"message":{"href":"/api/v2/cases/3026/message","class":"phone"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3026/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3026/history","class":"history"},"case_links":{"href":"/api/v2/cases/3026/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3026/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3026/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3026/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment","count":0}}},{"id":3027,"external_id":null,"blurb":"Please
79
+ use an HTML-capable email client to view this message.\n\n","subject":"[The
80
+ Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T02:14:38Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T02:14:38Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3027","class":"case"},"message":{"href":"/api/v2/cases/3027/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3027/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3027/history","class":"history"},"case_links":{"href":"/api/v2/cases/3027/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3027/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3027/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3027/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment","count":0}}},{"id":3028,"external_id":null,"blurb":"\r\n\r\nYour
81
+ Weekly Summary Friday, May 3, 2013 - Friday, May 10, 2013\r\n\r\n\r\nYour
82
+ Accounts\r\n\r\n * PayPal - PayPal Account: $6,366.64\r\n * Wells Fargo
83
+ - WELLS FARGO AT WORK(SM) CHECKING: $3,933.74\r\n * Lending Club - LendingClub: $1,002.32\r\n\r\nNet
84
+ Wor","subject":"Your Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T02:25:47Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T02:25:48Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3028","class":"case"},"message":{"href":"/api/v2/cases/3028/message","class":"email"},"customer":{"href":"/api/v2/customers/85630608","class":"customer"},"labels":{"href":"/api/v2/cases/3028/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3028/history","class":"history"},"case_links":{"href":"/api/v2/cases/3028/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3028/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3028/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3028/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment","count":0}}},{"id":3029,"external_id":null,"blurb":"Wenn
85
+ dieser Newsletter nicht richtig angezeigt wird, klicken Sie bitte\nhier:\nhttp://news.eduscho.at/go/8/QNYVF67-QKP4RMR-Y429K1-JP532M.html\n**********************************************************************\n\nLiebe
86
+ Eduscho.at Kundin, lieber Edusch","subject":"St\u00e4dtehighlights z.B. Hamburg
87
+ mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T08:16:41Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T08:16:41Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3029","class":"case"},"message":{"href":"/api/v2/cases/3029/message","class":"email"},"customer":{"href":"/api/v2/customers/85666173","class":"customer"},"labels":{"href":"/api/v2/cases/3029/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3029/history","class":"history"},"case_links":{"href":"/api/v2/cases/3029/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3029/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3029/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3029/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment","count":0}}},{"id":3030,"external_id":null,"blurb":"Platform-as-a-Service\r\n Send
88
+ me an email for each new discussion » http://www.linkedin.com/e/xz83s3-hgklyhay-6n/snp/728097/true/grp_email_subscribe_new_posts/?hs=false&tok=0r6kbcJ6z9ZRI1\r\n\r\n\r\n\r\n Manager''s
89
+ Choice\r\n RingDNA releases mobile ","subject":"RingDNA releases mobile
90
+ call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T09:45:50Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T09:45:50Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3030","class":"case"},"message":{"href":"/api/v2/cases/3030/message","class":"email"},"customer":{"href":"/api/v2/customers/85674329","class":"customer"},"labels":{"href":"/api/v2/cases/3030/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3030/history","class":"history"},"case_links":{"href":"/api/v2/cases/3030/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3030/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3030/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3030/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment","count":0}}},{"id":3031,"external_id":null,"blurb":"http://hoteltonight.com/\r\nhttp://www.facebook.com/HotelTonight\r\nhttp://twitter.com/HotelTonight\r\n\r\nAnnouncing
91
+ the latest & greatest from HT: Snap Your Stay\r\n\r\nIt''s been busy ''round
92
+ here at HT HQ, per ushe! Not only are we now in 100+ destinations, 12","subject":"Get
93
+ credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T10:06:36Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T10:06:36Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3031","class":"case"},"message":{"href":"/api/v2/cases/3031/message","class":"email"},"customer":{"href":"/api/v2/customers/85676376","class":"customer"},"labels":{"href":"/api/v2/cases/3031/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3031/history","class":"history"},"case_links":{"href":"/api/v2/cases/3031/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3031/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3031/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3031/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment","count":0}}},{"id":3032,"external_id":null,"blurb":"LinkedIn\r\n------------\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n Simone
94
+ Seri has indicated you are a Friend\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n------------------------------------------\r\n\r\nI''d
95
+ like to add you to my professional network on LinkedIn","subject":"Thomas,
96
+ stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-13T16:49:33Z","changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T11:07:46Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T11:07:46Z","first_opened_at":"2013-05-13T16:49:34Z","opened_at":"2013-05-13T16:49:34Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3032","class":"case"},"message":{"href":"/api/v2/cases/3032/message","class":"email"},"customer":{"href":"/api/v2/customers/85682378","class":"customer"},"labels":{"href":"/api/v2/cases/3032/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3032/history","class":"history"},"case_links":{"href":"/api/v2/cases/3032/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3032/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3032/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3032/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment","count":0}}},{"id":3033,"external_id":null,"blurb":"MEINVERZEICHNIS \n \n \n\nmeinVZ
97
+ (http://www.meinvz.net/Home/?cmpid=eml_PD_avz_default_top_logo)\n \t Hallo
98
+ Thomas,\n bei Dir hat sich was getan! \n\n Irene (http://www.meinvz.net/?cmpid=eml_PD_avz_default_top_birthday_pic#Profile/U:@BGQnlFLGRhjE3qk","subject":"Neuigkeiten
99
+ f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-08-07T19:22:19Z","changed_at":"2013-08-07T19:23:03Z","created_at":"2013-05-11T11:15:29Z","updated_at":"2013-08-07T19:23:03Z","received_at":"2013-05-11T11:15:29Z","first_opened_at":"2013-08-07T19:22:19Z","opened_at":"2013-08-07T19:22:19Z","first_resolved_at":"2013-08-07T19:22:27Z","resolved_at":"2013-08-07T19:22:27Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3033","class":"case"},"message":{"href":"/api/v2/cases/3033/message","class":"email"},"customer":{"href":"/api/v2/customers/85682944","class":"customer"},"labels":{"href":"/api/v2/cases/3033/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3033/history","class":"history"},"case_links":{"href":"/api/v2/cases/3033/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3033/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3033/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3033/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment","count":0}}},{"id":3034,"external_id":null,"blurb":"Salesforce.com
100
+ Certified Professionals\n Today''s new discussions from Salesforce.com Certified
101
+ Professionals group members. Change the frequency of this digest:\n http://www.linkedin.com/e/xz83s3-hgksl3xd-2h/ahs/151420/EMLt_anet_settings/?hs=false&t","subject":"How
102
+ many Lead Status values do you have in your org? If recordtypes are used,
103
+ answer with the average. Feel free to comment on what they are. Thanks.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T12:53:09Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T12:53:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3034","class":"case"},"message":{"href":"/api/v2/cases/3034/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3034/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3034/history","class":"history"},"case_links":{"href":"/api/v2/cases/3034/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3034/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3034/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3034/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment","count":0}}},{"id":3035,"external_id":null,"blurb":"your
104
+ daily deal\r\n\r\nSAN FRANCISCO presented by LivingSocial\r\n\r\nGael Modern
105
+ Health\r\n74% Off Body Vibration and Hydrocolonic Therapy\r\n\r\nPrice: $99\r\n\r\n\r\n\r\n1
106
+ Deal Location:\r\n\r\n\r\n\r\n\r\nThe professional staff at Gael Modern Health
107
+ will harness the power of cl","subject":"Hydrocolonic Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:09:43Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:43Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3035","class":"case"},"message":{"href":"/api/v2/cases/3035/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3035/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3035/history","class":"history"},"case_links":{"href":"/api/v2/cases/3035/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3035/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3035/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3035/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment","count":0}}},{"id":3036,"external_id":null,"blurb":"your
108
+ daily deal\r\n\r\nOAKLAND / EAST BAY presented by LivingSocial\r\n\r\nA Better
109
+ Body\r\n94% Off 20 Boot Camp Classes\r\n\r\nPrice: $30\r\n\r\n\r\n\r\n1 Deal
110
+ Location:\r\n\r\n\r\n\r\n\r\nThe folks at this Jack London Square fitness
111
+ facility can help you go from good to better to","subject":"Boot Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:09:44Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:44Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3036","class":"case"},"message":{"href":"/api/v2/cases/3036/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3036/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3036/history","class":"history"},"case_links":{"href":"/api/v2/cases/3036/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3036/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3036/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3036/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment","count":0}}},{"id":3037,"external_id":null,"blurb":"Hojoki
112
+ Daily Catch-Up: Sat, 11 May 2013\r\n========================================\r\n\r\nHi
113
+ Thomas,\r\n\r\nThis is what has happened over the past 24 hours:\r\n\r\n##
114
+ My Apps\r\nhttps://my.hojoki.com/#/p7940813\r\n\r\n###### GitHub\r\n* fractastical/BlockAlertsAnd-Actio","subject":"Daily
115
+ Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:58:58Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:58:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3037","class":"case"},"message":{"href":"/api/v2/cases/3037/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3037/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3037/history","class":"history"},"case_links":{"href":"/api/v2/cases/3037/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3037/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3037/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3037/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment","count":0}}},{"id":3038,"external_id":null,"blurb":"One
116
+ Kings Lane\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
117
+ \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r","subject":"Retro
118
+ kitchenware, bird-themed tableware, floor lamps, rugs by designers we love,
119
+ tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:04:49Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:04:49Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3038","class":"case"},"message":{"href":"/api/v2/cases/3038/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"labels":{"href":"/api/v2/cases/3038/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3038/history","class":"history"},"case_links":{"href":"/api/v2/cases/3038/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3038/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3038/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3038/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment","count":0}}},{"id":3039,"external_id":null,"blurb":"Your
120
+ Weekly Pinterest (http://email.pinterest.com/wf/click?upn=LneOtn3z4joCHC-2FVwrRO3-2BLhyOdLh-2FfZCZ0Fuqs3wR1fIcTjHYklUcZhEW4VF39pHwXT8inEa-2BWXehOtVoxuR8T0gZpQxliZs1gf7a-2BosVNKfyjxk1eTFOm5Xc5Oa-2BIVhPRngUI5tUJ6YGyIXqtML167SNyu5KPJhThynNpGQnAjzbs","subject":"Your
121
+ Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:04:50Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:04:50Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3039","class":"case"},"message":{"href":"/api/v2/cases/3039/message","class":"email"},"customer":{"href":"/api/v2/customers/85711509","class":"customer"},"labels":{"href":"/api/v2/cases/3039/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3039/history","class":"history"},"case_links":{"href":"/api/v2/cases/3039/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3039/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3039/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3039/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment","count":0}}},{"id":3040,"external_id":null,"blurb":"Your
122
+ Daily San Francisco Groupon | Go to Groupon.com (http://www.groupon.com/san-francisco?utm_source=newsletter&utm_medium=email&sid=a75449fd-3508-4add-9e67-7c6dce2c728e&division=san-francisco&user=f07795573252fce82801526610d60eb812686886dfc07d0","subject":"Ferrari
123
+ or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:11:06Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:11:06Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3040","class":"case"},"message":{"href":"/api/v2/cases/3040/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"labels":{"href":"/api/v2/cases/3040/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3040/history","class":"history"},"case_links":{"href":"/api/v2/cases/3040/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3040/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3040/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3040/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment","count":0}}},{"id":3041,"external_id":null,"blurb":"To
124
+ All Our Valued Users,\n \n I''m proud to announce that we have changed our
125
+ company name - Pageonce is now Check!\n \n I wanted to personally write and
126
+ let you know about the exciting news. We continually strive to evolve and
127
+ enhance our product to prov","subject":"Special Announcement: Pageonce is
128
+ now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:17:19Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:17:19Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3041","class":"case"},"message":{"href":"/api/v2/cases/3041/message","class":"email"},"customer":{"href":"/api/v2/customers/85712890","class":"customer"},"labels":{"href":"/api/v2/cases/3041/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3041/history","class":"history"},"case_links":{"href":"/api/v2/cases/3041/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3041/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3041/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3041/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment","count":0}}},{"id":3042,"external_id":null,"blurb":"----------------\r\nJACKTHREADS.COM\r\n----------------\r\n\r\nON
129
+ SALE NOW\r\n\r\nNew Arrivals: Warm-Weather Gear, New Arrivals: Summer Shoes,\r\nNew
130
+ Arrivals: Props for Your Pad, Beans & Bones Printed &\r\nLeather Ties, Most-Wanted
131
+ Watches ft. Monument, Happy Socks","subject":"New Arrivals: Warm-Weather Gear,
132
+ Props for Your Pad & More | Need It Now: Beans & Bones | Most-Wanted Watches
133
+ | Graphic Hip-Hop Tees | Happy Socks Gift Boxes & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T16:49:22Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T16:49:22Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3042","class":"case"},"message":{"href":"/api/v2/cases/3042/message","class":"email"},"customer":{"href":"/api/v2/customers/85726596","class":"customer"},"labels":{"href":"/api/v2/cases/3042/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3042/history","class":"history"},"case_links":{"href":"/api/v2/cases/3042/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3042/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3042/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3042/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment","count":0}}},{"id":3043,"external_id":null,"blurb":"ETRADE
134
+ FINANCIAL (https://us.etrade.com/e/t/home) \nImportant Information \n \t\n\nMay
135
+ 10, 2013\tSecond Notice \n \n Dear Valued Investor, \n \n We have some important
136
+ information about your account that requires your attention. Please call us
137
+ at your earli","subject":"Important Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T17:00:32Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T17:00:32Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3043","class":"case"},"message":{"href":"/api/v2/cases/3043/message","class":"email"},"customer":{"href":"/api/v2/customers/85728040","class":"customer"},"labels":{"href":"/api/v2/cases/3043/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3043/history","class":"history"},"case_links":{"href":"/api/v2/cases/3043/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3043/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3043/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3043/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment","count":0}}},{"id":3047,"external_id":null,"blurb":"Hulu
138
+ Plus\r\n\r\nTop 5: SNL''s Best Mom Moments\r\n\r\n\r\n1. The perfect way to
139
+ show her how special she is\r\n\r\nHere''s a chance to give your mom a present
140
+ she''ll never forget. Just make sure you knock before surprising her in the
141
+ bedroom. (2 min.) \r\n\r\nhttp://cl","subject":"Mother''s Day love from Will
142
+ Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T20:02:14Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T20:02:14Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3047","class":"case"},"message":{"href":"/api/v2/cases/3047/message","class":"email"},"customer":{"href":"/api/v2/customers/85752345","class":"customer"},"labels":{"href":"/api/v2/cases/3047/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3047/history","class":"history"},"case_links":{"href":"/api/v2/cases/3047/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3047/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3047/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3047/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment","count":0}}},{"id":3048,"external_id":null,"blurb":"Your
143
+ week in the cloud\r\n\r\nHello Thomas,\r\n\r\nThis is the weekly stats email
144
+ sent by Hojoki to thomas@stachl.me. It contains lots of infographic stuff
145
+ so it''s only available in html mode. Please open it with a modern email client.
146
+ You can add more apps ","subject":"Your week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T22:35:58Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T22:35:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3048","class":"case"},"message":{"href":"/api/v2/cases/3048/message","class":"email"},"customer":{"href":"/api/v2/customers/85771500","class":"customer"},"labels":{"href":"/api/v2/cases/3048/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3048/history","class":"history"},"case_links":{"href":"/api/v2/cases/3048/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3048/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3048/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3048/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment","count":0}}},{"id":3049,"external_id":null,"blurb":"We''ve
147
+ updated your balance\r\nFor your security:\r\nDear Thomas Stachl,\r\nWe''ve
148
+ updated the outstanding balance for your Corporate Card account.\r\nAs of
149
+ Thu, May 09 at 10:04 AM ET\r\nOutstanding Balance:\r\n$19.64\r\n\u00a0\r\nView
150
+ recent activity\r\nMake a payment\r\nUpda","subject":"Account Alert: Your
151
+ Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T23:16:25Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T23:16:25Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3049","class":"case"},"message":{"href":"/api/v2/cases/3049/message","class":"email"},"customer":{"href":"/api/v2/customers/85776070","class":"customer"},"labels":{"href":"/api/v2/cases/3049/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3049/history","class":"history"},"case_links":{"href":"/api/v2/cases/3049/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3049/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3049/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3049/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment","count":0}}},{"id":3050,"external_id":null,"blurb":"========================================\nGo
152
+ to Facebook\nhttp://www.facebook.com/n/?index.php&mid=7f8d41fG41fcacecG0G1a&bcode=1.1368315633.AbnjIea3pYjf77Gs&n_m=thomas%40stachl.me\n\nPlan
153
+ an Event\nhttp://www.facebook.com/n/?events%2Fcreate%2F&mid=7f8d41f","subject":"Bibi
154
+ Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-11T23:41:09Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-11T23:41:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3050","class":"case"},"message":{"href":"/api/v2/cases/3050/message","class":"email"},"customer":{"href":"/api/v2/customers/85779426","class":"customer"},"labels":{"href":"/api/v2/cases/3050/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3050/history","class":"history"},"case_links":{"href":"/api/v2/cases/3050/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3050/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3050/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3050/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment","count":0}}},{"id":3051,"external_id":null,"blurb":"LinkedIn\n------------Group:
155
+ LinkedPHPers - The Largest PHP Group\n\nSubject: LinkedPHPers Announcement
156
+ - Posting JOBS and PROMOTIONS on the LinkedPHPers\n\nHello everyone,\n\nAs
157
+ you probably know in this group we have quite strict rules regarding posting
158
+ t","subject":"LinkedPHPers Announcement - Posting JOBS and PROMOTIONS on the
159
+ LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T00:01:51Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T00:01:51Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3051","class":"case"},"message":{"href":"/api/v2/cases/3051/message","class":"email"},"customer":{"href":"/api/v2/customers/85781990","class":"customer"},"labels":{"href":"/api/v2/cases/3051/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3051/history","class":"history"},"case_links":{"href":"/api/v2/cases/3051/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3051/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3051/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3051/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment","count":0}}},{"id":3052,"external_id":null,"blurb":"Please
160
+ use an HTML-capable email client to view this message.\n\n","subject":"[The
161
+ Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T00:50:58Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T00:50:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3052","class":"case"},"message":{"href":"/api/v2/cases/3052/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3052/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3052/history","class":"history"},"case_links":{"href":"/api/v2/cases/3052/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3052/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3052/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3052/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment","count":0}}},{"id":3054,"external_id":null,"blurb":"\r\nWe
162
+ found 10+ new jobs for you this week\r\n\r\nSolution Sales Specialist Director
163
+ - Engineered Systems, Global Sales Support - new\r\nMultinational Enterprise
164
+ Software Company - Menlo Park, CA\r\n14 hours ago\r\nhttp://www.glassdoor.com/partner/jobListing.ht","subject":"10+
165
+ new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T03:26:01Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T03:26:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3054","class":"case"},"message":{"href":"/api/v2/cases/3054/message","class":"email"},"customer":{"href":"/api/v2/customers/85807851","class":"customer"},"labels":{"href":"/api/v2/cases/3054/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3054/history","class":"history"},"case_links":{"href":"/api/v2/cases/3054/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3054/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3054/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3054/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment","count":0}}},{"id":3055,"external_id":null,"blurb":"\n\n=====================================================================\nAMAZON.COM\n=====================================================================\n \nCheck
166
+ out our collection of men''s classic clothes for everyday wear\u00bffrom Nautica,
167
+ Izod, Dock","subject":"Men''s Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T08:05:00Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T08:05:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3055","class":"case"},"message":{"href":"/api/v2/cases/3055/message","class":"email"},"customer":{"href":"/api/v2/customers/85838535","class":"customer"},"labels":{"href":"/api/v2/cases/3055/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3055/history","class":"history"},"case_links":{"href":"/api/v2/cases/3055/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3055/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3055/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3055/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment","count":0}}},{"id":3056,"external_id":null,"blurb":"Reminder:
168
+ Make a deposit today \r\n\r\nAccount Ending: 0482\r\nDear Thomas Stachl,\r\n\r\nThank
169
+ you for setting up a High-Yield Savings Account account with American Express\r\nPersonal
170
+ Savings. As a reminder, you should make a deposit right away\r\nso you can
171
+ st","subject":"Reminder: Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T08:30:23Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T08:30:23Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3056","class":"case"},"message":{"href":"/api/v2/cases/3056/message","class":"email"},"customer":{"href":"/api/v2/customers/85840817","class":"customer"},"labels":{"href":"/api/v2/cases/3056/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3056/history","class":"history"},"case_links":{"href":"/api/v2/cases/3056/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3056/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3056/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3056/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment","count":0}}},{"id":3057,"external_id":null,"blurb":"Salesforce.com
172
+ Certified Professionals\r\n Today''s new discussions from Salesforce.com
173
+ Certified Professionals group members. Change the frequency of this digest:\r\n http://www.linkedin.com/e/xz83s3-hgm5wigc-5q/ahs/151420/EMLt_anet_settings/?hs=false","subject":"I
174
+ need a developer for a couple of hours work. I need to have a Apex trigger
175
+ created to trigger a WSDL and get the data retrieved via the WSDL into SF.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T11:54:57Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T11:54:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3057","class":"case"},"message":{"href":"/api/v2/cases/3057/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3057/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3057/history","class":"history"},"case_links":{"href":"/api/v2/cases/3057/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3057/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3057/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3057/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment","count":0}}},{"id":3058,"external_id":null,"blurb":"One-week
176
+ Bible plans, plus new plans from James MacDonald and Walk in the Word ministries\n\n5
177
+ Popular Week-Long Plans\n\nHere\u2019s a little insider info: If you want
178
+ to up your odds of finishing a Bible Plan, aim for a short one. In the YouVersion
179
+ Communit","subject":"Bible Plans You Can Finish this Week, Plus New James
180
+ MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T13:01:00Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T13:01:00Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3058","class":"case"},"message":{"href":"/api/v2/cases/3058/message","class":"email"},"customer":{"href":"/api/v2/customers/85868602","class":"customer"},"labels":{"href":"/api/v2/cases/3058/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3058/history","class":"history"},"case_links":{"href":"/api/v2/cases/3058/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3058/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3058/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3058/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment","count":0}}},{"id":3059,"external_id":null,"blurb":"your
181
+ daily deal\r\n\r\nOAKLAND / EAST BAY presented by LivingSocial\r\n\r\nCafe
182
+ Lizzi\r\nStart Five Days with Delicious Breakfasts & Espresso Drinks\r\n\r\nPrice:
183
+ $18\r\n\r\n\r\n\r\n1 Deal Location:\r\n\r\n\r\n\r\n\r\nA long-time local favorite
184
+ for those looking for comfort food, f","subject":"50% Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T13:14:24Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T13:14:24Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3059","class":"case"},"message":{"href":"/api/v2/cases/3059/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3059/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3059/history","class":"history"},"case_links":{"href":"/api/v2/cases/3059/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3059/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3059/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3059/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment","count":0}}},{"id":3060,"external_id":null,"blurb":"your
185
+ daily deal\r\n\r\nSAN FRANCISCO presented by LivingSocial\r\n\r\nTerranea
186
+ Resort\r\nFive Stars on the Pacific Ocean\r\n\r\nPrice: $249\r\n\r\n\r\n\r\n1
187
+ Deal Location:\r\n\r\n\r\n\r\n\r\nEscape Kit\r\n\u2022 A One-Night Stay for
188
+ Two in a Resort-View Guest Room ($249 per Night) \r\n\u2022 Or","subject":"Celebrate
189
+ Mother''s Day with $5 Off Almost All Purchases + 1 or 3 Nights in Palos Verdes
190
+ for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T13:14:25Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T13:14:25Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3060","class":"case"},"message":{"href":"/api/v2/cases/3060/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3060/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3060/history","class":"history"},"case_links":{"href":"/api/v2/cases/3060/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3060/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3060/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3060/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment","count":0}}},{"id":3061,"external_id":null,"blurb":"Hojoki
191
+ Daily Catch-Up: Sun, 12 May 2013\r\n========================================\r\n\r\nHi
192
+ Thomas,\r\n\r\nThis is what has happened over the past 24 hours:\r\n\r\n##
193
+ My Apps\r\nhttps://my.hojoki.com/#/p7940813\r\n\r\n###### GitHub\r\n* wlaurance/time-stamp-hash
194
+ by wlau","subject":"Daily Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T14:02:16Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T14:02:16Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3061","class":"case"},"message":{"href":"/api/v2/cases/3061/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3061/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3061/history","class":"history"},"case_links":{"href":"/api/v2/cases/3061/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3061/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3061/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3061/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment","count":0}}},{"id":3062,"external_id":null,"blurb":"One
195
+ Kings Lane\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
196
+ \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r","subject":"Living
197
+ room furniture, elegant jewelry, rugs for every budget, Downstairs clearance
198
+ items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T15:03:22Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T15:03:22Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3062","class":"case"},"message":{"href":"/api/v2/cases/3062/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"labels":{"href":"/api/v2/cases/3062/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3062/history","class":"history"},"case_links":{"href":"/api/v2/cases/3062/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3062/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3062/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3062/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment","count":0}}},{"id":3063,"external_id":null,"blurb":"Your
199
+ Daily San Francisco Groupon | Go to Groupon.com (http://www.groupon.com/san-francisco?utm_source=newsletter&utm_medium=email&sid=7c5c148c-ab40-45c0-a4e0-9bcaac4a92a1&division=san-francisco&user=f07795573252fce82801526610d60eb812686886dfc07d0","subject":"Mexican
200
+ Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T15:10:11Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T15:10:11Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3063","class":"case"},"message":{"href":"/api/v2/cases/3063/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"labels":{"href":"/api/v2/cases/3063/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3063/history","class":"history"},"case_links":{"href":"/api/v2/cases/3063/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3063/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3063/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3063/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment","count":0}}},{"id":3064,"external_id":null,"blurb":null,"subject":"Testing
201
+ customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-13T19:20:43Z","changed_at":"2013-09-10T21:34:42Z","created_at":"2013-05-13T18:12:07Z","updated_at":"2013-09-10T21:34:42Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3064","class":"case"},"message":{"href":"/api/v2/cases/3064/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"labels":{"href":"/api/v2/cases/3064/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3064/history","class":"history"},"case_links":{"href":"/api/v2/cases/3064/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3064/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3064/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3064/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment","count":0}}},{"id":3065,"external_id":null,"blurb":null,"subject":"Testing
202
+ the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-13T19:20:59Z","changed_at":"2013-09-10T21:34:42Z","created_at":"2013-05-13T18:13:39Z","updated_at":"2013-09-10T21:34:42Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3065","class":"case"},"message":{"href":"/api/v2/cases/3065/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"labels":{"href":"/api/v2/cases/3065/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3065/history","class":"history"},"case_links":{"href":"/api/v2/cases/3065/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3065/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3065/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3065/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment","count":0}}},{"id":3066,"external_id":null,"blurb":null,"subject":"Testing
203
+ more stuff","priority":5,"locked_until":null,"description":"","status":"pending","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-14T20:20:58Z","changed_at":"2013-08-16T17:04:52Z","created_at":"2013-05-13T19:20:03Z","updated_at":"2013-08-16T17:04:52Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
204
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3066","class":"case"},"message":{"href":"/api/v2/cases/3066/message","class":"email"},"customer":{"href":"/api/v2/customers/86116163","class":"customer"},"labels":{"href":"/api/v2/cases/3066/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3066/history","class":"history"},"case_links":{"href":"/api/v2/cases/3066/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3066/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3066/replies","class":"reply","count":2},"draft":{"href":"/api/v2/cases/3066/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3066/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3066/attachments","class":"attachment","count":0}}}]}}'
205
+ http_version:
206
+ recorded_at: Mon, 14 Jul 2014 22:14:44 GMT
207
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,238 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/cases/3065
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - desk.com Ruby Gem v0.6.2
14
+ Content-Type:
15
+ - application/json
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/json; charset=utf-8
23
+ date:
24
+ - Tue, 22 Nov 2016 23:58:37 GMT
25
+ server:
26
+ - nginx
27
+ vary:
28
+ - Accept-Encoding
29
+ x-api-version:
30
+ - 3a076ef1b5f7538a46d7d7d46986a40109f3ba96
31
+ x-rate-limit-limit:
32
+ - '1000'
33
+ x-rate-limit-remaining:
34
+ - '999'
35
+ x-rate-limit-reset:
36
+ - '23'
37
+ content-length:
38
+ - '613'
39
+ connection:
40
+ - Close
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: '{"id":3065,"blurb":null,"changed_at":"2015-02-14T06:13:03Z","created_at":"2013-05-13T18:13:39Z","custom_fields":{"market":null,"sfdc_case_id":null,"application_stage":null},"description":null,"external_id":null,"first_opened_at":null,"first_resolved_at":"2015-01-26T18:24:09Z","label_ids":[],"labels":[],"language":null,"locked_until":null,"opened_at":"2015-01-26T18:24:29Z","priority":5,"received_at":null,"resolved_at":"2015-01-26T18:24:09Z","status":"open","subject":"Testing
44
+ the Tank again","type":"email","updated_at":"2016-11-22T23:36:49Z","active_at":"2016-11-22T23:36:49Z","active_attachments_count":1,"active_notes_count":0,"has_pending_interactions":false,"has_failed_interactions":false,"route_status":"active","_links":{"labels":{"class":"label","href":"/api/v2/cases/3065/labels"},"assigned_group":null,"macro_preview":{"class":"macro_preview","href":"/api/v2/cases/3065/macros/preview"},"locked_by":{"class":"user","href":"/api/v2/users/16096734"},"case_links":{"class":"case_link","count":0,"href":"/api/v2/cases/3065/links"},"attachments":{"class":"attachment","count":1,"href":"/api/v2/cases/3065/attachments"},"history":{"class":"history","href":"/api/v2/cases/3065/history"},"feedbacks":null,"customer":{"class":"customer","href":"/api/v2/customers/86101780"},"replies":{"class":"reply","count":0,"href":"/api/v2/cases/3065/replies"},"draft":{"class":"reply","href":"/api/v2/cases/3065/replies/draft"},"notes":{"class":"note","count":0,"href":"/api/v2/cases/3065/notes"},"assigned_user":null,"self":{"class":"case","href":"/api/v2/cases/3065"},"message":{"class":"email","href":"/api/v2/cases/3065/message"}}}'
45
+ http_version:
46
+ recorded_at: Tue, 22 Nov 2016 23:58:37 GMT
47
+ - request:
48
+ method: get
49
+ uri: https://devel.desk.com/api/v2/cases/3065/attachments
50
+ body:
51
+ encoding: US-ASCII
52
+ string: ''
53
+ headers:
54
+ Accept:
55
+ - application/json
56
+ User-Agent:
57
+ - desk.com Ruby Gem v0.6.2
58
+ Content-Type:
59
+ - application/json
60
+ response:
61
+ status:
62
+ code: 200
63
+ message:
64
+ headers:
65
+ content-type:
66
+ - application/json; charset=utf-8
67
+ date:
68
+ - Tue, 22 Nov 2016 23:58:37 GMT
69
+ server:
70
+ - nginx
71
+ vary:
72
+ - Accept-Encoding
73
+ x-api-version:
74
+ - 3a076ef1b5f7538a46d7d7d46986a40109f3ba96
75
+ x-rate-limit-limit:
76
+ - '1000'
77
+ x-rate-limit-remaining:
78
+ - '998'
79
+ x-rate-limit-reset:
80
+ - '23'
81
+ content-length:
82
+ - '337'
83
+ connection:
84
+ - Close
85
+ body:
86
+ encoding: ASCII-8BIT
87
+ string: '{"page":1,"total_entries":1,"_links":{"self":{"class":"page","href":"/api/v2/cases/3065/attachments?page=1&per_page=50"},"first":{"class":"page","href":"/api/v2/cases/3065/attachments?page=1&per_page=50"},"last":{"class":"page","href":"/api/v2/cases/3065/attachments?page=1&per_page=50"},"next":null,"previous":null},"_embedded":{"entries":[{"id":253309685,"file_name":"file.jpg","content_type":"image/jpeg","size":2040,"url":"https://devel.desk.com/api/v2/cases/3065/attachments/253309685/url","erased_at":null,"created_at":"2016-11-22T23:38:10Z","updated_at":"2016-11-22T23:38:10Z","_links":{"self":{"class":"attachment","href":"/api/v2/cases/3065/attachments/253309685"},"case":{"class":"case","href":"/api/v2/cases/3065"},"uploaded_by":{"class":"user","href":"/api/v2/users/16096734"}}}]}}'
88
+ http_version:
89
+ recorded_at: Tue, 22 Nov 2016 23:58:37 GMT
90
+ - request:
91
+ method: get
92
+ uri: https://devel.desk.com/api/v2/cases/3065/attachments/253309685/url
93
+ body:
94
+ encoding: US-ASCII
95
+ string: ''
96
+ headers:
97
+ Accept:
98
+ - application/json
99
+ User-Agent:
100
+ - desk.com Ruby Gem v0.6.2
101
+ Content-Type:
102
+ - application/json
103
+ response:
104
+ status:
105
+ code: 302
106
+ message:
107
+ headers:
108
+ cache-control:
109
+ - no-cache, private
110
+ content-type:
111
+ - text/html; charset=utf-8
112
+ date:
113
+ - Tue, 22 Nov 2016 23:58:37 GMT
114
+ location:
115
+ - https://assistly-production.s3.amazonaws.com/75027/ticket_attachments/253309685/file_original.jpg?AWSAccessKeyId=AKIAJNSFWOZ6ZS23BMKQ&Expires=1479859237&Signature=sYbtKHD1fuiSR4PlaUTbb%2BEW4iM%3D&response-content-disposition=filename%3D%22file.jpg%22&response-content-type=image%2Fjpeg
116
+ server:
117
+ - nginx
118
+ status:
119
+ - 302 Found
120
+ vary:
121
+ - X-AppVersion
122
+ x-appversion:
123
+ - '15.3261'
124
+ x-frame-options:
125
+ - SAMEORIGIN
126
+ x-rack-cache:
127
+ - miss
128
+ x-rate-limit-limit:
129
+ - '1000'
130
+ x-rate-limit-remaining:
131
+ - '999'
132
+ x-rate-limit-reset:
133
+ - '23'
134
+ x-request-id:
135
+ - 9581c8f470c043a15107702504b6d39c
136
+ x-runtime:
137
+ - '0.469083'
138
+ x-ua-compatible:
139
+ - IE=Edge,chrome=1
140
+ content-length:
141
+ - '367'
142
+ connection:
143
+ - Close
144
+ body:
145
+ encoding: UTF-8
146
+ string: <html><body>You are being <a href="https://assistly-production.s3.amazonaws.com/75027/ticket_attachments/253309685/file_original.jpg?AWSAccessKeyId=AKIAJNSFWOZ6ZS23BMKQ&amp;Expires=1479859237&amp;Signature=sYbtKHD1fuiSR4PlaUTbb%2BEW4iM%3D&amp;response-content-disposition=filename%3D%22file.jpg%22&amp;response-content-type=image%2Fjpeg">redirected</a>.</body></html>
147
+ http_version:
148
+ recorded_at: Tue, 22 Nov 2016 23:58:37 GMT
149
+ - request:
150
+ method: get
151
+ uri: https://assistly-production.s3.amazonaws.com/75027/ticket_attachments/253309685/file_original.jpg?AWSAccessKeyId=AKIAJNSFWOZ6ZS23BMKQ&Expires=1479859237&Signature=sYbtKHD1fuiSR4PlaUTbb%2BEW4iM%3D&response-content-disposition=filename%3D%22file.jpg%22&response-content-type=image%2Fjpeg
152
+ body:
153
+ encoding: US-ASCII
154
+ string: ''
155
+ headers: {}
156
+ response:
157
+ status:
158
+ code: 200
159
+ message:
160
+ headers:
161
+ x-amz-id-2:
162
+ - UYTZFkBPfNkShiB2POdgbjDsIcJ+3eZ15MzljTVbCK9ezAtAidmUkGyr18jwdBGf
163
+ x-amz-request-id:
164
+ - 9ACD761D6C728543
165
+ date:
166
+ - Tue, 22 Nov 2016 23:58:39 GMT
167
+ x-amz-replication-status:
168
+ - COMPLETED
169
+ last-modified:
170
+ - Tue, 22 Nov 2016 23:38:12 GMT
171
+ etag:
172
+ - '"96c100add63da11b6b1250338423c944"'
173
+ x-amz-version-id:
174
+ - hxQumLtdhMxitQNDZCbFj_XLoWUhln7J
175
+ content-disposition:
176
+ - filename="file.jpg"
177
+ accept-ranges:
178
+ - bytes
179
+ content-type:
180
+ - image/jpeg
181
+ content-length:
182
+ - '2040'
183
+ server:
184
+ - AmazonS3
185
+ connection:
186
+ - close
187
+ body:
188
+ encoding: ASCII-8BIT
189
+ string: !binary |-
190
+ /9j/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQ
191
+ DQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQU
192
+ FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU
193
+ FP/AABEIADwAPAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQID
194
+ BAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQy
195
+ gZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElK
196
+ U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Sl
197
+ pqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz
198
+ 9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAME
199
+ BwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEK
200
+ FiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlq
201
+ c3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrC
202
+ w8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhED
203
+ EQA/AKU3hczv9z9KF8GjHMf6V7RZ+Ed6glP0q0/hDYOEr9T+trY+Clc8Hn8G
204
+ gA/J+lY154RAJ+T9K+grrwwFByuK57UPDI5+XFdEMSc7kfP1/wCERzhP0rmN
205
+ S8KYB+T9K9u1OSwh1tNJIuGvHwcraymJchiAZQuwE7TwTniqOo+FywPyfpXb
206
+ TxCfUHOULXPnTUvDxjJwtYr6ftYgg17rrHhE4b5K4268MlZiNldsZRkdEK9z
207
+ 9MLLw4qr93FTzeH8D7mRX5x6B+2V8atOnMv/AAkdlqEbFG2XunWkYIKAj7u0
208
+ 9NvQ/jzzPF/wUD+LEFnqNvP/AGTO95LJIlybVlktgybAkWGA2qRuGQTu6kji
209
+ vy9TqX3PdeXzsffOpaVDGwR1zIwyI1GWIyATgc4BIyegzzXDX9qdWcxwQlYi
210
+ ofd2xtJHzDhgfl4U44b5j0rxXwx+1l4ut/DemDU/h4uvvsj8y/OsLH9pZVX9
211
+ 6Y1hOGLIrZYsQc4wDx0CfthWFtKZ9b+HniWylmU7EsRDdIRzj596epzxxiuh
212
+ YicdLHDLAS3RkeJdFksfixp0fl6w0ReKJ7lLlUswWguDho9wLP8ALnIXACr0
213
+ 6H0uTwossIby+eQcA9Rwf1r5/wBS/aP8J638WbPXr3TvEuleVc24SweNmVol
214
+ iuUd2iVtpbM0fPJAU4PJz7lpn7S/wqeVreXxH9kJJx9rs54s9wfmjHbHX296
215
+ 2hi5R6MnEYKpJRstkZOseDAytiP9K4e98Ff6Q37v9K9h8K/EHw/40OooNRsI
216
+ 5E1B7Wzj89Q1xGACjKCcnOT09Ks3uiW/2huBXdTzPl3PPlg6kHZnxPH4W+G+
217
+ s+HQ2j38CahHEXMsl0Ap4HBUn5CfmCjPYjOcEeXa9pcWjiaHfHcPvQJIgJ4w
218
+ SRkj3XI9x06HyG11CW3Vl2M0cq5AbI79Rg/h+JrRfWBLcxwyxRWoCpEsiqQo
219
+ H95gOTx36/Wvmktdz7+E5Ri1LU+ztC1rwrZ+HdOF3rdtBcrbI0kT30ac4HGC
220
+ OPxqee68Pa1v+wXsN+sWA/2e7SXZnPBCg46Hrzx9a+QbPTnuZEW3vrabfx8j
221
+ k4+oxnse1dD8PfGGp+Eby4tbCyi1Rbog3ETbh5YTdzvHC9T2NdOktUzy6lGU
222
+ VeMj1HVbO2sPG8VysRmt4WjJEjg7j8w3cAYA3ZAx6/g7ZFBeS3FuZ5JZc5eW
223
+ RcZznP3evHeuaufEWpXmtKq6eoU/NwGbIwTn8gauz68sixjckaOSobzNoJ74
224
+ 65/Crikm+eS+8ynKq0rLYg1DZp3mt58xeQ7mCSgBm5yTxjPNW7L4k+IIrZEj
225
+ uJ441GFCzvyPXr/LisW3lttSuGCzG4Cn5/KlDhe+Dg8fSpbl4UlKgzKBwACK
226
+ 9JQpuKtZmHPNOz3PLLPWrSRn3CJYEVkbhV3b92AqkrgDOMjgfSmRavpl3ctJ
227
+ NYx+XIFVH8shjjAyVBwenUY781wnnuMpuJUdjVi0mJBJAO0DAPbJx/WvmeTz
228
+ Po+c7fT9H0aa+s5ftbCEuhaMZXzQW+ZcnoACOeOh68E9Nb61p+iQxafYzXUW
229
+ 52ZjECrGQg7FU98jGCQeRnnArya2kJuYeAAJEGMcHnvXVg+Tcx3Ay0sU2Iiz
230
+ EiPayAYGcd++elYVaTlvJkrU7PSNdjFynnBnW5RkWEgHcFUh5d23nOGUY7gj
231
+ tgmqalLd+ddx/bJnU+XLJNKxbph9uDgHr17c8ZxWIR9i1H7RHnKx7ljY5QZy
232
+ vTv0B5759TW/H4Zs9S1OeCfeVf7zKQGJLhSc464Y/wCQK43GMXfoaJNqyOXt
233
+ tRttPiM8BKMql2ETNhsAnB7EZAycnueaZd+MJInRmTesqCRCG3HafXA4Psef
234
+ r1Nq/hS73W5GxIbiNFKE8/dySDkZJGenJpvhzw1baja3Mk0twGS4eMbJNowM
235
+ dhXTGu4LmuzCVNN6o//Z
236
+ http_version:
237
+ recorded_at: Tue, 22 Nov 2016 23:58:38 GMT
238
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,47 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/cases/3065
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - desk.com Ruby Gem v0.6.2
14
+ Content-Type:
15
+ - application/json
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/json; charset=utf-8
23
+ date:
24
+ - Tue, 22 Nov 2016 23:47:22 GMT
25
+ server:
26
+ - nginx
27
+ vary:
28
+ - Accept-Encoding
29
+ x-api-version:
30
+ - 3a076ef1b5f7538a46d7d7d46986a40109f3ba96
31
+ x-rate-limit-limit:
32
+ - '1000'
33
+ x-rate-limit-remaining:
34
+ - '999'
35
+ x-rate-limit-reset:
36
+ - '38'
37
+ content-length:
38
+ - '613'
39
+ connection:
40
+ - Close
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: '{"id":3065,"blurb":null,"changed_at":"2015-02-14T06:13:03Z","created_at":"2013-05-13T18:13:39Z","custom_fields":{"market":null,"sfdc_case_id":null,"application_stage":null},"description":null,"external_id":null,"first_opened_at":null,"first_resolved_at":"2015-01-26T18:24:09Z","label_ids":[],"labels":[],"language":null,"locked_until":null,"opened_at":"2015-01-26T18:24:29Z","priority":5,"received_at":null,"resolved_at":"2015-01-26T18:24:09Z","status":"open","subject":"Testing
44
+ the Tank again","type":"email","updated_at":"2016-11-22T23:36:49Z","active_at":"2016-11-22T23:36:49Z","active_attachments_count":1,"active_notes_count":0,"has_pending_interactions":false,"has_failed_interactions":false,"route_status":"active","_links":{"labels":{"class":"label","href":"/api/v2/cases/3065/labels"},"assigned_group":null,"macro_preview":{"class":"macro_preview","href":"/api/v2/cases/3065/macros/preview"},"locked_by":{"class":"user","href":"/api/v2/users/16096734"},"case_links":{"class":"case_link","count":0,"href":"/api/v2/cases/3065/links"},"attachments":{"class":"attachment","count":1,"href":"/api/v2/cases/3065/attachments"},"history":{"class":"history","href":"/api/v2/cases/3065/history"},"feedbacks":null,"customer":{"class":"customer","href":"/api/v2/customers/86101780"},"replies":{"class":"reply","count":0,"href":"/api/v2/cases/3065/replies"},"draft":{"class":"reply","href":"/api/v2/cases/3065/replies/draft"},"notes":{"class":"note","count":0,"href":"/api/v2/cases/3065/notes"},"assigned_user":null,"self":{"class":"case","href":"/api/v2/cases/3065"},"message":{"class":"email","href":"/api/v2/cases/3065/message"}}}'
45
+ http_version:
46
+ recorded_at: Tue, 22 Nov 2016 23:47:22 GMT
47
+ recorded_with: VCR 3.0.3