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
@@ -1,113 +0,0 @@
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.1.3
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- accept-ranges:
20
- - bytes
21
- cache-control:
22
- - must-revalidate, private, max-age=0
23
- content-type:
24
- - application/json; charset=utf-8
25
- date:
26
- - Thu, 12 Dec 2013 18:57:02 GMT
27
- etag:
28
- - '"477caaa38640911b1aabea24b7aa0429"'
29
- status:
30
- - 200 OK
31
- vary:
32
- - X-AppVersion
33
- x-appversion:
34
- - '15.6'
35
- x-frame-options:
36
- - SAMEORIGIN
37
- x-rate-limit-limit:
38
- - '60'
39
- x-rate-limit-remaining:
40
- - '49'
41
- x-rate-limit-reset:
42
- - '58'
43
- x-request-id:
44
- - 580cd97e1ef7f082c6d92f1358ada8b3
45
- content-length:
46
- - '54844'
47
- connection:
48
- - Close
49
- body:
50
- encoding: UTF-8
51
- string: '{"total_entries":359,"_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":[{"external_id":null,"subject":"","priority":9,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"en","active_at":"2013-09-07T19:38:58Z","created_at":"2013-05-09T17:02:16Z","updated_at":"2013-09-07T19:39:07Z","received_at":"2013-05-09T17:02:16Z","first_opened_at":"2013-05-09T17:02:17Z","opened_at":"2013-05-09T17:02:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
52
- 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3011","class":"case"},"message":{"href":"/api/v2/cases/3011/message","class":"phone"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3011/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3011/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3011/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":null,"status":"pending","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:55:10Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2013-08-05T18:45:21Z","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":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/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3012/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:28:14Z","created_at":"2013-05-09T21:50:06Z","updated_at":"2013-05-10T18:28:11Z","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":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
53
- 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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3013/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment"}}},{"external_id":"","subject":"Testing
54
- Quick Case","priority":8,"locked_until":null,"description":"Some additional
55
- Description regarding this email.","status":"resolved","type":"email","labels":[],"language":"de","active_at":"2013-05-10T19:08:27Z","created_at":"2013-05-10T19:08:10Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3014/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
56
- the Quick Case","priority":9,"locked_until":null,"description":"Additional
57
- description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T20:21:21Z","created_at":"2013-05-10T20:20:18Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3015/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
58
- Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:01:36Z","created_at":"2013-05-10T22:01:25Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3016/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
59
- Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"language":"de","active_at":null,"created_at":"2013-05-10T22:11:43Z","updated_at":"2013-09-10T21:34:35Z","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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3017/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment"}}},{"external_id":null,"subject":"Quick
60
- Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-16T01:10:29Z","created_at":"2013-05-10T22:20:01Z","updated_at":"2013-05-16T01:01:33Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
61
- 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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3018/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
62
- Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:25:38Z","created_at":"2013-05-10T22:25:19Z","updated_at":"2013-09-10T21:34:35Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3019/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
63
- stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"de","active_at":"2013-05-23T23:15:51Z","created_at":"2013-05-10T23:02:08Z","updated_at":"2013-05-15T00:17:23Z","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":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
64
- 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/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3021/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3021/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3021/attachments","class":"attachment"}}},{"external_id":null,"subject":"The
65
- moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-11T01:43:17Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3022/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas
66
- Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-16T18:12:22Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3023/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
67
- Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3024/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment"}}},{"external_id":null,"subject":"Rising
68
- Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3025/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment"}}},{"external_id":null,"subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"language":"de","active_at":null,"created_at":"2013-05-11T01:41:04Z","updated_at":"2013-09-10T21:34:36Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3026/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
69
- Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3027/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
70
- Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3028/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment"}}},{"external_id":null,"subject":"St\u00e4dtehighlights
71
- z.B. Hamburg mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3029/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment"}}},{"external_id":null,"subject":"RingDNA
72
- releases mobile call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3030/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment"}}},{"external_id":null,"subject":"Get
73
- credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3031/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas,
74
- stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-13T16:49:33Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3032/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment"}}},{"external_id":null,"subject":"Neuigkeiten
75
- f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"language":"en","active_at":"2013-08-07T19:22:19Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3033/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment"}}},{"external_id":null,"subject":"How
76
- many Lead Status values do you have in your org? If recordtypes are used,
77
- 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":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3034/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment"}}},{"external_id":null,"subject":"Hydrocolonic
78
- Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3035/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment"}}},{"external_id":null,"subject":"Boot
79
- Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3036/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
80
- Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3037/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment"}}},{"external_id":null,"subject":"Retro
81
- kitchenware, bird-themed tableware, floor lamps, rugs by designers we love,
82
- tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3038/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
83
- Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3039/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment"}}},{"external_id":null,"subject":"Ferrari
84
- or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3040/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment"}}},{"external_id":null,"subject":"Special
85
- Announcement: Pageonce is now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3041/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment"}}},{"external_id":null,"subject":"New
86
- Arrivals: Warm-Weather Gear, Props for Your Pad & More | Need It Now: Beans
87
- & Bones | Most-Wanted Watches | Graphic Hip-Hop Tees | Happy Socks Gift Boxes
88
- & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3042/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment"}}},{"external_id":null,"subject":"Important
89
- Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3043/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mother''s
90
- Day love from Will Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3047/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
91
- week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3048/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment"}}},{"external_id":null,"subject":"Account
92
- Alert: Your Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3049/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bibi
93
- Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3050/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment"}}},{"external_id":null,"subject":"LinkedPHPers
94
- Announcement - Posting JOBS and PROMOTIONS on the LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3051/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
95
- Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3052/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment"}}},{"external_id":null,"subject":"10+
96
- new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3054/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment"}}},{"external_id":null,"subject":"Men''s
97
- Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3055/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment"}}},{"external_id":null,"subject":"Reminder:
98
- Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3056/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment"}}},{"external_id":null,"subject":"I
99
- need a developer for a couple of hours work. I need to have a Apex trigger
100
- 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":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3057/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bible
101
- Plans You Can Finish this Week, Plus New James MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3058/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment"}}},{"external_id":null,"subject":"50%
102
- Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3059/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment"}}},{"external_id":null,"subject":"Celebrate
103
- Mother''s Day with $5 Off Almost All Purchases + 1 or 3 Nights in Palos Verdes
104
- for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3060/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
105
- Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3061/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment"}}},{"external_id":null,"subject":"Living
106
- room furniture, elegant jewelry, rugs for every budget, Downstairs clearance
107
- items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3062/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mexican
108
- Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3063/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
109
- customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:43Z","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"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3064/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
110
- the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:59Z","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"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3065/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment"}}}]}}'
111
- http_version:
112
- recorded_at: Thu, 12 Dec 2013 18:57:02 GMT
113
- recorded_with: VCR 2.5.0
@@ -1,62 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://devel.desk.com/api/v2/articles
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.3
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- accept-ranges:
20
- - bytes
21
- cache-control:
22
- - must-revalidate, private, max-age=0
23
- content-type:
24
- - application/json; charset=utf-8
25
- date:
26
- - Thu, 12 Dec 2013 18:57:01 GMT
27
- etag:
28
- - '"1daa08a60cce691df71fcac04dedee89"'
29
- status:
30
- - 200 OK
31
- vary:
32
- - X-AppVersion
33
- x-appversion:
34
- - '15.6'
35
- x-frame-options:
36
- - SAMEORIGIN
37
- x-rate-limit-limit:
38
- - '60'
39
- x-rate-limit-remaining:
40
- - '51'
41
- x-rate-limit-reset:
42
- - '59'
43
- x-request-id:
44
- - e9e39c15b37ffa83f4950c029a861ce2
45
- content-length:
46
- - '3447'
47
- connection:
48
- - Close
49
- body:
50
- encoding: UTF-8
51
- string: '{"total_entries":3,"_links":{"self":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"subject":"Testing","body":"<table><tr><td>Testing</td></tr></table>","body_email":"Testing","body_email_auto":true,"body_chat":"Testing","body_chat_auto":true,"body_web_callback":"<table><tr><td>Testing</td></tr></table>","body_web_callback_auto":true,"body_twitter":"Testing","body_twitter_auto":true,"body_qna":"Testing","body_qna_auto":true,"body_phone":"Testing","body_phone_auto":true,"body_facebook":"Testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":"","position":1,"quickcode":null,"in_support_center":false,"internal_notes":"","publish_at":"2013-09-11T19:13:21Z","created_at":"2013-09-11T19:11:48Z","updated_at":"2013-09-11T19:13:21Z","_links":{"self":{"href":"/api/v2/articles/1295677","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1295677/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"subject":"Testing","body":"<img
52
- alt=\"\" src=\"/customer/portal/attachments/209748\" style=\"width: 1440px;
53
- height: 900px;\" />","body_email":"","body_email_auto":true,"body_chat":"","body_chat_auto":true,"body_web_callback":"<img
54
- alt=\"\" src=\"/customer/portal/attachments/209748\" style=\"width: 1440px;
55
- height: 900px;\" />","body_web_callback_auto":true,"body_twitter":"","body_twitter_auto":true,"body_qna":"","body_qna_auto":true,"body_phone":"","body_phone_auto":true,"body_facebook":"","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":"","position":2,"quickcode":null,"in_support_center":true,"internal_notes":"","publish_at":"2013-10-28T23:00:22Z","created_at":"2013-10-28T22:59:19Z","updated_at":"2013-10-28T23:00:22Z","_links":{"self":{"href":"/api/v2/articles/1348945","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1348945/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"subject":"Testing
56
- OAuth","body":"OAuth testing","body_email":"OAuth testing","body_email_auto":true,"body_chat":"OAuth
57
- testing","body_chat_auto":true,"body_web_callback":"OAuth testing","body_web_callback_auto":true,"body_twitter":"OAuth
58
- testing","body_twitter_auto":true,"body_qna":"OAuth testing","body_qna_auto":true,"body_phone":"OAuth
59
- testing","body_phone_auto":true,"body_facebook":"OAuth testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":3,"quickcode":null,"in_support_center":null,"internal_notes":null,"publish_at":null,"created_at":"2013-12-12T02:52:01Z","updated_at":"2013-12-12T02:52:01Z","_links":{"self":{"href":"/api/v2/articles/1391016","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1391016/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}}]}}'
60
- http_version:
61
- recorded_at: Thu, 12 Dec 2013 18:57:01 GMT
62
- recorded_with: VCR 2.5.0
@@ -1,113 +0,0 @@
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.1.3
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- accept-ranges:
20
- - bytes
21
- cache-control:
22
- - must-revalidate, private, max-age=0
23
- content-type:
24
- - application/json; charset=utf-8
25
- date:
26
- - Thu, 12 Dec 2013 18:57:02 GMT
27
- etag:
28
- - '"477caaa38640911b1aabea24b7aa0429"'
29
- status:
30
- - 200 OK
31
- vary:
32
- - X-AppVersion
33
- x-appversion:
34
- - '15.6'
35
- x-frame-options:
36
- - SAMEORIGIN
37
- x-rate-limit-limit:
38
- - '60'
39
- x-rate-limit-remaining:
40
- - '50'
41
- x-rate-limit-reset:
42
- - '59'
43
- x-request-id:
44
- - 0d2407f4b43502075cf1ce6abbac1b41
45
- content-length:
46
- - '54844'
47
- connection:
48
- - Close
49
- body:
50
- encoding: UTF-8
51
- string: '{"total_entries":359,"_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":[{"external_id":null,"subject":"","priority":9,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"en","active_at":"2013-09-07T19:38:58Z","created_at":"2013-05-09T17:02:16Z","updated_at":"2013-09-07T19:39:07Z","received_at":"2013-05-09T17:02:16Z","first_opened_at":"2013-05-09T17:02:17Z","opened_at":"2013-05-09T17:02:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
52
- 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3011","class":"case"},"message":{"href":"/api/v2/cases/3011/message","class":"phone"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3011/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3011/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3011/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":null,"status":"pending","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:55:10Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2013-08-05T18:45:21Z","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":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/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3012/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:28:14Z","created_at":"2013-05-09T21:50:06Z","updated_at":"2013-05-10T18:28:11Z","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":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
53
- 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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3013/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment"}}},{"external_id":"","subject":"Testing
54
- Quick Case","priority":8,"locked_until":null,"description":"Some additional
55
- Description regarding this email.","status":"resolved","type":"email","labels":[],"language":"de","active_at":"2013-05-10T19:08:27Z","created_at":"2013-05-10T19:08:10Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3014/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
56
- the Quick Case","priority":9,"locked_until":null,"description":"Additional
57
- description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T20:21:21Z","created_at":"2013-05-10T20:20:18Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3015/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
58
- Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:01:36Z","created_at":"2013-05-10T22:01:25Z","updated_at":"2013-09-10T21:34:34Z","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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3016/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
59
- Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"language":"de","active_at":null,"created_at":"2013-05-10T22:11:43Z","updated_at":"2013-09-10T21:34:35Z","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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3017/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment"}}},{"external_id":null,"subject":"Quick
60
- Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-16T01:10:29Z","created_at":"2013-05-10T22:20:01Z","updated_at":"2013-05-16T01:01:33Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
61
- 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/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3018/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
62
- Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:25:38Z","created_at":"2013-05-10T22:25:19Z","updated_at":"2013-09-10T21:34:35Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3019/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
63
- stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"de","active_at":"2013-05-23T23:15:51Z","created_at":"2013-05-10T23:02:08Z","updated_at":"2013-05-15T00:17:23Z","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":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
64
- 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/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3021/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3021/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3021/attachments","class":"attachment"}}},{"external_id":null,"subject":"The
65
- moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-11T01:43:17Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3022/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas
66
- Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-16T18:12:22Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3023/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
67
- Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3024/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment"}}},{"external_id":null,"subject":"Rising
68
- Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3025/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment"}}},{"external_id":null,"subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"language":"de","active_at":null,"created_at":"2013-05-11T01:41:04Z","updated_at":"2013-09-10T21:34:36Z","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/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3026/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
69
- Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3027/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
70
- Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3028/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment"}}},{"external_id":null,"subject":"St\u00e4dtehighlights
71
- z.B. Hamburg mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3029/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment"}}},{"external_id":null,"subject":"RingDNA
72
- releases mobile call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3030/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment"}}},{"external_id":null,"subject":"Get
73
- credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3031/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas,
74
- stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-13T16:49:33Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3032/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment"}}},{"external_id":null,"subject":"Neuigkeiten
75
- f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"language":"en","active_at":"2013-08-07T19:22:19Z","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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3033/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment"}}},{"external_id":null,"subject":"How
76
- many Lead Status values do you have in your org? If recordtypes are used,
77
- 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":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3034/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment"}}},{"external_id":null,"subject":"Hydrocolonic
78
- Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3035/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment"}}},{"external_id":null,"subject":"Boot
79
- Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3036/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
80
- Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3037/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment"}}},{"external_id":null,"subject":"Retro
81
- kitchenware, bird-themed tableware, floor lamps, rugs by designers we love,
82
- tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3038/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
83
- Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3039/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment"}}},{"external_id":null,"subject":"Ferrari
84
- or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3040/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment"}}},{"external_id":null,"subject":"Special
85
- Announcement: Pageonce is now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3041/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment"}}},{"external_id":null,"subject":"New
86
- Arrivals: Warm-Weather Gear, Props for Your Pad & More | Need It Now: Beans
87
- & Bones | Most-Wanted Watches | Graphic Hip-Hop Tees | Happy Socks Gift Boxes
88
- & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3042/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment"}}},{"external_id":null,"subject":"Important
89
- Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3043/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mother''s
90
- Day love from Will Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3047/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
91
- week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3048/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment"}}},{"external_id":null,"subject":"Account
92
- Alert: Your Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3049/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bibi
93
- Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3050/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment"}}},{"external_id":null,"subject":"LinkedPHPers
94
- Announcement - Posting JOBS and PROMOTIONS on the LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3051/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
95
- Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3052/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment"}}},{"external_id":null,"subject":"10+
96
- new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3054/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment"}}},{"external_id":null,"subject":"Men''s
97
- Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3055/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment"}}},{"external_id":null,"subject":"Reminder:
98
- Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3056/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment"}}},{"external_id":null,"subject":"I
99
- need a developer for a couple of hours work. I need to have a Apex trigger
100
- 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":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3057/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bible
101
- Plans You Can Finish this Week, Plus New James MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3058/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment"}}},{"external_id":null,"subject":"50%
102
- Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3059/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment"}}},{"external_id":null,"subject":"Celebrate
103
- Mother''s Day with $5 Off Almost All Purchases + 1 or 3 Nights in Palos Verdes
104
- for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3060/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
105
- Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3061/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment"}}},{"external_id":null,"subject":"Living
106
- room furniture, elegant jewelry, rugs for every budget, Downstairs clearance
107
- items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3062/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mexican
108
- Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"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"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3063/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
109
- customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:43Z","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"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3064/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
110
- the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:59Z","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"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3065/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment"}}}]}}'
111
- http_version:
112
- recorded_at: Thu, 12 Dec 2013 18:57:02 GMT
113
- recorded_with: VCR 2.5.0