desk_api 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/.yardopts +3 -0
  6. data/Gemfile +15 -0
  7. data/Guardfile +5 -0
  8. data/LICENSE +7 -0
  9. data/README.md +185 -0
  10. data/Rakefile +15 -0
  11. data/config.rb +7 -0
  12. data/desk_api.gemspec +36 -0
  13. data/lib/desk/action/create.rb +15 -0
  14. data/lib/desk/action/delete.rb +9 -0
  15. data/lib/desk/action/embedded.rb +12 -0
  16. data/lib/desk/action/field.rb +33 -0
  17. data/lib/desk/action/link.rb +29 -0
  18. data/lib/desk/action/resource.rb +14 -0
  19. data/lib/desk/action/search.rb +15 -0
  20. data/lib/desk/action/update.rb +12 -0
  21. data/lib/desk/client.rb +67 -0
  22. data/lib/desk/configuration.rb +132 -0
  23. data/lib/desk/default.rb +67 -0
  24. data/lib/desk/error/bad_gateway.rb +10 -0
  25. data/lib/desk/error/bad_request.rb +10 -0
  26. data/lib/desk/error/client_error.rb +9 -0
  27. data/lib/desk/error/configuration_error.rb +8 -0
  28. data/lib/desk/error/conflict.rb +10 -0
  29. data/lib/desk/error/forbidden.rb +10 -0
  30. data/lib/desk/error/gateway_timeout.rb +10 -0
  31. data/lib/desk/error/internal_server_error.rb +10 -0
  32. data/lib/desk/error/method_not_allowed.rb +10 -0
  33. data/lib/desk/error/method_not_supported.rb +9 -0
  34. data/lib/desk/error/not_acceptable.rb +10 -0
  35. data/lib/desk/error/not_found.rb +10 -0
  36. data/lib/desk/error/parse_error.rb +9 -0
  37. data/lib/desk/error/parser_error.rb +9 -0
  38. data/lib/desk/error/server_error.rb +9 -0
  39. data/lib/desk/error/service_unavailable.rb +10 -0
  40. data/lib/desk/error/too_many_requests.rb +10 -0
  41. data/lib/desk/error/unauthorized.rb +10 -0
  42. data/lib/desk/error/unprocessable_entity.rb +10 -0
  43. data/lib/desk/error/unsupported_media_type.rb +10 -0
  44. data/lib/desk/error.rb +61 -0
  45. data/lib/desk/rate_limit.rb +26 -0
  46. data/lib/desk/request/retry.rb +51 -0
  47. data/lib/desk/resource/article.rb +10 -0
  48. data/lib/desk/resource/article_translation.rb +8 -0
  49. data/lib/desk/resource/attachment.rb +8 -0
  50. data/lib/desk/resource/case.rb +9 -0
  51. data/lib/desk/resource/company.rb +8 -0
  52. data/lib/desk/resource/customer.rb +9 -0
  53. data/lib/desk/resource/integration_url.rb +9 -0
  54. data/lib/desk/resource/job.rb +7 -0
  55. data/lib/desk/resource/label.rb +9 -0
  56. data/lib/desk/resource/macro.rb +9 -0
  57. data/lib/desk/resource/macro_action.rb +7 -0
  58. data/lib/desk/resource/note.rb +7 -0
  59. data/lib/desk/resource/page.rb +81 -0
  60. data/lib/desk/resource/reply.rb +8 -0
  61. data/lib/desk/resource/topic.rb +9 -0
  62. data/lib/desk/resource/topic_translation.rb +9 -0
  63. data/lib/desk/resource/user_preference.rb +7 -0
  64. data/lib/desk/resource.rb +53 -0
  65. data/lib/desk/resources.json +76 -0
  66. data/lib/desk/response/raise_error.rb +34 -0
  67. data/lib/desk/version.rb +3 -0
  68. data/lib/desk.rb +35 -0
  69. data/spec/cassettes/Desk_Client/_delete/deletes_a_resource.yml +48 -0
  70. data/spec/cassettes/Desk_Client/_get/fetches_resources.yml +55 -0
  71. data/spec/cassettes/Desk_Client/_patch/updates_a_resource.yml +62 -0
  72. data/spec/cassettes/Desk_Client/_post/creates_a_resource.yml +58 -0
  73. data/spec/cassettes/Desk_Error/_from_response/can_be_created_from_a_faraday_response.yml +54 -0
  74. data/spec/cassettes/Desk_Error/_from_response/uses_the_body_message_if_present.yml +54 -0
  75. data/spec/cassettes/Desk_Resource/_by_url/finds_resources_by_url.yml +313 -0
  76. data/spec/cassettes/Desk_Resource/_create/creates_a_new_topic.yml +58 -0
  77. data/spec/cassettes/Desk_Resource/_delete/deletes_a_resource.yml +164 -0
  78. data/spec/cassettes/Desk_Resource/_delete/throws_an_error_deleting_a_non_deletalbe_resource.yml +56 -0
  79. data/spec/cassettes/Desk_Resource/_exec_/can_be_forced_to_reload.yml +313 -0
  80. data/spec/cassettes/Desk_Resource/_exec_/loads_the_current_resource.yml +313 -0
  81. data/spec/cassettes/Desk_Resource/_method_missing/loads_the_resource_to_find_a_suitable_method.yml +313 -0
  82. data/spec/cassettes/Desk_Resource/_method_missing/raises_an_error_if_method_does_not_exist.yml +313 -0
  83. data/spec/cassettes/Desk_Resource/_search/allows_searching_on_search_enabled_resources.yml +54 -0
  84. data/spec/cassettes/Desk_Resource/_update/throws_an_error_updating_a_user.yml +56 -0
  85. data/spec/cassettes/Desk_Resource/_update/updates_a_topic.yml +118 -0
  86. data/spec/cassettes/Desk_Resource_Page/_by_id/loads_the_requested_resource.yml +54 -0
  87. data/spec/cassettes/Desk_Resource_Page/_page/keeps_the_resource_as_loaded.yml +113 -0
  88. data/spec/cassettes/Desk_Resource_Page/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +313 -0
  89. data/spec/cassettes/Desk_Resource_Page/_page/sets_the_resource_to_not_loaded.yml +113 -0
  90. data/spec/desk/client_spec.rb +133 -0
  91. data/spec/desk/configuration_spec.rb +183 -0
  92. data/spec/desk/default_spec.rb +69 -0
  93. data/spec/desk/error_spec.rb +23 -0
  94. data/spec/desk/rate_limit_spec.rb +42 -0
  95. data/spec/desk/request/retry_spec.rb +46 -0
  96. data/spec/desk/resource_spec.rb +119 -0
  97. data/spec/desk/resources/page_spec.rb +64 -0
  98. data/spec/desk_spec.rb +43 -0
  99. data/spec/spec_helper.rb +39 -0
  100. metadata +347 -0
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/articles/search?text=Lorem+Ipsum
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.0
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, 15 Aug 2013 21:20:33 GMT
27
+ ETag:
28
+ - '"498b2a1a02496207b3b2c1f524be8349"'
29
+ Status:
30
+ - 200 OK
31
+ Vary:
32
+ - X-AppVersion
33
+ X-AppVersion:
34
+ - '7.9'
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ X-Rate-Limit-Limit:
38
+ - '60'
39
+ X-Rate-Limit-Remaining:
40
+ - '45'
41
+ X-Rate-Limit-Reset:
42
+ - '27'
43
+ X-Request-Id:
44
+ - bdd6efae109788511d7ae06a39fb5e1b
45
+ Content-Length:
46
+ - '293'
47
+ Connection:
48
+ - keep-alive
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"total_entries":0,"_links":{"self":{"href":"/api/v2/articles?page=1&per_page=30","class":"page"},"first":{"href":"/api/v2/articles?page=1&per_page=30","class":"page"},"last":{"href":"/api/v2/articles?page=1&per_page=30","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[]}}'
52
+ http_version:
53
+ recorded_at: Thu, 15 Aug 2013 21:20:33 GMT
54
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,56 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/users
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.0
14
+ response:
15
+ status:
16
+ code: 200
17
+ message:
18
+ headers:
19
+ Accept-Ranges:
20
+ - bytes
21
+ Cache-Control:
22
+ - no-cache, private
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Date:
26
+ - Thu, 15 Aug 2013 21:20:33 GMT
27
+ ETag:
28
+ - '"1376586898"'
29
+ Status:
30
+ - 200 OK
31
+ Vary:
32
+ - X-AppVersion
33
+ X-AppVersion:
34
+ - '7.9'
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ X-Rate-Limit-Limit:
38
+ - '60'
39
+ X-Rate-Limit-Remaining:
40
+ - '42'
41
+ X-Rate-Limit-Reset:
42
+ - '27'
43
+ X-Request-Id:
44
+ - 474bebf1200446a5e7b7d24721b12a89
45
+ Content-Length:
46
+ - '1868'
47
+ Connection:
48
+ - keep-alive
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"total_entries":5,"_links":{"self":{"href":"/api/v2/users?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/users?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/users?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"name":"Thomas
52
+ Stachl","public_name":"Thomas Stachl","email":"tstachl@salesforce.com","level":"siteadmin_billing","_links":{"self":{"href":"/api/v2/users/16096734","class":"user"},"preferences":{"href":"/api/v2/users/16096734/preferences","class":"user_preference"},"searches":{"href":"/api/v2/users/16096734/searches","class":"search"}}},{"name":"Dan
53
+ Stern","public_name":"Dan","email":"dan@desk.com","level":"siteadmin","_links":{"self":{"href":"/api/v2/users/16107036","class":"user"},"preferences":{"href":"/api/v2/users/16107036/preferences","class":"user_preference"},"searches":{"href":"/api/v2/users/16107036/searches","class":"search"}}},{"name":"Mark","public_name":"Mark","email":"mchasse_old@desk.com","level":"siteadmin_billing","_links":{"self":{"href":"/api/v2/users/17069383","class":"user"},"preferences":{"href":"/api/v2/users/17069383/preferences","class":"user_preference"},"searches":{"href":"/api/v2/users/17069383/searches","class":"search"}}},{"name":"Mich","public_name":"Mich","email":"mich@desk.com","level":"siteadmin_billing","_links":{"self":{"href":"/api/v2/users/17069397","class":"user"},"preferences":{"href":"/api/v2/users/17069397/preferences","class":"user_preference"},"searches":{"href":"/api/v2/users/17069397/searches","class":"search"}}},{"name":"Keith","public_name":"Keith","email":"keith@desk.com","level":"agent","_links":{"self":{"href":"/api/v2/users/17250751","class":"user"},"preferences":{"href":"/api/v2/users/17250751/preferences","class":"user_preference"},"searches":{"href":"/api/v2/users/17250751/searches","class":"search"}}}]}}'
54
+ http_version:
55
+ recorded_at: Thu, 15 Aug 2013 21:20:33 GMT
56
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,118 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/topics
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.0
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, 15 Aug 2013 21:20:33 GMT
27
+ ETag:
28
+ - '"6922ce66ea15c1c84d14c5f99cbabbeb"'
29
+ Status:
30
+ - 200 OK
31
+ Vary:
32
+ - X-AppVersion
33
+ X-AppVersion:
34
+ - '7.9'
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ X-Rate-Limit-Limit:
38
+ - '60'
39
+ X-Rate-Limit-Remaining:
40
+ - '44'
41
+ X-Rate-Limit-Reset:
42
+ - '27'
43
+ X-Request-Id:
44
+ - c360419287f3889dc0d45ac2287676cf
45
+ Content-Length:
46
+ - '2320'
47
+ Connection:
48
+ - keep-alive
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"total_entries":5,"_links":{"self":{"href":"/api/v2/topics?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/topics?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/topics?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"name":"Testing
52
+ English","description":"Some new description","position":1,"allow_questions":true,"in_support_center":true,"created_at":"2013-04-22T23:46:42Z","updated_at":"2013-08-15T21:20:32Z","_links":{"self":{"href":"/api/v2/topics/498301","class":"topic"},"articles":{"href":"/api/v2/topics/498301/articles","class":"article"},"translations":{"href":"/api/v2/topics/498301/translations","class":"topic_translation"}}},{"name":"My
53
+ new topic","description":null,"position":2,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-14T19:34:34Z","updated_at":"2013-08-14T19:34:34Z","_links":{"self":{"href":"/api/v2/topics/556401","class":"topic"},"articles":{"href":"/api/v2/topics/556401/articles","class":"article"},"translations":{"href":"/api/v2/topics/556401/translations","class":"topic_translation"}}},{"name":"My
54
+ new topic","description":null,"position":3,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-14T19:37:08Z","updated_at":"2013-08-14T19:37:08Z","_links":{"self":{"href":"/api/v2/topics/556402","class":"topic"},"articles":{"href":"/api/v2/topics/556402/articles","class":"article"},"translations":{"href":"/api/v2/topics/556402/translations","class":"topic_translation"}}},{"name":"Test
55
+ Topic","description":null,"position":4,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-15T21:20:31Z","updated_at":"2013-08-15T21:20:31Z","_links":{"self":{"href":"/api/v2/topics/556907","class":"topic"},"articles":{"href":"/api/v2/topics/556907/articles","class":"article"},"translations":{"href":"/api/v2/topics/556907/translations","class":"topic_translation"}}},{"name":"My
56
+ new topic","description":null,"position":5,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-15T21:20:32Z","updated_at":"2013-08-15T21:20:32Z","_links":{"self":{"href":"/api/v2/topics/556908","class":"topic"},"articles":{"href":"/api/v2/topics/556908/articles","class":"article"},"translations":{"href":"/api/v2/topics/556908/translations","class":"topic_translation"}}}]}}'
57
+ http_version:
58
+ recorded_at: Thu, 15 Aug 2013 21:20:33 GMT
59
+ - request:
60
+ method: patch
61
+ uri: https://devel.desk.com/api/v2/topics/498301
62
+ body:
63
+ encoding: UTF-8
64
+ string: '{"name":"Updated topic name"}'
65
+ headers:
66
+ Accept:
67
+ - application/json
68
+ User-Agent:
69
+ - desk.com Ruby Gem v0.1.0
70
+ Content-Type:
71
+ - application/json
72
+ response:
73
+ status:
74
+ code: 200
75
+ message:
76
+ headers:
77
+ Cache-Control:
78
+ - max-age=0, private, must-revalidate
79
+ Content-Type:
80
+ - application/json; charset=utf-8
81
+ Date:
82
+ - Thu, 15 Aug 2013 21:20:33 GMT
83
+ ETag:
84
+ - '"412b99f3cb6900be38fc168929cb5edb"'
85
+ Server:
86
+ - nginx
87
+ Status:
88
+ - 200 OK
89
+ Vary:
90
+ - X-AppVersion
91
+ X-AppVersion:
92
+ - '7.9'
93
+ X-Frame-Options:
94
+ - SAMEORIGIN
95
+ X-Rack-Cache:
96
+ - invalidate, pass
97
+ X-Rate-Limit-Limit:
98
+ - '60'
99
+ X-Rate-Limit-Remaining:
100
+ - '43'
101
+ X-Rate-Limit-Reset:
102
+ - '27'
103
+ X-Request-Id:
104
+ - bfe9319239f06f1225c6db3ca6e78453
105
+ X-Runtime:
106
+ - '0.078318'
107
+ X-UA-Compatible:
108
+ - IE=Edge,chrome=1
109
+ Content-Length:
110
+ - '426'
111
+ Connection:
112
+ - keep-alive
113
+ body:
114
+ encoding: UTF-8
115
+ string: '{"name":"Updated topic name","description":"Some new description","position":1,"allow_questions":true,"in_support_center":true,"created_at":"2013-04-22T23:46:42Z","updated_at":"2013-08-15T21:20:32Z","_links":{"self":{"href":"/api/v2/topics/498301","class":"topic"},"articles":{"href":"/api/v2/topics/498301/articles","class":"article"},"translations":{"href":"/api/v2/topics/498301/translations","class":"topic_translation"}}}'
116
+ http_version:
117
+ recorded_at: Thu, 15 Aug 2013 21:20:33 GMT
118
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://devel.desk.com/api/v2/cases/3065
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - desk.com Ruby Gem v0.1.0
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, 15 Aug 2013 21:20:35 GMT
27
+ ETag:
28
+ - '"cbba64bc7fe9b35611cc745f75671fb6"'
29
+ Status:
30
+ - 200 OK
31
+ Vary:
32
+ - X-AppVersion
33
+ X-AppVersion:
34
+ - '7.9'
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ X-Rate-Limit-Limit:
38
+ - '60'
39
+ X-Rate-Limit-Remaining:
40
+ - '36'
41
+ X-Rate-Limit-Reset:
42
+ - '25'
43
+ X-Request-Id:
44
+ - c5ed3aaf3d64441ba14a1c51ad44af03
45
+ Content-Length:
46
+ - '897'
47
+ Connection:
48
+ - keep-alive
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"external_id":null,"subject":"Testing 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-05-13T18:13:39Z","received_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},"_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"}}}'
52
+ http_version:
53
+ recorded_at: Thu, 15 Aug 2013 21:20:35 GMT
54
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,113 @@
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.0
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, 15 Aug 2013 21:20:35 GMT
27
+ ETag:
28
+ - '"9be8043641e7da379826d5480c34a491"'
29
+ Status:
30
+ - 200 OK
31
+ Vary:
32
+ - X-AppVersion
33
+ X-AppVersion:
34
+ - '7.9'
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ X-Rate-Limit-Limit:
38
+ - '60'
39
+ X-Rate-Limit-Remaining:
40
+ - '37'
41
+ X-Rate-Limit-Reset:
42
+ - '26'
43
+ X-Request-Id:
44
+ - c2addd2e1c28244528a5aca0ca1e2998
45
+ Content-Length:
46
+ - '48478'
47
+ Connection:
48
+ - keep-alive
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"total_entries":319,"_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=7&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-08-05T18:21:38Z","created_at":"2013-05-09T17:02:16Z","updated_at":"2013-08-05T18:48:38Z","received_at":"2013-05-09T17:02:16Z","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"},"_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":null,"assigned_group":null,"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,"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},"_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,"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"},"_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-05-10T19:08:10Z","received_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},"_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-05-10T20:20:19Z","received_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},"_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-05-10T22:01:25Z","received_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},"_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-05-10T22:11:43Z","received_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},"_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,"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"},"_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-05-10T22:25:19Z","received_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},"_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","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"},"_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-05-11T01:39:46Z","received_at":"2013-05-11T00:03:08Z","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},"_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-05-16T18:12:22Z","received_at":"2013-05-11T00:05:00Z","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},"_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-05-11T00:49:57Z","received_at":"2013-05-11T00:49:57Z","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},"_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-05-11T01:23:54Z","received_at":"2013-05-11T01:23:54Z","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},"_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-05-11T01:41:05Z","received_at":"2013-05-11T01:41:05Z","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},"_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-05-11T02:14:39Z","received_at":"2013-05-11T02:14:38Z","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},"_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-05-11T02:25:48Z","received_at":"2013-05-11T02:25:48Z","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},"_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-05-11T08:16:41Z","received_at":"2013-05-11T08:16:41Z","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},"_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-05-11T09:45:50Z","received_at":"2013-05-11T09:45:50Z","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},"_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-05-11T10:06:36Z","received_at":"2013-05-11T10:06:36Z","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},"_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-05-13T16:49:34Z","received_at":"2013-05-11T11:07:46Z","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},"_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","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},"_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-05-11T12:53:10Z","received_at":"2013-05-11T12:53:09Z","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},"_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-05-11T13:09:43Z","received_at":"2013-05-11T13:09: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},"_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-05-11T13:09:44Z","received_at":"2013-05-11T13:09:44Z","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},"_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-05-11T13:58:58Z","received_at":"2013-05-11T13:58:58Z","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},"_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-05-11T15:04:49Z","received_at":"2013-05-11T15:04:49Z","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},"_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-05-11T15:04:50Z","received_at":"2013-05-11T15:04:50Z","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},"_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-05-11T15:11:06Z","received_at":"2013-05-11T15:11:06Z","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},"_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-05-11T15:17:19Z","received_at":"2013-05-11T15:17:19Z","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},"_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-05-11T16:49:22Z","received_at":"2013-05-11T16:49:22Z","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},"_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-05-11T17:00:32Z","received_at":"2013-05-11T17:00:32Z","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},"_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-05-11T20:02:15Z","received_at":"2013-05-11T20:02:14Z","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},"_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-05-11T22:35:58Z","received_at":"2013-05-11T22:35:58Z","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},"_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-05-11T23:16:25Z","received_at":"2013-05-11T23:16:25Z","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},"_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-05-11T23:41:09Z","received_at":"2013-05-11T23:41:09Z","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},"_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-05-12T00:01:51Z","received_at":"2013-05-12T00:01:51Z","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},"_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-05-12T00:50:58Z","received_at":"2013-05-12T00:50:58Z","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},"_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-05-12T03:26:01Z","received_at":"2013-05-12T03:26:01Z","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},"_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-05-12T08:05:01Z","received_at":"2013-05-12T08:05:01Z","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},"_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-05-12T08:30:23Z","received_at":"2013-05-12T08:30:23Z","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},"_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-05-12T11:54:57Z","received_at":"2013-05-12T11:54:57Z","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},"_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-05-12T13:01:00Z","received_at":"2013-05-12T13:01:00Z","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},"_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-05-12T13:14:24Z","received_at":"2013-05-12T13:14:24Z","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},"_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-05-12T13:14:25Z","received_at":"2013-05-12T13:14:25Z","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},"_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-05-12T14:02:16Z","received_at":"2013-05-12T14:02:16Z","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},"_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-05-12T15:03:22Z","received_at":"2013-05-12T15:03:22Z","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},"_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-05-12T15:10:11Z","received_at":"2013-05-12T15:10:11Z","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},"_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-05-13T18:12:07Z","received_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},"_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-05-13T18:13:39Z","received_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},"_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, 15 Aug 2013 21:20:35 GMT
113
+ recorded_with: VCR 2.5.0