desk_api 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +27 -0
  3. data/README.md +97 -61
  4. data/lib/desk.rb +29 -1
  5. data/lib/desk_api.rb +57 -5
  6. data/lib/desk_api/client.rb +104 -47
  7. data/lib/desk_api/configuration.rb +201 -108
  8. data/lib/desk_api/default.rb +109 -52
  9. data/lib/desk_api/error.rb +90 -40
  10. data/lib/desk_api/error/bad_gateway.rb +29 -1
  11. data/lib/desk_api/error/bad_request.rb +29 -1
  12. data/lib/desk_api/error/client_error.rb +31 -2
  13. data/lib/desk_api/error/configuration_error.rb +29 -1
  14. data/lib/desk_api/error/conflict.rb +29 -1
  15. data/lib/desk_api/error/follow_redirect_error.rb +42 -0
  16. data/lib/desk_api/error/forbidden.rb +29 -1
  17. data/lib/desk_api/error/gateway_timeout.rb +29 -1
  18. data/lib/desk_api/error/internal_server_error.rb +29 -1
  19. data/lib/desk_api/error/method_not_allowed.rb +29 -1
  20. data/lib/desk_api/error/not_acceptable.rb +29 -1
  21. data/lib/desk_api/error/not_found.rb +29 -1
  22. data/lib/desk_api/error/parser_error.rb +29 -1
  23. data/lib/desk_api/error/server_error.rb +29 -1
  24. data/lib/desk_api/error/service_unavailable.rb +29 -1
  25. data/lib/desk_api/error/too_many_requests.rb +29 -1
  26. data/lib/desk_api/error/unauthorized.rb +29 -1
  27. data/lib/desk_api/error/unprocessable_entity.rb +29 -1
  28. data/lib/desk_api/error/unsupported_media_type.rb +29 -1
  29. data/lib/desk_api/rate_limit.rb +63 -21
  30. data/lib/desk_api/request/encode_json.rb +49 -7
  31. data/lib/desk_api/request/oauth.rb +62 -14
  32. data/lib/desk_api/request/retry.rb +108 -34
  33. data/lib/desk_api/resource.rb +402 -192
  34. data/lib/desk_api/response/follow_redirects.rb +99 -0
  35. data/lib/desk_api/response/parse_dates.rb +63 -21
  36. data/lib/desk_api/response/parse_json.rb +47 -5
  37. data/lib/desk_api/response/raise_error.rb +51 -10
  38. data/lib/desk_api/version.rb +30 -2
  39. data/spec/cassettes/DeskApi_Resource/_update/can_handle_action_params.yml +110 -104
  40. data/spec/cassettes/DeskApi_Resource/_update/can_handle_links.yml +426 -0
  41. data/spec/desk_api/client_spec.rb +28 -0
  42. data/spec/desk_api/configuration_spec.rb +28 -0
  43. data/spec/desk_api/default_spec.rb +28 -0
  44. data/spec/desk_api/error_spec.rb +29 -1
  45. data/spec/desk_api/rate_limit_spec.rb +28 -0
  46. data/spec/desk_api/request/encode_json_spec.rb +28 -0
  47. data/spec/desk_api/request/oauth_spec.rb +28 -0
  48. data/spec/desk_api/request/retry_spec.rb +29 -1
  49. data/spec/desk_api/resource_spec.rb +49 -12
  50. data/spec/desk_api/response/follow_redirects_spec.rb +95 -0
  51. data/spec/desk_api/response/parse_dates_spec.rb +28 -0
  52. data/spec/desk_api/response/parse_json_spec.rb +56 -9
  53. data/spec/desk_api/response/raise_error_spec.rb +28 -0
  54. data/spec/desk_api_spec.rb +28 -0
  55. data/spec/spec_helper.rb +28 -0
  56. metadata +84 -24
  57. data/LICENSE +0 -7
@@ -0,0 +1,99 @@
1
+ # Copyright (c) 2013-2014, Salesforce.com, Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without modification,
5
+ # are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright notice, this
8
+ # list of conditions and the following disclaimer.
9
+ #
10
+ # * Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # * Neither the name of Salesforce.com nor the names of its contributors may be
15
+ # used to endorse or promote products derived from this software without
16
+ # specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+
29
+ require 'desk_api/error/follow_redirect_error'
30
+
31
+ module DeskApi
32
+ module Response
33
+ # The {DeskApi::Response::FollowRedirects} middleware
34
+ # follows redirects automatically
35
+ #
36
+ # @author Thomas Stachl <tstachl@salesforce.com>
37
+ # @copyright Copyright (c) 2013-2014 Salesforce.com
38
+ # @license BSD 3-Clause License
39
+ class FollowRedirects < Faraday::Response::Middleware
40
+ dependency 'uri'
41
+
42
+ # Status codes we need to redirect
43
+ REDIRECT_HTTP_CODES = Set.new [301, 302, 303, 307]
44
+ # Redirection limit
45
+ MAX_REDIRECT_LIMIT = 3
46
+
47
+ # Wrapps the call to have a limit countdown
48
+ def call(env)
49
+ perform env, MAX_REDIRECT_LIMIT
50
+ end
51
+
52
+ private
53
+
54
+ # Performs the call and checks and performs a redirect
55
+ # if the status is one in 301, 302, 303 or 307
56
+ #
57
+ # @param env [Hash]
58
+ # @param limit [Integer]
59
+ # @raise DeskApi::Error::FollowRedirectError
60
+ # @return [Faraday::Response]
61
+ def perform(env, limit)
62
+ body = env[:body]
63
+ response = @app.call(env)
64
+
65
+ response.on_complete do |env|
66
+ if REDIRECT_HTTP_CODES.include? response.status
67
+ raise ::DeskApi::Error::FollowRedirectError, response if limit.zero?
68
+ env = reset_env(env, body, response)
69
+ response = perform(env, limit - 1)
70
+ end
71
+ end
72
+
73
+ response
74
+ end
75
+
76
+ # Changes the environment based on the response, eg.
77
+ # it sets the new url, resets the body, ...
78
+ #
79
+ # @param env [Hash]
80
+ # @param body [String]
81
+ # @param response [Faraday::Response]
82
+ # @return [Hash]
83
+ def reset_env(env, body, response)
84
+ env.tap do |env|
85
+ location = ::URI.parse response['location']
86
+
87
+ # ugly hack so attachments will work
88
+ if location.host != env[:url].host
89
+ env[:request_headers] = {}
90
+ end
91
+
92
+ env[:url] = location
93
+ env[:body] = body
94
+ %w(status response response_headers).each{ |k| env.delete k }
95
+ end
96
+ end
97
+ end
98
+ end
99
+ end
@@ -1,27 +1,69 @@
1
- module DeskApi::Response
2
- class ParseDates < Faraday::Response::Middleware
3
- dependency 'time'
4
-
5
- def on_complete(env)
6
- env[:body] = parse_dates env[:body]
7
- end
1
+ # Copyright (c) 2013-2014, Salesforce.com, Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without modification,
5
+ # are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright notice, this
8
+ # list of conditions and the following disclaimer.
9
+ #
10
+ # * Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # * Neither the name of Salesforce.com nor the names of its contributors may be
15
+ # used to endorse or promote products derived from this software without
16
+ # specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8
28
 
9
- private
29
+ module DeskApi
30
+ module Response
31
+ # The {DeskApi::Response::ParseDates} middleware
32
+ # parses strings to dates if they look like ISO8601
33
+ #
34
+ # @author Thomas Stachl <tstachl@salesforce.com>
35
+ # @copyright Copyright (c) 2013-2014 Salesforce.com
36
+ # @license BSD 3-Clause License
37
+ class ParseDates < Faraday::Response::Middleware
38
+ dependency 'time'
10
39
 
11
- def parse_dates(value)
12
- case value
13
- when Hash
14
- value.each_pair do |key, element|
15
- value[key] = parse_dates element
16
- end
17
- when Array
18
- value.each_with_index do |element, index|
19
- value[index] = parse_dates element
40
+ # Calls the `parse_dates` method on the body
41
+ def on_complete(env)
42
+ env[:body] = parse_dates env[:body]
43
+ end
44
+
45
+ private
46
+
47
+ # Checks the value and calls it self for Hash/Array,
48
+ # parses strings that look like ISO8601 or
49
+ # returns the value
50
+ #
51
+ # @return [Mixed]
52
+ def parse_dates(value)
53
+ case value
54
+ when Hash
55
+ value.each_pair do |key, element|
56
+ value[key] = parse_dates element
57
+ end
58
+ when Array
59
+ value.each_with_index do |element, index|
60
+ value[index] = parse_dates element
61
+ end
62
+ when /\A\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?Z\Z/m
63
+ Time.parse value
64
+ else
65
+ value
20
66
  end
21
- when /\A\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?Z\Z/m
22
- Time.parse value
23
- else
24
- value
25
67
  end
26
68
  end
27
69
  end
@@ -1,9 +1,51 @@
1
- module DeskApi::Response
2
- class ParseJson < Faraday::Response::Middleware
3
- dependency 'json'
1
+ # Copyright (c) 2013-2014, Salesforce.com, Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without modification,
5
+ # are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright notice, this
8
+ # list of conditions and the following disclaimer.
9
+ #
10
+ # * Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # * Neither the name of Salesforce.com nor the names of its contributors may be
15
+ # used to endorse or promote products derived from this software without
16
+ # specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4
28
 
5
- def on_complete(env)
6
- env[:body] = ::JSON.parse env[:body] unless env[:body].strip.empty?
29
+ module DeskApi
30
+ module Response
31
+ # The {DeskApi::Response::ParseJson} middleware
32
+ # parses the json response body
33
+ #
34
+ # @author Thomas Stachl <tstachl@salesforce.com>
35
+ # @copyright Copyright (c) 2013-2014 Salesforce.com
36
+ # @license BSD 3-Clause License
37
+ class ParseJson < Faraday::Response::Middleware
38
+ dependency 'json'
39
+
40
+ # Parses the response only if the content type is set and
41
+ # includes application/json
42
+ def on_complete(env)
43
+ content_type = env[:response_headers]['content-type']
44
+ if content_type && content_type.include?('application/json') \
45
+ && !env[:body].strip.empty?
46
+ env[:body] = ::JSON.parse(env[:body])
47
+ end
48
+ end
7
49
  end
8
50
  end
9
51
  end
@@ -1,3 +1,31 @@
1
+ # Copyright (c) 2013-2014, Salesforce.com, Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without modification,
5
+ # are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright notice, this
8
+ # list of conditions and the following disclaimer.
9
+ #
10
+ # * Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # * Neither the name of Salesforce.com nor the names of its contributors may be
15
+ # used to endorse or promote products derived from this software without
16
+ # specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+
1
29
  require 'desk_api/error/bad_gateway'
2
30
  require 'desk_api/error/bad_request'
3
31
  require 'desk_api/error/conflict'
@@ -13,17 +41,30 @@ require 'desk_api/error/unauthorized'
13
41
  require 'desk_api/error/unprocessable_entity'
14
42
  require 'desk_api/error/unsupported_media_type'
15
43
 
16
- module DeskApi::Response
17
- class RaiseError < Faraday::Response::Middleware
18
- def on_complete(env)
19
- status_code = env[:status].to_i
20
- error_class = @klass.errors[status_code]
21
- raise error_class.from_response(env) if error_class
22
- end
44
+ module DeskApi
45
+ module Response
46
+ # The {DeskApi::Response::RaiseError} middleware
47
+ # raises errors that happen during the API request
48
+ #
49
+ # @author Thomas Stachl <tstachl@salesforce.com>
50
+ # @copyright Copyright (c) 2013-2014 Salesforce.com
51
+ # @license BSD 3-Clause License
52
+ class RaiseError < Faraday::Response::Middleware
53
+ # Checks the status code and raises the error if there
54
+ # is a error class found for the status code
55
+ #
56
+ # @raise [DeskApi::Error]
57
+ def on_complete(env)
58
+ status_code = env[:status].to_i
59
+ error_class = @klass.errors[status_code]
60
+ raise error_class.from_response(env) if error_class
61
+ end
23
62
 
24
- def initialize(app, klass)
25
- @klass = klass
26
- super(app)
63
+ # Initializes this middleware with the specific class.
64
+ def initialize(app, klass)
65
+ @klass = klass
66
+ super(app)
67
+ end
27
68
  end
28
69
  end
29
70
  end
@@ -1,3 +1,31 @@
1
+ # Copyright (c) 2013-2014, Salesforce.com, Inc.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without modification,
5
+ # are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright notice, this
8
+ # list of conditions and the following disclaimer.
9
+ #
10
+ # * Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # * Neither the name of Salesforce.com nor the names of its contributors may be
15
+ # used to endorse or promote products derived from this software without
16
+ # specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+
1
29
  module DeskApi
2
- VERSION = '0.6.0'
3
- end
30
+ VERSION = '0.6.1'
31
+ end
@@ -10,7 +10,9 @@ http_interactions:
10
10
  Accept:
11
11
  - application/json
12
12
  User-Agent:
13
- - desk.com Ruby Gem v0.5.8
13
+ - desk.com Ruby Gem v0.6.0
14
+ Content-Type:
15
+ - application/json
14
16
  response:
15
17
  status:
16
18
  code: 200
@@ -23,9 +25,9 @@ http_interactions:
23
25
  content-type:
24
26
  - application/json; charset=utf-8
25
27
  date:
26
- - Mon, 19 May 2014 19:48:03 GMT
28
+ - Wed, 09 Jul 2014 21:44:59 GMT
27
29
  etag:
28
- - '"dbee08ece56e51af3cbe02921925cdf4"'
30
+ - '"1bf1e999e704aad42e42f8a85b25d865"'
29
31
  status:
30
32
  - 200 OK
31
33
  vary:
@@ -35,173 +37,173 @@ http_interactions:
35
37
  x-frame-options:
36
38
  - SAMEORIGIN
37
39
  x-rate-limit-limit:
38
- - '180'
40
+ - '240'
39
41
  x-rate-limit-remaining:
40
- - '179'
42
+ - '239'
41
43
  x-rate-limit-reset:
42
- - '57'
44
+ - '1'
43
45
  x-request-id:
44
- - 39546dfc37265e9a57c9142d2b21155a
46
+ - fa9406983c667fda093ac7e83f776253
45
47
  content-length:
46
- - '85011'
48
+ - '86781'
47
49
  connection:
48
50
  - Close
49
51
  body:
50
52
  encoding: UTF-8
51
- string: '{"total_entries":386,"page":1,"_links":{"self":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases?page=8&per_page=50","class":"page"},"previous":null,"next":{"href":"/api/v2/cases?page=2&per_page=50","class":"page"}},"_embedded":{"entries":[{"id":3012,"external_id":null,"blurb":null,"subject":"Re:
52
- ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["ignore","spam"],"label_ids":[1431474,1431473],"language":"en","active_at":"2014-05-19T19:47:48Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-05-19T19:47:54Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
53
- 1","follow_up":null,"dependent":"Support::Testing"},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3012/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3012/history","class":"history"},"case_links":{"href":"/api/v2/cases/3012/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3012/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3012/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3012/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment","count":0}}},{"id":3013,"external_id":null,"blurb":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-10T18:28:14Z","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":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
54
- 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3013","class":"case"},"message":{"href":"/api/v2/cases/3013/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3013/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3013/history","class":"history"},"case_links":{"href":"/api/v2/cases/3013/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3013/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3013/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3013/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment","count":0}}},{"id":3014,"external_id":"","blurb":null,"subject":"Testing
53
+ string: '{"total_entries":388,"page":1,"_links":{"self":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases?page=8&per_page=50","class":"page"},"previous":null,"next":{"href":"/api/v2/cases?page=2&per_page=50","class":"page"}},"_embedded":{"entries":[{"id":3012,"external_id":null,"blurb":null,"subject":"Re:
54
+ ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2014-07-09T21:44:16Z","changed_at":"2014-07-09T21:44:32Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-07-09T21:44:57Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
55
+ 1","follow_up":null,"dependent":"Support::Testing"},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3012/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3012/history","class":"history"},"case_links":{"href":"/api/v2/cases/3012/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3012/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3012/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3012/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment","count":0}}},{"id":3013,"external_id":null,"blurb":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-10T18:28:14Z","changed_at":"2013-05-10T18:28:11Z","created_at":"2013-05-09T21:50:06Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":"2013-05-09T21:50:07Z","opened_at":"2013-05-09T21:50:07Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
56
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3013","class":"case"},"message":{"href":"/api/v2/cases/3013/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3013/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3013/history","class":"history"},"case_links":{"href":"/api/v2/cases/3013/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3013/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3013/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3013/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment","count":0}}},{"id":3014,"external_id":"","blurb":null,"subject":"Testing
55
57
  Quick Case","priority":8,"locked_until":null,"description":"Some additional
56
- Description regarding this email.","status":"resolved","type":"email","labels":[],"label_ids":[],"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3014/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3014/history","class":"history"},"case_links":{"href":"/api/v2/cases/3014/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3014/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3014/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3014/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment","count":0}}},{"id":3015,"external_id":null,"blurb":null,"subject":"Testing
58
+ Description regarding this email.","status":"resolved","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T19:08:27Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T19:08:10Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":"2013-05-10T19:08:10Z","resolved_at":"2013-05-10T19:08:10Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3014","class":"case"},"message":{"href":"/api/v2/cases/3014/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3014/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3014/history","class":"history"},"case_links":{"href":"/api/v2/cases/3014/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3014/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3014/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3014/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment","count":0}}},{"id":3015,"external_id":null,"blurb":null,"subject":"Testing
57
59
  the Quick Case","priority":9,"locked_until":null,"description":"Additional
58
- description.","status":"open","type":"email","labels":[],"label_ids":[],"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3015/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3015/history","class":"history"},"case_links":{"href":"/api/v2/cases/3015/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3015/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3015/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3015/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment","count":0}}},{"id":3016,"external_id":null,"blurb":null,"subject":"Testing
59
- Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"label_ids":[],"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3016/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3016/history","class":"history"},"case_links":{"href":"/api/v2/cases/3016/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3016/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3016/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3016/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment","count":0}}},{"id":3017,"external_id":null,"blurb":null,"subject":"Testing
60
- Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"label_ids":[],"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3017/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3017/history","class":"history"},"case_links":{"href":"/api/v2/cases/3017/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3017/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3017/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3017/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment","count":0}}},{"id":3018,"external_id":null,"blurb":null,"subject":"Quick
61
- Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"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":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
62
- 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3018","class":"case"},"message":{"href":"/api/v2/cases/3018/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3018/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3018/history","class":"history"},"case_links":{"href":"/api/v2/cases/3018/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3018/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3018/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3018/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment","count":0}}},{"id":3019,"external_id":null,"blurb":null,"subject":"Testing
63
- Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"label_ids":[],"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3019/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3019/history","class":"history"},"case_links":{"href":"/api/v2/cases/3019/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3019/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3019/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3019/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment","count":0}}},{"id":3021,"external_id":null,"blurb":"","subject":"Testing
64
- stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"label_ids":[],"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":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
60
+ description.","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T20:21:21Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T20:20:18Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3015","class":"case"},"message":{"href":"/api/v2/cases/3015/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3015/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3015/history","class":"history"},"case_links":{"href":"/api/v2/cases/3015/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3015/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3015/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3015/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment","count":0}}},{"id":3016,"external_id":null,"blurb":null,"subject":"Testing
61
+ Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T22:01:36Z","changed_at":"2013-09-10T21:34:34Z","created_at":"2013-05-10T22:01:25Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3016","class":"case"},"message":{"href":"/api/v2/cases/3016/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3016/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3016/history","class":"history"},"case_links":{"href":"/api/v2/cases/3016/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3016/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3016/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3016/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment","count":0}}},{"id":3017,"external_id":null,"blurb":null,"subject":"Testing
62
+ Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"label_ids":[],"language":null,"active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-10T22:11:43Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":"2013-05-10T22:11:43Z","resolved_at":"2013-05-10T22:11:43Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3017","class":"case"},"message":{"href":"/api/v2/cases/3017/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3017/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3017/history","class":"history"},"case_links":{"href":"/api/v2/cases/3017/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3017/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3017/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3017/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment","count":0}}},{"id":3018,"external_id":null,"blurb":null,"subject":"Quick
63
+ Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-16T01:10:29Z","changed_at":"2013-05-16T01:01:33Z","created_at":"2013-05-10T22:20:01Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
64
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3018","class":"case"},"message":{"href":"/api/v2/cases/3018/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3018/labels","class":"label"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3018/history","class":"history"},"case_links":{"href":"/api/v2/cases/3018/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3018/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3018/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3018/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment","count":0}}},{"id":3019,"external_id":null,"blurb":null,"subject":"Testing
65
+ Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-10T22:25:38Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-10T22:25:19Z","updated_at":"2014-04-14T19:40:51Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3019","class":"case"},"message":{"href":"/api/v2/cases/3019/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3019/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3019/history","class":"history"},"case_links":{"href":"/api/v2/cases/3019/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3019/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3019/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3019/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment","count":0}}},{"id":3021,"external_id":null,"blurb":"","subject":"Testing
66
+ stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-23T23:15:51Z","changed_at":"2013-05-15T00:17:23Z","created_at":"2013-05-10T23:02:08Z","updated_at":"2014-04-14T19:40:51Z","received_at":"2013-05-15T00:17:23Z","first_opened_at":null,"opened_at":"2013-05-15T00:17:23Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
65
67
  1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3021","class":"case"},"message":{"href":"/api/v2/cases/3021/message","class":"phone"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3021/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3021/history","class":"history"},"case_links":{"href":"/api/v2/cases/3021/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3021/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3021/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3021/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3021/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3021/attachments","class":"attachment","count":0}}},{"id":3022,"external_id":null,"blurb":"Hugs,
66
68
  wisdom, boundless affection\n\nThe moms in your life sure know how to deliver.
67
69
  \nWouldn''t it be awesome to deliver for them this Mother''s Day?\n\nHire
68
70
  a TaskRabbit to drop off flowers, chocolates, \ncupcakes, or anything else
69
- to the amazing moms in y","subject":"The moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-11T01:43:17Z","created_at":"2013-05-11T00:03:08Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:03:08Z","first_opened_at":"2013-05-11T01:39:46Z","opened_at":"2013-05-11T01:39:46Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3022","class":"case"},"message":{"href":"/api/v2/cases/3022/message","class":"email"},"customer":{"href":"/api/v2/customers/85614510","class":"customer"},"labels":{"href":"/api/v2/cases/3022/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3022/history","class":"history"},"case_links":{"href":"/api/v2/cases/3022/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3022/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3022/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3022/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment","count":0}}},{"id":3023,"external_id":null,"blurb":"","subject":"Thomas
70
- Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-16T18:12:22Z","created_at":"2013-05-11T00:05:00Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:05:00Z","first_opened_at":"2013-05-16T18:12:22Z","opened_at":"2013-05-16T18:12:22Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3023","class":"case"},"message":{"href":"/api/v2/cases/3023/message","class":"email"},"customer":{"href":"/api/v2/customers/85614731","class":"customer"},"labels":{"href":"/api/v2/cases/3023/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3023/history","class":"history"},"case_links":{"href":"/api/v2/cases/3023/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3023/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3023/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3023/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment","count":0}}},{"id":3024,"external_id":null,"blurb":"Please
71
+ to the amazing moms in y","subject":"The moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-11T01:43:17Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:03:08Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:03:08Z","first_opened_at":"2013-05-11T01:39:46Z","opened_at":"2013-05-11T01:39:46Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3022","class":"case"},"message":{"href":"/api/v2/cases/3022/message","class":"email"},"customer":{"href":"/api/v2/customers/85614510","class":"customer"},"labels":{"href":"/api/v2/cases/3022/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3022/history","class":"history"},"case_links":{"href":"/api/v2/cases/3022/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3022/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3022/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3022/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment","count":0}}},{"id":3023,"external_id":null,"blurb":"","subject":"Thomas
72
+ Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-16T18:12:22Z","changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:05:00Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:05:00Z","first_opened_at":"2013-05-16T18:12:22Z","opened_at":"2013-05-16T18:12:22Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3023","class":"case"},"message":{"href":"/api/v2/cases/3023/message","class":"email"},"customer":{"href":"/api/v2/customers/85614731","class":"customer"},"labels":{"href":"/api/v2/cases/3023/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3023/history","class":"history"},"case_links":{"href":"/api/v2/cases/3023/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3023/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3023/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3023/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment","count":0}}},{"id":3024,"external_id":null,"blurb":"Please
71
73
  use an HTML-capable email client to view this message.\n\n","subject":"[The
72
- Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T00:49:57Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:49:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3024","class":"case"},"message":{"href":"/api/v2/cases/3024/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3024/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3024/history","class":"history"},"case_links":{"href":"/api/v2/cases/3024/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3024/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3024/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3024/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment","count":0}}},{"id":3025,"external_id":null,"blurb":"MyFonts:
74
+ Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T00:49:57Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T00:49:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3024","class":"case"},"message":{"href":"/api/v2/cases/3024/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3024/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3024/history","class":"history"},"case_links":{"href":"/api/v2/cases/3024/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3024/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3024/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3024/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment","count":0}}},{"id":3025,"external_id":null,"blurb":"MyFonts:
73
75
  Rising Stars, May 2013\r\n\r\n - the MyFonts newsletter of popular new fonts
74
76
  (issue #110)\r\n\r\nIf the Best Seller lists on MyFonts are something of a
75
77
  barometer of trends\r\nin typography, then there are two main currents - and
76
- they are\r\ndiametricall","subject":"Rising Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T01:23:54Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T01:23:54Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3025","class":"case"},"message":{"href":"/api/v2/cases/3025/message","class":"email"},"customer":{"href":"/api/v2/customers/85623855","class":"customer"},"labels":{"href":"/api/v2/cases/3025/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3025/history","class":"history"},"case_links":{"href":"/api/v2/cases/3025/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3025/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3025/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3025/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment","count":0}}},{"id":3026,"external_id":null,"blurb":"iohojho","subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"label_ids":[],"language":"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/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3026/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3026/history","class":"history"},"case_links":{"href":"/api/v2/cases/3026/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3026/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3026/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3026/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment","count":0}}},{"id":3027,"external_id":null,"blurb":"Please
78
+ they are\r\ndiametricall","subject":"Rising Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:35Z","created_at":"2013-05-11T01:23:54Z","updated_at":"2013-09-10T21:34:35Z","received_at":"2013-05-11T01:23:54Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3025","class":"case"},"message":{"href":"/api/v2/cases/3025/message","class":"email"},"customer":{"href":"/api/v2/customers/85623855","class":"customer"},"labels":{"href":"/api/v2/cases/3025/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3025/history","class":"history"},"case_links":{"href":"/api/v2/cases/3025/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3025/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3025/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3025/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment","count":0}}},{"id":3026,"external_id":null,"blurb":"iohojho","subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"label_ids":[],"language":null,"active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T01:41:04Z","updated_at":"2014-04-14T19:40:51Z","received_at":"2013-05-11T01:41:05Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3026","class":"case"},"message":{"href":"/api/v2/cases/3026/message","class":"phone"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3026/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3026/history","class":"history"},"case_links":{"href":"/api/v2/cases/3026/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3026/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3026/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3026/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment","count":0}}},{"id":3027,"external_id":null,"blurb":"Please
77
79
  use an HTML-capable email client to view this message.\n\n","subject":"[The
78
- Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3027/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3027/history","class":"history"},"case_links":{"href":"/api/v2/cases/3027/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3027/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3027/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3027/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment","count":0}}},{"id":3028,"external_id":null,"blurb":"\r\n\r\nYour
80
+ Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T02:14:38Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T02:14:38Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3027","class":"case"},"message":{"href":"/api/v2/cases/3027/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3027/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3027/history","class":"history"},"case_links":{"href":"/api/v2/cases/3027/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3027/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3027/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3027/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment","count":0}}},{"id":3028,"external_id":null,"blurb":"\r\n\r\nYour
79
81
  Weekly Summary Friday, May 3, 2013 - Friday, May 10, 2013\r\n\r\n\r\nYour
80
82
  Accounts\r\n\r\n * PayPal - PayPal Account: $6,366.64\r\n * Wells Fargo
81
83
  - WELLS FARGO AT WORK(SM) CHECKING: $3,933.74\r\n * Lending Club - LendingClub: $1,002.32\r\n\r\nNet
82
- Wor","subject":"Your Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T02:25:47Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T02:25:48Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3028","class":"case"},"message":{"href":"/api/v2/cases/3028/message","class":"email"},"customer":{"href":"/api/v2/customers/85630608","class":"customer"},"labels":{"href":"/api/v2/cases/3028/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3028/history","class":"history"},"case_links":{"href":"/api/v2/cases/3028/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3028/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3028/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3028/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment","count":0}}},{"id":3029,"external_id":null,"blurb":"Wenn
84
+ Wor","subject":"Your Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T02:25:47Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T02:25:48Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3028","class":"case"},"message":{"href":"/api/v2/cases/3028/message","class":"email"},"customer":{"href":"/api/v2/customers/85630608","class":"customer"},"labels":{"href":"/api/v2/cases/3028/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3028/history","class":"history"},"case_links":{"href":"/api/v2/cases/3028/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3028/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3028/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3028/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment","count":0}}},{"id":3029,"external_id":null,"blurb":"Wenn
83
85
  dieser Newsletter nicht richtig angezeigt wird, klicken Sie bitte\nhier:\nhttp://news.eduscho.at/go/8/QNYVF67-QKP4RMR-Y429K1-JP532M.html\n**********************************************************************\n\nLiebe
84
86
  Eduscho.at Kundin, lieber Edusch","subject":"St\u00e4dtehighlights z.B. Hamburg
85
- mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3029/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3029/history","class":"history"},"case_links":{"href":"/api/v2/cases/3029/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3029/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3029/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3029/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment","count":0}}},{"id":3030,"external_id":null,"blurb":"Platform-as-a-Service\r\n Send
87
+ mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T08:16:41Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T08:16:41Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3029","class":"case"},"message":{"href":"/api/v2/cases/3029/message","class":"email"},"customer":{"href":"/api/v2/customers/85666173","class":"customer"},"labels":{"href":"/api/v2/cases/3029/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3029/history","class":"history"},"case_links":{"href":"/api/v2/cases/3029/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3029/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3029/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3029/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment","count":0}}},{"id":3030,"external_id":null,"blurb":"Platform-as-a-Service\r\n Send
86
88
  me an email for each new discussion &#187; http://www.linkedin.com/e/xz83s3-hgklyhay-6n/snp/728097/true/grp_email_subscribe_new_posts/?hs=false&tok=0r6kbcJ6z9ZRI1\r\n\r\n\r\n\r\n Manager''s
87
89
  Choice\r\n RingDNA releases mobile ","subject":"RingDNA releases mobile
88
- call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T09:45:50Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T09:45:50Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3030","class":"case"},"message":{"href":"/api/v2/cases/3030/message","class":"email"},"customer":{"href":"/api/v2/customers/85674329","class":"customer"},"labels":{"href":"/api/v2/cases/3030/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3030/history","class":"history"},"case_links":{"href":"/api/v2/cases/3030/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3030/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3030/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3030/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment","count":0}}},{"id":3031,"external_id":null,"blurb":"http://hoteltonight.com/\r\nhttp://www.facebook.com/HotelTonight\r\nhttp://twitter.com/HotelTonight\r\n\r\nAnnouncing
90
+ call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:36Z","created_at":"2013-05-11T09:45:50Z","updated_at":"2013-09-10T21:34:36Z","received_at":"2013-05-11T09:45:50Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3030","class":"case"},"message":{"href":"/api/v2/cases/3030/message","class":"email"},"customer":{"href":"/api/v2/customers/85674329","class":"customer"},"labels":{"href":"/api/v2/cases/3030/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3030/history","class":"history"},"case_links":{"href":"/api/v2/cases/3030/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3030/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3030/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3030/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment","count":0}}},{"id":3031,"external_id":null,"blurb":"http://hoteltonight.com/\r\nhttp://www.facebook.com/HotelTonight\r\nhttp://twitter.com/HotelTonight\r\n\r\nAnnouncing
89
91
  the latest & greatest from HT: Snap Your Stay\r\n\r\nIt''s been busy ''round
90
92
  here at HT HQ, per ushe! Not only are we now in 100+ destinations, 12","subject":"Get
91
- credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T10:06:36Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T10:06:36Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3031","class":"case"},"message":{"href":"/api/v2/cases/3031/message","class":"email"},"customer":{"href":"/api/v2/customers/85676376","class":"customer"},"labels":{"href":"/api/v2/cases/3031/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3031/history","class":"history"},"case_links":{"href":"/api/v2/cases/3031/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3031/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3031/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3031/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment","count":0}}},{"id":3032,"external_id":null,"blurb":"LinkedIn\r\n------------\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n Simone
93
+ credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T10:06:36Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T10:06:36Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3031","class":"case"},"message":{"href":"/api/v2/cases/3031/message","class":"email"},"customer":{"href":"/api/v2/customers/85676376","class":"customer"},"labels":{"href":"/api/v2/cases/3031/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3031/history","class":"history"},"case_links":{"href":"/api/v2/cases/3031/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3031/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3031/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3031/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment","count":0}}},{"id":3032,"external_id":null,"blurb":"LinkedIn\r\n------------\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n Simone
92
94
  Seri has indicated you are a Friend\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n------------------------------------------\r\n\r\nI''d
93
95
  like to add you to my professional network on LinkedIn","subject":"Thomas,
94
- stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-13T16:49:33Z","created_at":"2013-05-11T11:07:46Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T11:07:46Z","first_opened_at":"2013-05-13T16:49:34Z","opened_at":"2013-05-13T16:49:34Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3032","class":"case"},"message":{"href":"/api/v2/cases/3032/message","class":"email"},"customer":{"href":"/api/v2/customers/85682378","class":"customer"},"labels":{"href":"/api/v2/cases/3032/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3032/history","class":"history"},"case_links":{"href":"/api/v2/cases/3032/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3032/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3032/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3032/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment","count":0}}},{"id":3033,"external_id":null,"blurb":"MEINVERZEICHNIS \n \n \n\nmeinVZ
96
+ stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-05-13T16:49:33Z","changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T11:07:46Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T11:07:46Z","first_opened_at":"2013-05-13T16:49:34Z","opened_at":"2013-05-13T16:49:34Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3032","class":"case"},"message":{"href":"/api/v2/cases/3032/message","class":"email"},"customer":{"href":"/api/v2/customers/85682378","class":"customer"},"labels":{"href":"/api/v2/cases/3032/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3032/history","class":"history"},"case_links":{"href":"/api/v2/cases/3032/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3032/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3032/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3032/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment","count":0}}},{"id":3033,"external_id":null,"blurb":"MEINVERZEICHNIS \n \n \n\nmeinVZ
95
97
  (http://www.meinvz.net/Home/?cmpid=eml_PD_avz_default_top_logo)\n \t Hallo
96
98
  Thomas,\n bei Dir hat sich was getan! \n\n Irene (http://www.meinvz.net/?cmpid=eml_PD_avz_default_top_birthday_pic#Profile/U:@BGQnlFLGRhjE3qk","subject":"Neuigkeiten
97
- f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-08-07T19:22:19Z","created_at":"2013-05-11T11:15:29Z","updated_at":"2013-08-07T19:23:03Z","received_at":"2013-05-11T11:15:29Z","first_opened_at":"2013-08-07T19:22:19Z","opened_at":"2013-08-07T19:22:19Z","first_resolved_at":"2013-08-07T19:22:27Z","resolved_at":"2013-08-07T19:22:27Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3033","class":"case"},"message":{"href":"/api/v2/cases/3033/message","class":"email"},"customer":{"href":"/api/v2/customers/85682944","class":"customer"},"labels":{"href":"/api/v2/cases/3033/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3033/history","class":"history"},"case_links":{"href":"/api/v2/cases/3033/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3033/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3033/replies","class":"reply","count":2},"draft":{"href":"/api/v2/cases/3033/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment","count":0}}},{"id":3034,"external_id":null,"blurb":"Salesforce.com
99
+ f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"label_ids":[],"language":"en","active_at":"2013-08-07T19:22:19Z","changed_at":"2013-08-07T19:23:03Z","created_at":"2013-05-11T11:15:29Z","updated_at":"2013-08-07T19:23:03Z","received_at":"2013-05-11T11:15:29Z","first_opened_at":"2013-08-07T19:22:19Z","opened_at":"2013-08-07T19:22:19Z","first_resolved_at":"2013-08-07T19:22:27Z","resolved_at":"2013-08-07T19:22:27Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3033","class":"case"},"message":{"href":"/api/v2/cases/3033/message","class":"email"},"customer":{"href":"/api/v2/customers/85682944","class":"customer"},"labels":{"href":"/api/v2/cases/3033/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3033/history","class":"history"},"case_links":{"href":"/api/v2/cases/3033/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3033/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3033/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3033/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment","count":0}}},{"id":3034,"external_id":null,"blurb":"Salesforce.com
98
100
  Certified Professionals\n Today''s new discussions from Salesforce.com Certified
99
101
  Professionals group members. Change the frequency of this digest:\n http://www.linkedin.com/e/xz83s3-hgksl3xd-2h/ahs/151420/EMLt_anet_settings/?hs=false&t","subject":"How
100
102
  many Lead Status values do you have in your org? If recordtypes are used,
101
- answer with the average. Feel free to comment on what they are. Thanks.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T12:53:09Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T12:53:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3034","class":"case"},"message":{"href":"/api/v2/cases/3034/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3034/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3034/history","class":"history"},"case_links":{"href":"/api/v2/cases/3034/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3034/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3034/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3034/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment","count":0}}},{"id":3035,"external_id":null,"blurb":"your
103
+ answer with the average. Feel free to comment on what they are. Thanks.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T12:53:09Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T12:53:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3034","class":"case"},"message":{"href":"/api/v2/cases/3034/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3034/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3034/history","class":"history"},"case_links":{"href":"/api/v2/cases/3034/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3034/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3034/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3034/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment","count":0}}},{"id":3035,"external_id":null,"blurb":"your
102
104
  daily deal\r\n\r\nSAN FRANCISCO presented by LivingSocial\r\n\r\nGael Modern
103
105
  Health\r\n74% Off Body Vibration and Hydrocolonic Therapy\r\n\r\nPrice: $99\r\n\r\n\r\n\r\n1
104
106
  Deal Location:\r\n\r\n\r\n\r\n\r\nThe professional staff at Gael Modern Health
105
- will harness the power of cl","subject":"Hydrocolonic Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:09:43Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:43Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3035","class":"case"},"message":{"href":"/api/v2/cases/3035/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3035/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3035/history","class":"history"},"case_links":{"href":"/api/v2/cases/3035/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3035/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3035/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3035/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment","count":0}}},{"id":3036,"external_id":null,"blurb":"your
107
+ will harness the power of cl","subject":"Hydrocolonic Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:09:43Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:43Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3035","class":"case"},"message":{"href":"/api/v2/cases/3035/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3035/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3035/history","class":"history"},"case_links":{"href":"/api/v2/cases/3035/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3035/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3035/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3035/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment","count":0}}},{"id":3036,"external_id":null,"blurb":"your
106
108
  daily deal\r\n\r\nOAKLAND / EAST BAY presented by LivingSocial\r\n\r\nA Better
107
109
  Body\r\n94% Off 20 Boot Camp Classes\r\n\r\nPrice: $30\r\n\r\n\r\n\r\n1 Deal
108
110
  Location:\r\n\r\n\r\n\r\n\r\nThe folks at this Jack London Square fitness
109
- facility can help you go from good to better to","subject":"Boot Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:09:44Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:44Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3036","class":"case"},"message":{"href":"/api/v2/cases/3036/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3036/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3036/history","class":"history"},"case_links":{"href":"/api/v2/cases/3036/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3036/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3036/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3036/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment","count":0}}},{"id":3037,"external_id":null,"blurb":"Hojoki
111
+ facility can help you go from good to better to","subject":"Boot Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:09:44Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:09:44Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3036","class":"case"},"message":{"href":"/api/v2/cases/3036/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3036/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3036/history","class":"history"},"case_links":{"href":"/api/v2/cases/3036/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3036/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3036/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3036/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment","count":0}}},{"id":3037,"external_id":null,"blurb":"Hojoki
110
112
  Daily Catch-Up: Sat, 11 May 2013\r\n========================================\r\n\r\nHi
111
113
  Thomas,\r\n\r\nThis is what has happened over the past 24 hours:\r\n\r\n##
112
114
  My Apps\r\nhttps://my.hojoki.com/#/p7940813\r\n\r\n###### GitHub\r\n* fractastical/BlockAlertsAnd-Actio","subject":"Daily
113
- Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:58:58Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:58:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3037","class":"case"},"message":{"href":"/api/v2/cases/3037/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3037/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3037/history","class":"history"},"case_links":{"href":"/api/v2/cases/3037/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3037/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3037/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3037/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment","count":0}}},{"id":3038,"external_id":null,"blurb":"One
115
+ Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:37Z","created_at":"2013-05-11T13:58:58Z","updated_at":"2013-09-10T21:34:37Z","received_at":"2013-05-11T13:58:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3037","class":"case"},"message":{"href":"/api/v2/cases/3037/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3037/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3037/history","class":"history"},"case_links":{"href":"/api/v2/cases/3037/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3037/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3037/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3037/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment","count":0}}},{"id":3038,"external_id":null,"blurb":"One
114
116
  Kings Lane\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
115
117
  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r","subject":"Retro
116
118
  kitchenware, bird-themed tableware, floor lamps, rugs by designers we love,
117
- tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3038/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3038/history","class":"history"},"case_links":{"href":"/api/v2/cases/3038/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3038/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3038/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3038/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment","count":0}}},{"id":3039,"external_id":null,"blurb":"Your
119
+ tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:04:49Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:04:49Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3038","class":"case"},"message":{"href":"/api/v2/cases/3038/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"labels":{"href":"/api/v2/cases/3038/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3038/history","class":"history"},"case_links":{"href":"/api/v2/cases/3038/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3038/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3038/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3038/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment","count":0}}},{"id":3039,"external_id":null,"blurb":"Your
118
120
  Weekly Pinterest (http://email.pinterest.com/wf/click?upn=LneOtn3z4joCHC-2FVwrRO3-2BLhyOdLh-2FfZCZ0Fuqs3wR1fIcTjHYklUcZhEW4VF39pHwXT8inEa-2BWXehOtVoxuR8T0gZpQxliZs1gf7a-2BosVNKfyjxk1eTFOm5Xc5Oa-2BIVhPRngUI5tUJ6YGyIXqtML167SNyu5KPJhThynNpGQnAjzbs","subject":"Your
119
- Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3039/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3039/history","class":"history"},"case_links":{"href":"/api/v2/cases/3039/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3039/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3039/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3039/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment","count":0}}},{"id":3040,"external_id":null,"blurb":"Your
121
+ Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:04:50Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:04:50Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3039","class":"case"},"message":{"href":"/api/v2/cases/3039/message","class":"email"},"customer":{"href":"/api/v2/customers/85711509","class":"customer"},"labels":{"href":"/api/v2/cases/3039/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3039/history","class":"history"},"case_links":{"href":"/api/v2/cases/3039/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3039/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3039/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3039/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment","count":0}}},{"id":3040,"external_id":null,"blurb":"Your
120
122
  Daily San Francisco Groupon | Go to Groupon.com (http://www.groupon.com/san-francisco?utm_source=newsletter&utm_medium=email&sid=a75449fd-3508-4add-9e67-7c6dce2c728e&division=san-francisco&user=f07795573252fce82801526610d60eb812686886dfc07d0","subject":"Ferrari
121
- or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3040/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3040/history","class":"history"},"case_links":{"href":"/api/v2/cases/3040/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3040/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3040/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3040/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment","count":0}}},{"id":3041,"external_id":null,"blurb":"To
123
+ or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:11:06Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:11:06Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3040","class":"case"},"message":{"href":"/api/v2/cases/3040/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"labels":{"href":"/api/v2/cases/3040/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3040/history","class":"history"},"case_links":{"href":"/api/v2/cases/3040/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3040/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3040/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3040/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment","count":0}}},{"id":3041,"external_id":null,"blurb":"To
122
124
  All Our Valued Users,\n \n I''m proud to announce that we have changed our
123
125
  company name - Pageonce is now Check!\n \n I wanted to personally write and
124
126
  let you know about the exciting news. We continually strive to evolve and
125
127
  enhance our product to prov","subject":"Special Announcement: Pageonce is
126
- now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3041/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3041/history","class":"history"},"case_links":{"href":"/api/v2/cases/3041/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3041/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3041/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3041/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment","count":0}}},{"id":3042,"external_id":null,"blurb":"----------------\r\nJACKTHREADS.COM\r\n----------------\r\n\r\nON
128
+ now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T15:17:19Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T15:17:19Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3041","class":"case"},"message":{"href":"/api/v2/cases/3041/message","class":"email"},"customer":{"href":"/api/v2/customers/85712890","class":"customer"},"labels":{"href":"/api/v2/cases/3041/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3041/history","class":"history"},"case_links":{"href":"/api/v2/cases/3041/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3041/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3041/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3041/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment","count":0}}},{"id":3042,"external_id":null,"blurb":"----------------\r\nJACKTHREADS.COM\r\n----------------\r\n\r\nON
127
129
  SALE NOW\r\n\r\nNew Arrivals: Warm-Weather Gear, New Arrivals: Summer Shoes,\r\nNew
128
130
  Arrivals: Props for Your Pad, Beans & Bones Printed &\r\nLeather Ties, Most-Wanted
129
131
  Watches ft. Monument, Happy Socks","subject":"New Arrivals: Warm-Weather Gear,
130
132
  Props for Your Pad & More | Need It Now: Beans & Bones | Most-Wanted Watches
131
- | Graphic Hip-Hop Tees | Happy Socks Gift Boxes & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T16:49:22Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T16:49:22Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3042","class":"case"},"message":{"href":"/api/v2/cases/3042/message","class":"email"},"customer":{"href":"/api/v2/customers/85726596","class":"customer"},"labels":{"href":"/api/v2/cases/3042/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3042/history","class":"history"},"case_links":{"href":"/api/v2/cases/3042/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3042/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3042/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3042/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment","count":0}}},{"id":3043,"external_id":null,"blurb":"ETRADE
133
+ | Graphic Hip-Hop Tees | Happy Socks Gift Boxes & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T16:49:22Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T16:49:22Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3042","class":"case"},"message":{"href":"/api/v2/cases/3042/message","class":"email"},"customer":{"href":"/api/v2/customers/85726596","class":"customer"},"labels":{"href":"/api/v2/cases/3042/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3042/history","class":"history"},"case_links":{"href":"/api/v2/cases/3042/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3042/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3042/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3042/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment","count":0}}},{"id":3043,"external_id":null,"blurb":"ETRADE
132
134
  FINANCIAL (https://us.etrade.com/e/t/home) \nImportant Information \n \t\n\nMay
133
135
  10, 2013\tSecond Notice \n \n Dear Valued Investor, \n \n We have some important
134
136
  information about your account that requires your attention. Please call us
135
- at your earli","subject":"Important Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T17:00:32Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T17:00:32Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3043","class":"case"},"message":{"href":"/api/v2/cases/3043/message","class":"email"},"customer":{"href":"/api/v2/customers/85728040","class":"customer"},"labels":{"href":"/api/v2/cases/3043/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3043/history","class":"history"},"case_links":{"href":"/api/v2/cases/3043/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3043/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3043/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3043/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment","count":0}}},{"id":3047,"external_id":null,"blurb":"Hulu
137
+ at your earli","subject":"Important Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T17:00:32Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T17:00:32Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3043","class":"case"},"message":{"href":"/api/v2/cases/3043/message","class":"email"},"customer":{"href":"/api/v2/customers/85728040","class":"customer"},"labels":{"href":"/api/v2/cases/3043/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3043/history","class":"history"},"case_links":{"href":"/api/v2/cases/3043/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3043/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3043/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3043/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment","count":0}}},{"id":3047,"external_id":null,"blurb":"Hulu
136
138
  Plus\r\n\r\nTop 5: SNL''s Best Mom Moments\r\n\r\n\r\n1. The perfect way to
137
139
  show her how special she is\r\n\r\nHere''s a chance to give your mom a present
138
140
  she''ll never forget. Just make sure you knock before surprising her in the
139
141
  bedroom. (2 min.) \r\n\r\nhttp://cl","subject":"Mother''s Day love from Will
140
- Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T20:02:14Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T20:02:14Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3047","class":"case"},"message":{"href":"/api/v2/cases/3047/message","class":"email"},"customer":{"href":"/api/v2/customers/85752345","class":"customer"},"labels":{"href":"/api/v2/cases/3047/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3047/history","class":"history"},"case_links":{"href":"/api/v2/cases/3047/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3047/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3047/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3047/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment","count":0}}},{"id":3048,"external_id":null,"blurb":"Your
142
+ Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T20:02:14Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T20:02:14Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3047","class":"case"},"message":{"href":"/api/v2/cases/3047/message","class":"email"},"customer":{"href":"/api/v2/customers/85752345","class":"customer"},"labels":{"href":"/api/v2/cases/3047/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3047/history","class":"history"},"case_links":{"href":"/api/v2/cases/3047/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3047/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3047/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3047/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment","count":0}}},{"id":3048,"external_id":null,"blurb":"Your
141
143
  week in the cloud\r\n\r\nHello Thomas,\r\n\r\nThis is the weekly stats email
142
144
  sent by Hojoki to thomas@stachl.me. It contains lots of infographic stuff
143
145
  so it''s only available in html mode. Please open it with a modern email client.
144
- You can add more apps ","subject":"Your week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T22:35:58Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T22:35:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3048","class":"case"},"message":{"href":"/api/v2/cases/3048/message","class":"email"},"customer":{"href":"/api/v2/customers/85771500","class":"customer"},"labels":{"href":"/api/v2/cases/3048/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3048/history","class":"history"},"case_links":{"href":"/api/v2/cases/3048/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3048/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3048/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3048/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment","count":0}}},{"id":3049,"external_id":null,"blurb":"We''ve
146
+ You can add more apps ","subject":"Your week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T22:35:58Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T22:35:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3048","class":"case"},"message":{"href":"/api/v2/cases/3048/message","class":"email"},"customer":{"href":"/api/v2/customers/85771500","class":"customer"},"labels":{"href":"/api/v2/cases/3048/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3048/history","class":"history"},"case_links":{"href":"/api/v2/cases/3048/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3048/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3048/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3048/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment","count":0}}},{"id":3049,"external_id":null,"blurb":"We''ve
145
147
  updated your balance\r\nFor your security:\r\nDear Thomas Stachl,\r\nWe''ve
146
148
  updated the outstanding balance for your Corporate Card account.\r\nAs of
147
149
  Thu, May 09 at 10:04 AM ET\r\nOutstanding Balance:\r\n$19.64\r\n\u00a0\r\nView
148
150
  recent activity\r\nMake a payment\r\nUpda","subject":"Account Alert: Your
149
- Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3049/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3049/history","class":"history"},"case_links":{"href":"/api/v2/cases/3049/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3049/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3049/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3049/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment","count":0}}},{"id":3050,"external_id":null,"blurb":"========================================\nGo
151
+ Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:38Z","created_at":"2013-05-11T23:16:25Z","updated_at":"2013-09-10T21:34:38Z","received_at":"2013-05-11T23:16:25Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3049","class":"case"},"message":{"href":"/api/v2/cases/3049/message","class":"email"},"customer":{"href":"/api/v2/customers/85776070","class":"customer"},"labels":{"href":"/api/v2/cases/3049/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3049/history","class":"history"},"case_links":{"href":"/api/v2/cases/3049/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3049/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3049/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3049/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment","count":0}}},{"id":3050,"external_id":null,"blurb":"========================================\nGo
150
152
  to Facebook\nhttp://www.facebook.com/n/?index.php&mid=7f8d41fG41fcacecG0G1a&bcode=1.1368315633.AbnjIea3pYjf77Gs&n_m=thomas%40stachl.me\n\nPlan
151
153
  an Event\nhttp://www.facebook.com/n/?events%2Fcreate%2F&mid=7f8d41f","subject":"Bibi
152
- Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-11T23:41:09Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-11T23:41:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3050","class":"case"},"message":{"href":"/api/v2/cases/3050/message","class":"email"},"customer":{"href":"/api/v2/customers/85779426","class":"customer"},"labels":{"href":"/api/v2/cases/3050/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3050/history","class":"history"},"case_links":{"href":"/api/v2/cases/3050/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3050/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3050/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3050/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment","count":0}}},{"id":3051,"external_id":null,"blurb":"LinkedIn\n------------Group:
154
+ Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-11T23:41:09Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-11T23:41:09Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3050","class":"case"},"message":{"href":"/api/v2/cases/3050/message","class":"email"},"customer":{"href":"/api/v2/customers/85779426","class":"customer"},"labels":{"href":"/api/v2/cases/3050/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3050/history","class":"history"},"case_links":{"href":"/api/v2/cases/3050/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3050/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3050/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3050/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment","count":0}}},{"id":3051,"external_id":null,"blurb":"LinkedIn\n------------Group:
153
155
  LinkedPHPers - The Largest PHP Group\n\nSubject: LinkedPHPers Announcement
154
156
  - Posting JOBS and PROMOTIONS on the LinkedPHPers\n\nHello everyone,\n\nAs
155
157
  you probably know in this group we have quite strict rules regarding posting
156
158
  t","subject":"LinkedPHPers Announcement - Posting JOBS and PROMOTIONS on the
157
- LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3051/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3051/history","class":"history"},"case_links":{"href":"/api/v2/cases/3051/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3051/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3051/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3051/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment","count":0}}},{"id":3052,"external_id":null,"blurb":"Please
159
+ LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T00:01:51Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T00:01:51Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3051","class":"case"},"message":{"href":"/api/v2/cases/3051/message","class":"email"},"customer":{"href":"/api/v2/customers/85781990","class":"customer"},"labels":{"href":"/api/v2/cases/3051/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3051/history","class":"history"},"case_links":{"href":"/api/v2/cases/3051/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3051/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3051/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3051/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment","count":0}}},{"id":3052,"external_id":null,"blurb":"Please
158
160
  use an HTML-capable email client to view this message.\n\n","subject":"[The
159
- Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T00:50:58Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T00:50:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3052","class":"case"},"message":{"href":"/api/v2/cases/3052/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3052/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3052/history","class":"history"},"case_links":{"href":"/api/v2/cases/3052/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3052/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3052/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3052/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment","count":0}}},{"id":3054,"external_id":null,"blurb":"\r\nWe
161
+ Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T00:50:58Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T00:50:58Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3052","class":"case"},"message":{"href":"/api/v2/cases/3052/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"labels":{"href":"/api/v2/cases/3052/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3052/history","class":"history"},"case_links":{"href":"/api/v2/cases/3052/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3052/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3052/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3052/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment","count":0}}},{"id":3054,"external_id":null,"blurb":"\r\nWe
160
162
  found 10+ new jobs for you this week\r\n\r\nSolution Sales Specialist Director
161
163
  - Engineered Systems, Global Sales Support - new\r\nMultinational Enterprise
162
164
  Software Company - Menlo Park, CA\r\n14 hours ago\r\nhttp://www.glassdoor.com/partner/jobListing.ht","subject":"10+
163
- new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T03:26:01Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T03:26:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3054","class":"case"},"message":{"href":"/api/v2/cases/3054/message","class":"email"},"customer":{"href":"/api/v2/customers/85807851","class":"customer"},"labels":{"href":"/api/v2/cases/3054/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3054/history","class":"history"},"case_links":{"href":"/api/v2/cases/3054/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3054/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3054/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3054/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment","count":0}}},{"id":3055,"external_id":null,"blurb":"\n\n=====================================================================\nAMAZON.COM\n=====================================================================\n \nCheck
165
+ new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T03:26:01Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T03:26:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3054","class":"case"},"message":{"href":"/api/v2/cases/3054/message","class":"email"},"customer":{"href":"/api/v2/customers/85807851","class":"customer"},"labels":{"href":"/api/v2/cases/3054/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3054/history","class":"history"},"case_links":{"href":"/api/v2/cases/3054/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3054/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3054/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3054/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment","count":0}}},{"id":3055,"external_id":null,"blurb":"\n\n=====================================================================\nAMAZON.COM\n=====================================================================\n \nCheck
164
166
  out our collection of men''s classic clothes for everyday wear\u00bffrom Nautica,
165
- Izod, Dock","subject":"Men''s Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T08:05:00Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T08:05:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3055","class":"case"},"message":{"href":"/api/v2/cases/3055/message","class":"email"},"customer":{"href":"/api/v2/customers/85838535","class":"customer"},"labels":{"href":"/api/v2/cases/3055/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3055/history","class":"history"},"case_links":{"href":"/api/v2/cases/3055/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3055/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3055/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3055/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment","count":0}}},{"id":3056,"external_id":null,"blurb":"Reminder:
167
+ Izod, Dock","subject":"Men''s Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:39Z","created_at":"2013-05-12T08:05:00Z","updated_at":"2013-09-10T21:34:39Z","received_at":"2013-05-12T08:05:01Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3055","class":"case"},"message":{"href":"/api/v2/cases/3055/message","class":"email"},"customer":{"href":"/api/v2/customers/85838535","class":"customer"},"labels":{"href":"/api/v2/cases/3055/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3055/history","class":"history"},"case_links":{"href":"/api/v2/cases/3055/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3055/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3055/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3055/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment","count":0}}},{"id":3056,"external_id":null,"blurb":"Reminder:
166
168
  Make a deposit today \r\n\r\nAccount Ending: 0482\r\nDear Thomas Stachl,\r\n\r\nThank
167
169
  you for setting up a High-Yield Savings Account account with American Express\r\nPersonal
168
170
  Savings. As a reminder, you should make a deposit right away\r\nso you can
169
- st","subject":"Reminder: Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T08:30:23Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T08:30:23Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3056","class":"case"},"message":{"href":"/api/v2/cases/3056/message","class":"email"},"customer":{"href":"/api/v2/customers/85840817","class":"customer"},"labels":{"href":"/api/v2/cases/3056/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3056/history","class":"history"},"case_links":{"href":"/api/v2/cases/3056/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3056/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3056/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3056/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment","count":0}}},{"id":3057,"external_id":null,"blurb":"Salesforce.com
171
+ st","subject":"Reminder: Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T08:30:23Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T08:30:23Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3056","class":"case"},"message":{"href":"/api/v2/cases/3056/message","class":"email"},"customer":{"href":"/api/v2/customers/85840817","class":"customer"},"labels":{"href":"/api/v2/cases/3056/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3056/history","class":"history"},"case_links":{"href":"/api/v2/cases/3056/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3056/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3056/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3056/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment","count":0}}},{"id":3057,"external_id":null,"blurb":"Salesforce.com
170
172
  Certified Professionals\r\n Today''s new discussions from Salesforce.com
171
173
  Certified Professionals group members. Change the frequency of this digest:\r\n http://www.linkedin.com/e/xz83s3-hgm5wigc-5q/ahs/151420/EMLt_anet_settings/?hs=false","subject":"I
172
174
  need a developer for a couple of hours work. I need to have a Apex trigger
173
- created to trigger a WSDL and get the data retrieved via the WSDL into SF.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T11:54:57Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T11:54:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3057","class":"case"},"message":{"href":"/api/v2/cases/3057/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3057/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3057/history","class":"history"},"case_links":{"href":"/api/v2/cases/3057/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3057/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3057/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3057/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment","count":0}}},{"id":3058,"external_id":null,"blurb":"One-week
175
+ created to trigger a WSDL and get the data retrieved via the WSDL into SF.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T11:54:57Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T11:54:57Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3057","class":"case"},"message":{"href":"/api/v2/cases/3057/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"labels":{"href":"/api/v2/cases/3057/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3057/history","class":"history"},"case_links":{"href":"/api/v2/cases/3057/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3057/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3057/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3057/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment","count":0}}},{"id":3058,"external_id":null,"blurb":"One-week
174
176
  Bible plans, plus new plans from James MacDonald and Walk in the Word ministries\n\n5
175
177
  Popular Week-Long Plans\n\nHere\u2019s a little insider info: If you want
176
178
  to up your odds of finishing a Bible Plan, aim for a short one. In the YouVersion
177
179
  Communit","subject":"Bible Plans You Can Finish this Week, Plus New James
178
- MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3058/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3058/history","class":"history"},"case_links":{"href":"/api/v2/cases/3058/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3058/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3058/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3058/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment","count":0}}},{"id":3059,"external_id":null,"blurb":"your
180
+ MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T13:01:00Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T13:01:00Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3058","class":"case"},"message":{"href":"/api/v2/cases/3058/message","class":"email"},"customer":{"href":"/api/v2/customers/85868602","class":"customer"},"labels":{"href":"/api/v2/cases/3058/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3058/history","class":"history"},"case_links":{"href":"/api/v2/cases/3058/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3058/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3058/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3058/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment","count":0}}},{"id":3059,"external_id":null,"blurb":"your
179
181
  daily deal\r\n\r\nOAKLAND / EAST BAY presented by LivingSocial\r\n\r\nCafe
180
182
  Lizzi\r\nStart Five Days with Delicious Breakfasts & Espresso Drinks\r\n\r\nPrice:
181
183
  $18\r\n\r\n\r\n\r\n1 Deal Location:\r\n\r\n\r\n\r\n\r\nA long-time local favorite
182
- for those looking for comfort food, f","subject":"50% Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T13:14:24Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T13:14:24Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3059","class":"case"},"message":{"href":"/api/v2/cases/3059/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3059/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3059/history","class":"history"},"case_links":{"href":"/api/v2/cases/3059/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3059/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3059/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3059/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment","count":0}}},{"id":3060,"external_id":null,"blurb":"your
184
+ for those looking for comfort food, f","subject":"50% Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:40Z","created_at":"2013-05-12T13:14:24Z","updated_at":"2013-09-10T21:34:40Z","received_at":"2013-05-12T13:14:24Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3059","class":"case"},"message":{"href":"/api/v2/cases/3059/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3059/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3059/history","class":"history"},"case_links":{"href":"/api/v2/cases/3059/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3059/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3059/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3059/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment","count":0}}},{"id":3060,"external_id":null,"blurb":"your
183
185
  daily deal\r\n\r\nSAN FRANCISCO presented by LivingSocial\r\n\r\nTerranea
184
186
  Resort\r\nFive Stars on the Pacific Ocean\r\n\r\nPrice: $249\r\n\r\n\r\n\r\n1
185
187
  Deal Location:\r\n\r\n\r\n\r\n\r\nEscape Kit\r\n\u2022 A One-Night Stay for
186
188
  Two in a Resort-View Guest Room ($249 per Night) \r\n\u2022 Or","subject":"Celebrate
187
189
  Mother''s Day with $5 Off Almost All Purchases + 1 or 3 Nights in Palos Verdes
188
- for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3060/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3060/history","class":"history"},"case_links":{"href":"/api/v2/cases/3060/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3060/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3060/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3060/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment","count":0}}},{"id":3061,"external_id":null,"blurb":"Hojoki
190
+ for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T13:14:25Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T13:14:25Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3060","class":"case"},"message":{"href":"/api/v2/cases/3060/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"labels":{"href":"/api/v2/cases/3060/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3060/history","class":"history"},"case_links":{"href":"/api/v2/cases/3060/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3060/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3060/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3060/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment","count":0}}},{"id":3061,"external_id":null,"blurb":"Hojoki
189
191
  Daily Catch-Up: Sun, 12 May 2013\r\n========================================\r\n\r\nHi
190
192
  Thomas,\r\n\r\nThis is what has happened over the past 24 hours:\r\n\r\n##
191
193
  My Apps\r\nhttps://my.hojoki.com/#/p7940813\r\n\r\n###### GitHub\r\n* wlaurance/time-stamp-hash
192
- by wlau","subject":"Daily Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"created_at":"2013-05-12T14:02:16Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T14:02:16Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3061","class":"case"},"message":{"href":"/api/v2/cases/3061/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3061/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3061/history","class":"history"},"case_links":{"href":"/api/v2/cases/3061/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3061/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3061/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3061/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment","count":0}}},{"id":3062,"external_id":null,"blurb":"One
194
+ by wlau","subject":"Daily Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T14:02:16Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T14:02:16Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3061","class":"case"},"message":{"href":"/api/v2/cases/3061/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"labels":{"href":"/api/v2/cases/3061/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3061/history","class":"history"},"case_links":{"href":"/api/v2/cases/3061/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3061/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3061/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3061/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment","count":0}}},{"id":3062,"external_id":null,"blurb":"One
193
195
  Kings Lane\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
194
196
  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r","subject":"Living
195
197
  room furniture, elegant jewelry, rugs for every budget, Downstairs clearance
196
- items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3062/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3062/history","class":"history"},"case_links":{"href":"/api/v2/cases/3062/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3062/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3062/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3062/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment","count":0}}},{"id":3063,"external_id":null,"blurb":"Your
198
+ items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T15:03:22Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T15:03:22Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3062","class":"case"},"message":{"href":"/api/v2/cases/3062/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"labels":{"href":"/api/v2/cases/3062/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3062/history","class":"history"},"case_links":{"href":"/api/v2/cases/3062/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3062/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3062/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3062/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment","count":0}}},{"id":3063,"external_id":null,"blurb":"Your
197
199
  Daily San Francisco Groupon | Go to Groupon.com (http://www.groupon.com/san-francisco?utm_source=newsletter&utm_medium=email&sid=7c5c148c-ab40-45c0-a4e0-9bcaac4a92a1&division=san-francisco&user=f07795573252fce82801526610d60eb812686886dfc07d0","subject":"Mexican
198
- Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3063/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3063/history","class":"history"},"case_links":{"href":"/api/v2/cases/3063/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3063/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3063/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3063/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment","count":0}}},{"id":3064,"external_id":null,"blurb":null,"subject":"Testing
199
- customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3064/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3064/history","class":"history"},"case_links":{"href":"/api/v2/cases/3064/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3064/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3064/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3064/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment","count":0}}},{"id":3065,"external_id":null,"blurb":null,"subject":"Testing
200
- the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"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"},"labels":{"href":"/api/v2/cases/3065/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3065/history","class":"history"},"case_links":{"href":"/api/v2/cases/3065/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3065/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3065/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3065/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment","count":0}}},{"id":3066,"external_id":null,"blurb":null,"subject":"Testing
201
- more stuff","priority":5,"locked_until":null,"description":"","status":"pending","type":"email","labels":[],"label_ids":[],"language":"de","active_at":"2013-05-14T20:20:58Z","created_at":"2013-05-13T19:20:03Z","updated_at":"2013-08-16T17:04:52Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
202
- 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3066","class":"case"},"message":{"href":"/api/v2/cases/3066/message","class":"email"},"customer":{"href":"/api/v2/customers/86116163","class":"customer"},"labels":{"href":"/api/v2/cases/3066/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3066/history","class":"history"},"case_links":{"href":"/api/v2/cases/3066/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3066/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3066/replies","class":"reply","count":3},"draft":{"href":"/api/v2/cases/3066/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3066/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3066/attachments","class":"attachment","count":0}}}]}}'
200
+ Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"label_ids":[],"language":"en","active_at":null,"changed_at":"2013-09-10T21:34:41Z","created_at":"2013-05-12T15:10:11Z","updated_at":"2013-09-10T21:34:41Z","received_at":"2013-05-12T15:10:11Z","first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3063","class":"case"},"message":{"href":"/api/v2/cases/3063/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"labels":{"href":"/api/v2/cases/3063/labels","class":"label"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"history":{"href":"/api/v2/cases/3063/history","class":"history"},"case_links":{"href":"/api/v2/cases/3063/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3063/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3063/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3063/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment","count":0}}},{"id":3064,"external_id":null,"blurb":null,"subject":"Testing
201
+ customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-13T19:20:43Z","changed_at":"2013-09-10T21:34:42Z","created_at":"2013-05-13T18:12:07Z","updated_at":"2013-09-10T21:34:42Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3064","class":"case"},"message":{"href":"/api/v2/cases/3064/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"labels":{"href":"/api/v2/cases/3064/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3064/history","class":"history"},"case_links":{"href":"/api/v2/cases/3064/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3064/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3064/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3064/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment","count":0}}},{"id":3065,"external_id":null,"blurb":null,"subject":"Testing
202
+ the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-13T19:20:59Z","changed_at":"2013-09-10T21:34:42Z","created_at":"2013-05-13T18:13:39Z","updated_at":"2013-09-10T21:34:42Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null,"follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3065","class":"case"},"message":{"href":"/api/v2/cases/3065/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"labels":{"href":"/api/v2/cases/3065/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3065/history","class":"history"},"case_links":{"href":"/api/v2/cases/3065/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3065/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3065/replies","class":"reply","count":0},"draft":{"href":"/api/v2/cases/3065/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment","count":0}}},{"id":3066,"external_id":null,"blurb":null,"subject":"Testing
203
+ more stuff","priority":5,"locked_until":null,"description":"","status":"pending","type":"email","labels":[],"label_ids":[],"language":null,"active_at":"2013-05-14T20:20:58Z","changed_at":"2013-08-16T17:04:52Z","created_at":"2013-05-13T19:20:03Z","updated_at":"2013-08-16T17:04:52Z","received_at":null,"first_opened_at":null,"opened_at":null,"first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
204
+ 1","follow_up":null,"dependent":null},"_links":{"self":{"href":"/api/v2/cases/3066","class":"case"},"message":{"href":"/api/v2/cases/3066/message","class":"email"},"customer":{"href":"/api/v2/customers/86116163","class":"customer"},"labels":{"href":"/api/v2/cases/3066/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3066/history","class":"history"},"case_links":{"href":"/api/v2/cases/3066/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3066/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3066/replies","class":"reply","count":2},"draft":{"href":"/api/v2/cases/3066/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3066/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3066/attachments","class":"attachment","count":0}}}]}}'
203
205
  http_version:
204
- recorded_at: Mon, 19 May 2014 19:48:03 GMT
206
+ recorded_at: Wed, 09 Jul 2014 21:44:59 GMT
205
207
  - request:
206
208
  method: patch
207
209
  uri: https://devel.desk.com/api/v2/cases/3012
@@ -212,7 +214,7 @@ http_interactions:
212
214
  Accept:
213
215
  - application/json
214
216
  User-Agent:
215
- - desk.com Ruby Gem v0.5.8
217
+ - desk.com Ruby Gem v0.6.0
216
218
  Content-Type:
217
219
  - application/json
218
220
  response:
@@ -225,9 +227,9 @@ http_interactions:
225
227
  content-type:
226
228
  - application/json; charset=utf-8
227
229
  date:
228
- - Mon, 19 May 2014 19:48:03 GMT
230
+ - Wed, 09 Jul 2014 21:45:00 GMT
229
231
  etag:
230
- - '"f7076842e523f2d230d013b2ddb8f394"'
232
+ - '"7a7eee0a1f008911d17a3bc35299f9f5"'
231
233
  server:
232
234
  - nginx
233
235
  status:
@@ -241,27 +243,27 @@ http_interactions:
241
243
  x-rack-cache:
242
244
  - invalidate, pass
243
245
  x-rate-limit-limit:
244
- - '180'
246
+ - '240'
245
247
  x-rate-limit-remaining:
246
- - '178'
248
+ - '239'
247
249
  x-rate-limit-reset:
248
- - '57'
250
+ - '60'
249
251
  x-request-id:
250
- - ba6a9365170e0be523a836b25a5a6979
252
+ - c123e2a9ed16e65cc138fd15c9817588
251
253
  x-runtime:
252
- - '0.225781'
254
+ - '0.601671'
253
255
  x-ua-compatible:
254
256
  - IE=Edge,chrome=1
255
257
  content-length:
256
- - '1547'
258
+ - '1551'
257
259
  connection:
258
260
  - Close
259
261
  body:
260
262
  encoding: UTF-8
261
- string: '{"id":3012,"external_id":null,"blurb":null,"subject":"Re: ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["client_spam","client_test","ignore","spam"],"label_ids":[1431474,1431473,1789189,1789190],"language":"en","active_at":"2014-05-19T19:47:48Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-05-19T19:48:03Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
263
+ string: '{"id":3012,"external_id":null,"blurb":null,"subject":"Re: ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["client_spam","client_test"],"label_ids":[1789189,1789190],"language":"en","active_at":"2014-07-09T21:44:16Z","changed_at":"2014-07-09T21:45:00Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-07-09T21:45:00Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
262
264
  1","follow_up":null,"dependent":"Support::Testing"},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3012/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3012/history","class":"history"},"case_links":{"href":"/api/v2/cases/3012/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3012/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3012/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3012/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment","count":0}}}'
263
265
  http_version:
264
- recorded_at: Mon, 19 May 2014 19:48:03 GMT
266
+ recorded_at: Wed, 09 Jul 2014 21:45:00 GMT
265
267
  - request:
266
268
  method: get
267
269
  uri: https://devel.desk.com/api/v2/cases/3012/labels
@@ -272,7 +274,9 @@ http_interactions:
272
274
  Accept:
273
275
  - application/json
274
276
  User-Agent:
275
- - desk.com Ruby Gem v0.5.8
277
+ - desk.com Ruby Gem v0.6.0
278
+ Content-Type:
279
+ - application/json
276
280
  response:
277
281
  status:
278
282
  code: 200
@@ -285,9 +289,9 @@ http_interactions:
285
289
  content-type:
286
290
  - application/json; charset=utf-8
287
291
  date:
288
- - Mon, 19 May 2014 19:48:04 GMT
292
+ - Wed, 09 Jul 2014 21:45:01 GMT
289
293
  etag:
290
- - '"14005283102921426"'
294
+ - '"14049423010423858"'
291
295
  status:
292
296
  - 200 OK
293
297
  vary:
@@ -297,22 +301,22 @@ http_interactions:
297
301
  x-frame-options:
298
302
  - SAMEORIGIN
299
303
  x-rate-limit-limit:
300
- - '180'
304
+ - '240'
301
305
  x-rate-limit-remaining:
302
- - '177'
306
+ - '238'
303
307
  x-rate-limit-reset:
304
- - '56'
308
+ - '59'
305
309
  x-request-id:
306
- - e7c3148de37c0822292fab7bfc62b88e
310
+ - 2684d471a1cd4acdee4cd4e4b580e729
307
311
  content-length:
308
- - '1032'
312
+ - '692'
309
313
  connection:
310
314
  - Close
311
315
  body:
312
316
  encoding: UTF-8
313
- string: '{"total_entries":4,"page":1,"_links":{"self":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"id":1431474,"name":"spam","description":"spam","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1431474","class":"label"}}},{"id":1431473,"name":"ignore","description":"ignore","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1431473","class":"label"}}},{"id":1789189,"name":"client_spam","description":"client_spam","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789189","class":"label"}}},{"id":1789190,"name":"client_test","description":"client_test","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789190","class":"label"}}}]}}'
317
+ string: '{"total_entries":2,"page":1,"_links":{"self":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"id":1789189,"name":"client_spam","description":"client_spam","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789189","class":"label"}}},{"id":1789190,"name":"client_test","description":"client_test","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789190","class":"label"}}}]}}'
314
318
  http_version:
315
- recorded_at: Mon, 19 May 2014 19:48:04 GMT
319
+ recorded_at: Wed, 09 Jul 2014 21:45:01 GMT
316
320
  - request:
317
321
  method: patch
318
322
  uri: https://devel.desk.com/api/v2/cases/3012
@@ -323,7 +327,7 @@ http_interactions:
323
327
  Accept:
324
328
  - application/json
325
329
  User-Agent:
326
- - desk.com Ruby Gem v0.5.8
330
+ - desk.com Ruby Gem v0.6.0
327
331
  Content-Type:
328
332
  - application/json
329
333
  response:
@@ -336,9 +340,9 @@ http_interactions:
336
340
  content-type:
337
341
  - application/json; charset=utf-8
338
342
  date:
339
- - Mon, 19 May 2014 19:48:05 GMT
343
+ - Wed, 09 Jul 2014 21:45:01 GMT
340
344
  etag:
341
- - '"ae77ac48d581782eb4f7370b5cf09261"'
345
+ - '"7a7eee0a1f008911d17a3bc35299f9f5"'
342
346
  server:
343
347
  - nginx
344
348
  status:
@@ -352,30 +356,30 @@ http_interactions:
352
356
  x-rack-cache:
353
357
  - invalidate, pass
354
358
  x-rate-limit-limit:
355
- - '180'
359
+ - '240'
356
360
  x-rate-limit-remaining:
357
- - '176'
361
+ - '237'
358
362
  x-rate-limit-reset:
359
- - '55'
363
+ - '59'
360
364
  x-request-id:
361
- - 305924b681e81890491fb1726f3318b9
365
+ - b368f968254a4a9742e0734cbedfefd4
362
366
  x-runtime:
363
- - '0.479529'
367
+ - '0.242229'
364
368
  x-ua-compatible:
365
369
  - IE=Edge,chrome=1
366
370
  content-length:
367
- - '1515'
371
+ - '1551'
368
372
  connection:
369
373
  - Close
370
374
  body:
371
375
  encoding: UTF-8
372
- string: '{"id":3012,"external_id":null,"blurb":null,"subject":"Re: ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["client_spam","client_test"],"label_ids":[1789189,1789190],"language":"en","active_at":"2014-05-19T19:47:48Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-05-19T19:48:04Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
376
+ string: '{"id":3012,"external_id":null,"blurb":null,"subject":"Re: ","priority":4,"locked_until":null,"description":"","status":"pending","type":"email","labels":["client_spam","client_test"],"label_ids":[1789189,1789190],"language":"en","active_at":"2014-07-09T21:44:16Z","changed_at":"2014-07-09T21:45:00Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2014-07-09T21:45:00Z","received_at":null,"first_opened_at":"2013-05-09T18:38:17Z","opened_at":"2013-05-09T18:38:17Z","first_resolved_at":null,"resolved_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":"0","my_new_date_field":null,"my_new_boolean_field":false,"my_new_list_field":"Option
373
377
  1","follow_up":null,"dependent":"Support::Testing"},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/176573942","class":"customer"},"labels":{"href":"/api/v2/cases/3012/labels","class":"label"},"assigned_user":null,"assigned_group":null,"locked_by":null,"history":{"href":"/api/v2/cases/3012/history","class":"history"},"case_links":{"href":"/api/v2/cases/3012/links","class":"case_link"},"macro_preview":{"href":"/api/v2/cases/3012/macros/preview","class":"macro_preview"},"replies":{"href":"/api/v2/cases/3012/replies","class":"reply","count":1},"draft":{"href":"/api/v2/cases/3012/replies/draft","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note","count":0},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment","count":0}}}'
374
378
  http_version:
375
- recorded_at: Mon, 19 May 2014 19:48:05 GMT
379
+ recorded_at: Wed, 09 Jul 2014 21:45:01 GMT
376
380
  - request:
377
381
  method: get
378
- uri: https://devel.desk.com/api/v2/cases/3012/labels?page=1&per_page=50
382
+ uri: https://devel.desk.com/api/v2/cases/3012/labels
379
383
  body:
380
384
  encoding: US-ASCII
381
385
  string: ''
@@ -383,7 +387,9 @@ http_interactions:
383
387
  Accept:
384
388
  - application/json
385
389
  User-Agent:
386
- - desk.com Ruby Gem v0.5.8
390
+ - desk.com Ruby Gem v0.6.0
391
+ Content-Type:
392
+ - application/json
387
393
  response:
388
394
  status:
389
395
  code: 200
@@ -396,9 +402,9 @@ http_interactions:
396
402
  content-type:
397
403
  - application/json; charset=utf-8
398
404
  date:
399
- - Mon, 19 May 2014 19:48:05 GMT
405
+ - Wed, 09 Jul 2014 21:45:01 GMT
400
406
  etag:
401
- - '"14005283102921426"'
407
+ - '"14049423010423858"'
402
408
  status:
403
409
  - 200 OK
404
410
  vary:
@@ -408,13 +414,13 @@ http_interactions:
408
414
  x-frame-options:
409
415
  - SAMEORIGIN
410
416
  x-rate-limit-limit:
411
- - '180'
417
+ - '240'
412
418
  x-rate-limit-remaining:
413
- - '175'
419
+ - '236'
414
420
  x-rate-limit-reset:
415
- - '55'
421
+ - '59'
416
422
  x-request-id:
417
- - 08c35f193244a31c397f02a8f3f79663
423
+ - 57e718ce1f100079aa0f3ee115be1688
418
424
  content-length:
419
425
  - '692'
420
426
  connection:
@@ -423,5 +429,5 @@ http_interactions:
423
429
  encoding: UTF-8
424
430
  string: '{"total_entries":2,"page":1,"_links":{"self":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases/3012/labels?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"id":1789189,"name":"client_spam","description":"client_spam","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789189","class":"label"}}},{"id":1789190,"name":"client_test","description":"client_test","enabled":true,"types":["case"],"color":"default","_links":{"self":{"href":"/api/v2/labels/1789190","class":"label"}}}]}}'
425
431
  http_version:
426
- recorded_at: Mon, 19 May 2014 19:48:05 GMT
427
- recorded_with: VCR 2.9.0
432
+ recorded_at: Wed, 09 Jul 2014 21:45:01 GMT
433
+ recorded_with: VCR 2.9.2