desk_api 0.1.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -2
  3. data/Gemfile +0 -6
  4. data/README.md +38 -31
  5. data/desk_api.gemspec +1 -4
  6. data/lib/desk_api.rb +5 -7
  7. data/lib/desk_api/client.rb +44 -57
  8. data/lib/desk_api/configuration.rb +89 -95
  9. data/lib/desk_api/default.rb +51 -55
  10. data/lib/desk_api/error.rb +42 -44
  11. data/lib/desk_api/rate_limit.rb +20 -22
  12. data/lib/desk_api/resource.rb +142 -65
  13. data/lib/desk_api/version.rb +1 -1
  14. data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_delete/deletes_a_resource.yml +22 -22
  15. data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_get/fetches_resources.yml +26 -26
  16. data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_patch/updates_a_resource.yml +30 -30
  17. data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_post/creates_a_resource.yml +27 -27
  18. data/spec/cassettes/DeskApi_Client/using_OAuth/_delete/deletes_a_resource.yml +22 -22
  19. data/spec/cassettes/DeskApi_Client/using_OAuth/_get/fetches_resources.yml +31 -286
  20. data/spec/cassettes/DeskApi_Client/using_OAuth/_patch/updates_a_resource.yml +35 -35
  21. data/spec/cassettes/DeskApi_Client/using_OAuth/_post/creates_a_resource.yml +28 -28
  22. data/spec/cassettes/DeskApi_Error/_from_response/can_be_created_from_a_faraday_response.yml +22 -22
  23. data/spec/cassettes/DeskApi_Error/_from_response/uses_the_body_message_if_present.yml +22 -22
  24. data/spec/cassettes/DeskApi_Error/on_validation_error/allows_access_to_error_hash.yml +22 -22
  25. data/spec/cassettes/DeskApi_Resource/_by_url/finds_resources_by_url.yml +37 -286
  26. data/spec/cassettes/DeskApi_Resource/_create/creates_a_new_topic.yml +27 -27
  27. data/spec/cassettes/DeskApi_Resource/_create/throws_an_error_creating_a_user.yml +54 -0
  28. data/spec/cassettes/DeskApi_Resource/_delete/deletes_a_resource.yml +83 -79
  29. data/spec/cassettes/DeskApi_Resource/_delete/throws_an_error_deleting_a_non_deletalbe_resource.yml +78 -28
  30. data/spec/cassettes/DeskApi_Resource/_exec_/can_be_forced_to_reload.yml +34 -285
  31. data/spec/cassettes/DeskApi_Resource/_exec_/loads_the_current_resource.yml +34 -285
  32. data/spec/cassettes/DeskApi_Resource/_find/has_an_alias_by_id.yml +54 -0
  33. data/spec/cassettes/DeskApi_Resource/_find/loads_the_requested_resource.yml +54 -0
  34. data/spec/cassettes/DeskApi_Resource/_get_linked_resource/returns_linked_resources.yml +113 -0
  35. data/spec/cassettes/DeskApi_Resource/_get_linked_resource/returns_nil_if_link_is_nil.yml +62 -0
  36. data/spec/cassettes/DeskApi_Resource/_get_linked_resource/saves_the_linked_resource_instead_of_the_url.yml +113 -0
  37. data/spec/cassettes/DeskApi_Resource/_method_missing/loads_the_resource_to_find_a_suitable_method.yml +34 -285
  38. data/spec/cassettes/DeskApi_Resource/_method_missing/raises_an_error_if_method_does_not_exist.yml +34 -285
  39. data/spec/cassettes/DeskApi_Resource/_page/keeps_the_resource_as_loaded.yml +113 -0
  40. data/spec/cassettes/DeskApi_Resource/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +62 -0
  41. data/spec/cassettes/DeskApi_Resource/_page/sets_the_resource_to_not_loaded.yml +113 -0
  42. data/spec/cassettes/DeskApi_Resource/_search/allows_searching_on_search_enabled_resources.yml +23 -23
  43. data/spec/cassettes/DeskApi_Resource/_search/throws_an_error_if_search_is_not_enabled.yml +52 -0
  44. data/spec/cassettes/DeskApi_Resource/_update/can_update_without_a_hash.yml +178 -58
  45. data/spec/cassettes/DeskApi_Resource/_update/throws_an_error_updating_a_user.yml +86 -28
  46. data/spec/cassettes/DeskApi_Resource/_update/updates_a_topic.yml +61 -57
  47. data/spec/desk_api/client_spec.rb +9 -16
  48. data/spec/desk_api/resource_spec.rb +118 -43
  49. data/spec/spec_helper.rb +1 -1
  50. metadata +24 -102
  51. data/lib/desk_api/action/create.rb +0 -15
  52. data/lib/desk_api/action/delete.rb +0 -9
  53. data/lib/desk_api/action/embeddable.rb +0 -47
  54. data/lib/desk_api/action/field.rb +0 -33
  55. data/lib/desk_api/action/link.rb +0 -29
  56. data/lib/desk_api/action/resource.rb +0 -14
  57. data/lib/desk_api/action/search.rb +0 -15
  58. data/lib/desk_api/action/update.rb +0 -17
  59. data/lib/desk_api/error/method_not_supported.rb +0 -9
  60. data/lib/desk_api/error/not_embeddable.rb +0 -8
  61. data/lib/desk_api/error/not_updateable.rb +0 -10
  62. data/lib/desk_api/error/parse_error.rb +0 -9
  63. data/lib/desk_api/resource/article.rb +0 -10
  64. data/lib/desk_api/resource/article_translation.rb +0 -8
  65. data/lib/desk_api/resource/attachment.rb +0 -8
  66. data/lib/desk_api/resource/case.rb +0 -11
  67. data/lib/desk_api/resource/company.rb +0 -8
  68. data/lib/desk_api/resource/customer.rb +0 -9
  69. data/lib/desk_api/resource/filter.rb +0 -7
  70. data/lib/desk_api/resource/inbound_mailbox.rb +0 -7
  71. data/lib/desk_api/resource/integration_url.rb +0 -9
  72. data/lib/desk_api/resource/job.rb +0 -9
  73. data/lib/desk_api/resource/label.rb +0 -9
  74. data/lib/desk_api/resource/macro.rb +0 -9
  75. data/lib/desk_api/resource/macro_action.rb +0 -7
  76. data/lib/desk_api/resource/note.rb +0 -7
  77. data/lib/desk_api/resource/page.rb +0 -64
  78. data/lib/desk_api/resource/reply.rb +0 -10
  79. data/lib/desk_api/resource/topic.rb +0 -9
  80. data/lib/desk_api/resource/topic_translation.rb +0 -9
  81. data/lib/desk_api/resource/user_preference.rb +0 -7
  82. data/lib/desk_api/resources.json +0 -76
  83. data/spec/cassettes/DeskApi_Client/_delete/deletes_a_resource.yml +0 -48
  84. data/spec/cassettes/DeskApi_Client/_get/fetches_resources.yml +0 -55
  85. data/spec/cassettes/DeskApi_Client/_patch/updates_a_resource.yml +0 -62
  86. data/spec/cassettes/DeskApi_Client/_post/creates_a_resource.yml +0 -58
  87. data/spec/cassettes/DeskApi_Resource_Case/once_closed/can_not_be_updated.yml +0 -124
  88. data/spec/cassettes/DeskApi_Resource_Page/_find/has_an_alias_by_id.yml +0 -54
  89. data/spec/cassettes/DeskApi_Resource_Page/_find/loads_the_requested_resource.yml +0 -54
  90. data/spec/cassettes/DeskApi_Resource_Page/_page/keeps_the_resource_as_loaded.yml +0 -113
  91. data/spec/cassettes/DeskApi_Resource_Page/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +0 -313
  92. data/spec/cassettes/DeskApi_Resource_Page/_page/sets_the_resource_to_not_loaded.yml +0 -113
  93. data/spec/desk_api/resource/case_spec.rb +0 -28
  94. data/spec/desk_api/resource/page_spec.rb +0 -68
@@ -1,62 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: patch
5
- uri: https://devel.desk.com/api/v2/topics/556402
6
- body:
7
- encoding: UTF-8
8
- string: '{"name":"Test Updated Topic"}'
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.0
14
- Content-Type:
15
- - application/json
16
- response:
17
- status:
18
- code: 200
19
- message:
20
- headers:
21
- Cache-Control:
22
- - max-age=0, private, must-revalidate
23
- Content-Type:
24
- - application/json; charset=utf-8
25
- Date:
26
- - Mon, 19 Aug 2013 23:51:35 GMT
27
- ETag:
28
- - '"02ad91e6c4bff038228c0649f84e02f2"'
29
- Server:
30
- - nginx
31
- Status:
32
- - 200 OK
33
- Vary:
34
- - X-AppVersion
35
- X-AppVersion:
36
- - '7.9'
37
- X-Frame-Options:
38
- - SAMEORIGIN
39
- X-Rack-Cache:
40
- - invalidate, pass
41
- X-Rate-Limit-Limit:
42
- - '60'
43
- X-Rate-Limit-Remaining:
44
- - '37'
45
- X-Rate-Limit-Reset:
46
- - '25'
47
- X-Request-Id:
48
- - 2cf01c7ab3a9ebb4c876b80ad417570f
49
- X-Runtime:
50
- - '0.120622'
51
- X-UA-Compatible:
52
- - IE=Edge,chrome=1
53
- Content-Length:
54
- - '408'
55
- Connection:
56
- - keep-alive
57
- body:
58
- encoding: UTF-8
59
- string: '{"name":"Test Updated Topic","description":null,"position":2,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-14T19:37:08Z","updated_at":"2013-08-15T21:26:17Z","_links":{"self":{"href":"/api/v2/topics/556402","class":"topic"},"articles":{"href":"/api/v2/topics/556402/articles","class":"article"},"translations":{"href":"/api/v2/topics/556402/translations","class":"topic_translation"}}}'
60
- http_version:
61
- recorded_at: Mon, 19 Aug 2013 23:51:35 GMT
62
- recorded_with: VCR 2.5.0
@@ -1,58 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://devel.desk.com/api/v2/topics
6
- body:
7
- encoding: UTF-8
8
- string: '{"name":"Test Topic"}'
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.0
14
- Content-Type:
15
- - application/json
16
- response:
17
- status:
18
- code: 201
19
- message:
20
- headers:
21
- Accept-Ranges:
22
- - bytes
23
- Cache-Control:
24
- - max-age=0, private, must-revalidate
25
- Content-Type:
26
- - application/json; charset=utf-8
27
- Date:
28
- - Mon, 19 Aug 2013 23:51:35 GMT
29
- ETag:
30
- - '"d2a4b62bd50a12b48e02ab932b328c01"'
31
- Location:
32
- - https://devel.desk.com/api/v2/topics/558245
33
- Status:
34
- - 201 Created
35
- Vary:
36
- - X-AppVersion
37
- X-AppVersion:
38
- - '7.9'
39
- X-Frame-Options:
40
- - SAMEORIGIN
41
- X-Rate-Limit-Limit:
42
- - '60'
43
- X-Rate-Limit-Remaining:
44
- - '38'
45
- X-Rate-Limit-Reset:
46
- - '25'
47
- X-Request-Id:
48
- - 54760404a640fbfe0a3bff1656fee0a0
49
- Content-Length:
50
- - '400'
51
- Connection:
52
- - keep-alive
53
- body:
54
- encoding: UTF-8
55
- string: '{"name":"Test Topic","description":null,"position":5,"allow_questions":true,"in_support_center":null,"created_at":"2013-08-19T23:51:35Z","updated_at":"2013-08-19T23:51:35Z","_links":{"self":{"href":"/api/v2/topics/558245","class":"topic"},"articles":{"href":"/api/v2/topics/558245/articles","class":"article"},"translations":{"href":"/api/v2/topics/558245/translations","class":"topic_translation"}}}'
56
- http_version:
57
- recorded_at: Mon, 19 Aug 2013 23:51:35 GMT
58
- recorded_with: VCR 2.5.0
@@ -1,124 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://devel.desk.com/api/v2/customers
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.2
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Accept-Ranges:
20
- - bytes
21
- Cache-Control:
22
- - must-revalidate, private, max-age=0
23
- Content-Type:
24
- - application/json; charset=utf-8
25
- Date:
26
- - Fri, 06 Sep 2013 21:59:05 GMT
27
- ETag:
28
- - '"e60e588bcd3e052370e36555fc307738"'
29
- Status:
30
- - 200 OK
31
- Vary:
32
- - X-AppVersion
33
- X-AppVersion:
34
- - '9.9'
35
- X-Frame-Options:
36
- - SAMEORIGIN
37
- X-Rate-Limit-Limit:
38
- - '60'
39
- X-Rate-Limit-Remaining:
40
- - '59'
41
- X-Rate-Limit-Reset:
42
- - '55'
43
- X-Request-Id:
44
- - de1a0bfc6a858410f780bc8f2386be51
45
- Content-Length:
46
- - '31501'
47
- Connection:
48
- - keep-alive
49
- body:
50
- encoding: UTF-8
51
- string: '{"total_entries":189,"_links":{"self":{"href":"/api/v2/customers?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/customers?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/customers?page=4&per_page=50","class":"page"},"previous":null,"next":{"href":"/api/v2/customers?page=2&per_page=50","class":"page"}},"_embedded":{"entries":[{"first_name":"Alex","last_name":"Bard","company":"Desk.com","title":"CEO","external_id":null,"background":"Wowing
52
- customer","language":null,"locked_until":null,"created_at":"2012-06-06T14:51:30Z","updated_at":"2013-08-20T18:45:04Z","custom_fields":{"my_custom_field":"","my_number_field":"0","my_boolean_field":"0","my_date_field":"","my_list_field":"Option
53
- 1"},"emails":[{"type":"work","value":"support@desk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/34290812","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138963","class":"company"},"cases":{"href":"/api/v2/customers/34290812/cases","class":"case"}}},{"first_name":"Stella","last_name":"Pavlova","company":"Morpon
54
- Brothers","title":"SVP Production","external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2012-06-06T15:01:44Z","updated_at":"2012-12-07T23:56:00Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/34292086","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138965","class":"company"},"cases":{"href":"/api/v2/customers/34292086/cases","class":"case"}}},{"first_name":"Mike","last_name":"Malmin","company":"Mike
55
- Malmin","title":"","external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2012-06-07T13:50:04Z","updated_at":"2012-12-07T23:56:00Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/34406867","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138578","class":"company"},"cases":{"href":"/api/v2/customers/34406867/cases","class":"case"}}},{"first_name":"Janice","last_name":"Bergman","company":"Data
56
- Mart","title":"VP Purchasing","external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2012-06-07T14:07:13Z","updated_at":"2012-12-07T23:56:00Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/34408491","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138446","class":"company"},"cases":{"href":"/api/v2/customers/34408491/cases","class":"case"}}},{"first_name":"Bob","last_name":"Hodges","company":"United
57
- Partners*","title":"President and CEO","external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2012-06-22T21:56:31Z","updated_at":"2012-12-07T23:56:01Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/36328589","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/113131","class":"company"},"cases":{"href":"/api/v2/customers/36328589/cases","class":"case"}}},{"first_name":"Ron","last_name":"Adkins","company":"Valley
58
- Supply Inc.","title":"President Sales Exec Finance Exec","external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2012-06-25T21:12:05Z","updated_at":"2012-12-07T23:56:01Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/36652658","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/114536","class":"company"},"cases":{"href":"/api/v2/customers/36652658/cases","class":"case"}}},{"first_name":"Thomas","last_name":"Stachl","company":"stachl.me","title":"Master
59
- of Script Artistry","external_id":null,"background":"Some Background information.","language":"de","locked_until":null,"created_at":"2012-07-04T14:33:39Z","updated_at":"2013-07-15T18:10:21Z","custom_fields":{"my_custom_field":"","my_number_field":"0","my_boolean_field":"0","my_date_field":"","my_list_field":"Option
60
- 1"},"emails":[{"type":"home","value":"thomas@stachl.me"},{"type":"home","value":"tstachl@salesforce.com"}],"phone_numbers":[{"type":"mobile","value":"4156060761"}],"addresses":[{"type":"home","value":"600
61
- William Street #526\nOakland, CA 94612"}],"_links":{"self":{"href":"/api/v2/customers/37823480","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/373760","class":"company"},"cases":{"href":"/api/v2/customers/37823480/cases","class":"case"}}},{"first_name":"Lauren","last_name":"Boyle*","company":"mailinator.com","title":"","external_id":"0033000001JLAZrAAP","background":"","language":null,"locked_until":null,"created_at":"2012-12-07T23:36:46Z","updated_at":"2013-04-13T03:47:03Z","custom_fields":{"my_custom_field":"","my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"work","value":"lauren.boyle@mailinator.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/58278628","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/2278303","class":"company"},"cases":{"href":"/api/v2/customers/58278628/cases","class":"case"}}},{"first_name":"Sandy","last_name":"Knudson","company":"mailinator.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-02-28T19:28:28Z","updated_at":"2013-02-28T19:45:43Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"work","value":"sandyknudson@mailinator.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/71433005","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/2278303","class":"company"},"cases":{"href":"/api/v2/customers/71433005/cases","class":"case"}}},{"first_name":"Brad","last_name":"Anastasio","company":"fakeemail.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-01T13:51:56Z","updated_at":"2013-03-01T13:51:56Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"work","value":"brad.anastasio@fakeemail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/71579966","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4036540","class":"company"},"cases":{"href":"/api/v2/customers/71579966/cases","class":"case"}}},{"first_name":"Leena","last_name":"Cianflone","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:45Z","updated_at":"2013-03-22T23:49:45Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"leenacianflone@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923712","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923712/cases","class":"case"}}},{"first_name":"Quinton","last_name":"Swanda","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:45Z","updated_at":"2013-03-22T23:49:45Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"quintonswanda@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923713","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923713/cases","class":"case"}}},{"first_name":"Jennifer","last_name":"Hansen","company":"zendesk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:46Z","updated_at":"2013-03-22T23:49:46Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"jennifer@zendesk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923714","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451253","class":"company"},"cases":{"href":"/api/v2/customers/75923714/cases","class":"case"}}},{"first_name":"Hue","last_name":"Gottesman","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:46Z","updated_at":"2013-03-22T23:49:46Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"huegottesman@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923715","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923715/cases","class":"case"}}},{"first_name":"Hal","last_name":"Raxter","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:47Z","updated_at":"2013-03-22T23:49:47Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"raxterhal@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923716","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923716/cases","class":"case"}}},{"first_name":"Colmo","last_name":"","company":"zendesk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:47Z","updated_at":"2013-03-22T23:49:47Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"colmo@zendesk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923717","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451253","class":"company"},"cases":{"href":"/api/v2/customers/75923717/cases","class":"case"}}},{"first_name":"Brice","last_name":"Baggenstoss","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:47Z","updated_at":"2013-03-22T23:49:47Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"bricebaggenstoss@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923718","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923718/cases","class":"case"}}},{"first_name":"Support","last_name":"","company":"zendesk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:47Z","updated_at":"2013-03-22T23:49:47Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"support@zendesk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923719","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451253","class":"company"},"cases":{"href":"/api/v2/customers/75923719/cases","class":"case"}}},{"first_name":"Noreply","last_name":"","company":"postmaster.twitter.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:48Z","updated_at":"2013-03-22T23:49:48Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"noreply@postmaster.twitter.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923720","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451254","class":"company"},"cases":{"href":"/api/v2/customers/75923720/cases","class":"case"}}},{"first_name":"Hal","last_name":"Schellhase","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-22T23:49:48Z","updated_at":"2013-03-22T23:49:48Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"halschellhase@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/75923721","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/75923721/cases","class":"case"}}},{"first_name":"Test","last_name":"Tester","company":"example.com","title":"CEO","external_id":null,"background":"","language":"en","locked_until":null,"created_at":"2013-03-27T17:35:51Z","updated_at":"2013-03-27T18:04:48Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"work","value":"tester@example.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/76863359","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4543697","class":"company"},"cases":{"href":"/api/v2/customers/76863359/cases","class":"case"}}},{"first_name":"barr_tim","last_name":"","company":"grandhotels.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-03-29T00:04:09Z","updated_at":"2013-04-15T23:59:05Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"barr_tim@grandhotels.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/77160792","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4574466","class":"company"},"cases":{"href":"/api/v2/customers/77160792/cases","class":"case"}}},{"first_name":"John","last_name":"","company":"example.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-06T22:12:56Z","updated_at":"2013-04-15T16:42:57Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"john@example.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/78914102","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4543697","class":"company"},"cases":{"href":"/api/v2/customers/78914102/cases","class":"case"}}},{"first_name":"Stachl","last_name":"Testing
62
- Page","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-08T20:06:40Z","updated_at":"2013-04-08T20:06:40Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/79246639","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/79246639/cases","class":"case"}}},{"first_name":"Thomas","last_name":"Stachl","company":null,"title":null,"external_id":null,"background":null,"language":"en_us","locked_until":null,"created_at":"2013-04-08T20:18:56Z","updated_at":"2013-04-08T20:18:56Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/79249149","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/79249149/cases","class":"case"}}},{"first_name":"Andrew","last_name":"Frauen","company":null,"title":null,"external_id":null,"background":null,"language":"en","locked_until":null,"created_at":"2013-04-11T17:39:26Z","updated_at":"2013-04-11T17:39:26Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"frauen.a@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/79858779","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/79858779/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-12T23:46:33Z","updated_at":"2013-04-12T23:46:33Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80192856","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80192856/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-12T23:48:05Z","updated_at":"2013-04-12T23:48:05Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80193061","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80193061/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:37:48Z","updated_at":"2013-04-13T02:37:48Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80212952","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80212952/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:39:12Z","updated_at":"2013-04-13T02:39:12Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80213083","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80213083/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:40:10Z","updated_at":"2013-04-13T02:40:10Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80213160","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80213160/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:41:53Z","updated_at":"2013-04-13T02:41:53Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80213349","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80213349/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:43:59Z","updated_at":"2013-04-13T02:43:59Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80213634","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80213634/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:45:57Z","updated_at":"2013-04-13T02:45:57Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80213888","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80213888/cases","class":"case"}}},{"first_name":null,"last_name":null,"company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-13T02:46:52Z","updated_at":"2013-04-13T02:46:52Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80214018","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/80214018/cases","class":"case"}}},{"first_name":"John","last_name":"Smith","company":"Glorious
63
- D","title":"Senior Vice President of Awesome","external_id":null,"background":"Some
64
- description.","language":null,"locked_until":null,"created_at":"2013-04-15T16:58:30Z","updated_at":"2013-04-15T16:58:31Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"john@gd.com"}],"phone_numbers":[{"type":"home","value":"4155551235"}],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/80640812","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4912151","class":"company"},"cases":{"href":"/api/v2/customers/80640812/cases","class":"case"}}},{"first_name":"Larita","last_name":"Villas","company":null,"title":null,"external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2013-04-22T22:37:00Z","updated_at":"2013-04-22T22:37:00Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"laritavillas@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113673","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113673/cases","class":"case"}}},{"first_name":"Nolan","last_name":"Gett","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:01Z","updated_at":"2013-04-22T22:37:01Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"nolangett@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113675","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113675/cases","class":"case"}}},{"first_name":"Moises","last_name":"Sabio","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:02Z","updated_at":"2013-04-22T22:37:02Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"sabiomoises@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113682","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113682/cases","class":"case"}}},{"first_name":"Twitter","last_name":"","company":"postmaster.twitter.com","title":null,"external_id":null,"background":"","language":null,"locked_until":null,"created_at":"2013-04-22T22:37:02Z","updated_at":"2013-04-22T22:37:02Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"n-tybonyfhespb=tznvy.pbz-9b29b@postmaster.twitter.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113684","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451254","class":"company"},"cases":{"href":"/api/v2/customers/82113684/cases","class":"case"}}},{"first_name":"Zendesk","last_name":"","company":"zendesk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:03Z","updated_at":"2013-04-22T22:37:03Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"noreply@zendesk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113685","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/4451253","class":"company"},"cases":{"href":"/api/v2/customers/82113685/cases","class":"case"}}},{"first_name":"Richie","last_name":"Kalter","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:03Z","updated_at":"2013-04-22T22:37:03Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"richiekalter11@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113689","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113689/cases","class":"case"}}},{"first_name":"The","last_name":"Desk.com
65
- Team","company":"Desk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:04Z","updated_at":"2013-04-22T22:37:04Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"welcome@desk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113693","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138963","class":"company"},"cases":{"href":"/api/v2/customers/82113693/cases","class":"case"}}},{"first_name":"Rupert","last_name":"Warstler","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:37:04Z","updated_at":"2013-04-22T22:37:04Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"rupertwarstler@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113694","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113694/cases","class":"case"}}},{"first_name":"Suzy","last_name":"Galicinao","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:00Z","updated_at":"2013-04-22T22:38:00Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"suzygalicinao@gmail.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113926","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113926/cases","class":"case"}}},{"first_name":"ashley","last_name":"lawrence","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:01Z","updated_at":"2013-04-22T22:38:01Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113930","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113930/cases","class":"case"}}},{"first_name":"Keshia","last_name":"Hohenstein","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:01Z","updated_at":"2013-04-22T22:38:01Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113931","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113931/cases","class":"case"}}},{"first_name":"Alex","last_name":"Hisaka","company":"Desk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:01Z","updated_at":"2013-04-22T22:38:02Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"alex.hisaka@desk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113933","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138963","class":"company"},"cases":{"href":"/api/v2/customers/82113933/cases","class":"case"}}},{"first_name":"seethaji","last_name":"","company":null,"title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:02Z","updated_at":"2013-04-22T22:38:02Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"seethaji@yahoo.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113936","class":"customer"},"locked_by":null,"cases":{"href":"/api/v2/customers/82113936/cases","class":"case"}}},{"first_name":"Sukhjit","last_name":"","company":"Desk.com","title":null,"external_id":null,"background":null,"language":null,"locked_until":null,"created_at":"2013-04-22T22:38:02Z","updated_at":"2013-04-22T22:38:02Z","custom_fields":{"my_custom_field":null,"my_number_field":null,"my_boolean_field":null,"my_date_field":null,"my_list_field":null},"emails":[{"type":"home","value":"sukhjit@desk.com"}],"phone_numbers":[],"addresses":[],"_links":{"self":{"href":"/api/v2/customers/82113939","class":"customer"},"locked_by":null,"company":{"href":"/api/v2/companies/138963","class":"company"},"cases":{"href":"/api/v2/customers/82113939/cases","class":"case"}}}]}}'
66
- http_version:
67
- recorded_at: Fri, 06 Sep 2013 21:59:05 GMT
68
- - request:
69
- method: post
70
- uri: https://devel.desk.com/api/v2/customers/34290812/cases
71
- body:
72
- encoding: UTF-8
73
- string: '{"type":"phone","subject":"Phone Case Subject","priority":4,"status":"closed","message":{"direction":"in","body":"Example
74
- Body"}}'
75
- headers:
76
- Accept:
77
- - application/json
78
- User-Agent:
79
- - desk.com Ruby Gem v0.1.2
80
- Content-Type:
81
- - application/json
82
- response:
83
- status:
84
- code: 201
85
- message:
86
- headers:
87
- Accept-Ranges:
88
- - bytes
89
- Cache-Control:
90
- - max-age=0, private, must-revalidate
91
- Content-Type:
92
- - application/json; charset=utf-8
93
- Date:
94
- - Fri, 06 Sep 2013 21:59:05 GMT
95
- ETag:
96
- - '"8b8c5604fbc6d1fad236c6c47663b87d"'
97
- Location:
98
- - https://devel.desk.com/api/v2/cases/3344
99
- Status:
100
- - 201 Created
101
- Vary:
102
- - X-AppVersion
103
- X-AppVersion:
104
- - '9.9'
105
- X-Frame-Options:
106
- - SAMEORIGIN
107
- X-Rate-Limit-Limit:
108
- - '60'
109
- X-Rate-Limit-Remaining:
110
- - '58'
111
- X-Rate-Limit-Reset:
112
- - '55'
113
- X-Request-Id:
114
- - 19249bfef63cea6a01a2e45c2137ce09
115
- Content-Length:
116
- - '877'
117
- Connection:
118
- - keep-alive
119
- body:
120
- encoding: UTF-8
121
- string: '{"external_id":null,"subject":"Phone Case Subject","priority":4,"locked_until":null,"description":null,"status":"closed","type":"phone","labels":[],"language":"de","active_at":null,"created_at":"2013-09-06T21:59:05Z","updated_at":"2013-09-06T21:59:05Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3344","class":"case"},"message":{"href":"/api/v2/cases/3344/message","class":"phone"},"customer":{"href":"/api/v2/customers/34290812","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3344/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3344/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3344/attachments","class":"attachment"}}}'
122
- http_version:
123
- recorded_at: Fri, 06 Sep 2013 21:59:05 GMT
124
- recorded_with: VCR 2.5.0
@@ -1,54 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://devel.desk.com/api/v2/cases/3065
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.2
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Accept-Ranges:
20
- - bytes
21
- Cache-Control:
22
- - must-revalidate, private, max-age=0
23
- Content-Type:
24
- - application/json; charset=utf-8
25
- Date:
26
- - Sat, 07 Sep 2013 21:40:49 GMT
27
- ETag:
28
- - '"cbba64bc7fe9b35611cc745f75671fb6"'
29
- Status:
30
- - 200 OK
31
- Vary:
32
- - X-AppVersion
33
- X-AppVersion:
34
- - '9.9'
35
- X-Frame-Options:
36
- - SAMEORIGIN
37
- X-Rate-Limit-Limit:
38
- - '60'
39
- X-Rate-Limit-Remaining:
40
- - '59'
41
- X-Rate-Limit-Reset:
42
- - '11'
43
- X-Request-Id:
44
- - 2c92e26b679018d276ba9790a631d5f0
45
- Content-Length:
46
- - '897'
47
- Connection:
48
- - keep-alive
49
- body:
50
- encoding: UTF-8
51
- string: '{"external_id":null,"subject":"Testing the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:59Z","created_at":"2013-05-13T18:13:39Z","updated_at":"2013-05-13T18:13:39Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3065","class":"case"},"message":{"href":"/api/v2/cases/3065/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3065/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment"}}}'
52
- http_version:
53
- recorded_at: Sat, 07 Sep 2013 21:40:49 GMT
54
- recorded_with: VCR 2.5.0
@@ -1,54 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://devel.desk.com/api/v2/cases/3065
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.2
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Accept-Ranges:
20
- - bytes
21
- Cache-Control:
22
- - must-revalidate, private, max-age=0
23
- Content-Type:
24
- - application/json; charset=utf-8
25
- Date:
26
- - Sat, 07 Sep 2013 21:40:49 GMT
27
- ETag:
28
- - '"cbba64bc7fe9b35611cc745f75671fb6"'
29
- Status:
30
- - 200 OK
31
- Vary:
32
- - X-AppVersion
33
- X-AppVersion:
34
- - '9.9'
35
- X-Frame-Options:
36
- - SAMEORIGIN
37
- X-Rate-Limit-Limit:
38
- - '60'
39
- X-Rate-Limit-Remaining:
40
- - '58'
41
- X-Rate-Limit-Reset:
42
- - '11'
43
- X-Request-Id:
44
- - a33f162a33593ce4444ffeaacb9b6364
45
- Content-Length:
46
- - '897'
47
- Connection:
48
- - keep-alive
49
- body:
50
- encoding: UTF-8
51
- string: '{"external_id":null,"subject":"Testing the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:59Z","created_at":"2013-05-13T18:13:39Z","updated_at":"2013-05-13T18:13:39Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3065","class":"case"},"message":{"href":"/api/v2/cases/3065/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3065/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment"}}}'
52
- http_version:
53
- recorded_at: Sat, 07 Sep 2013 21:40:49 GMT
54
- recorded_with: VCR 2.5.0
@@ -1,113 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://devel.desk.com/api/v2/cases
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/json
12
- User-Agent:
13
- - desk.com Ruby Gem v0.1.0
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Accept-Ranges:
20
- - bytes
21
- Cache-Control:
22
- - must-revalidate, private, max-age=0
23
- Content-Type:
24
- - application/json; charset=utf-8
25
- Date:
26
- - Mon, 19 Aug 2013 23:51:32 GMT
27
- ETag:
28
- - '"9be8043641e7da379826d5480c34a491"'
29
- Status:
30
- - 200 OK
31
- Vary:
32
- - X-AppVersion
33
- X-AppVersion:
34
- - '7.9'
35
- X-Frame-Options:
36
- - SAMEORIGIN
37
- X-Rate-Limit-Limit:
38
- - '60'
39
- X-Rate-Limit-Remaining:
40
- - '57'
41
- X-Rate-Limit-Reset:
42
- - '29'
43
- X-Request-Id:
44
- - 8d4c5327c6ad669e96d250837638af84
45
- Content-Length:
46
- - '48478'
47
- Connection:
48
- - keep-alive
49
- body:
50
- encoding: UTF-8
51
- string: '{"total_entries":319,"_links":{"self":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/cases?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/cases?page=7&per_page=50","class":"page"},"previous":null,"next":{"href":"/api/v2/cases?page=2&per_page=50","class":"page"}},"_embedded":{"entries":[{"external_id":null,"subject":"","priority":9,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"en","active_at":"2013-08-05T18:21:38Z","created_at":"2013-05-09T17:02:16Z","updated_at":"2013-08-05T18:48:38Z","received_at":"2013-05-09T17:02:16Z","custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
52
- 1"},"_links":{"self":{"href":"/api/v2/cases/3011","class":"case"},"message":{"href":"/api/v2/cases/3011/message","class":"phone"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3011/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3011/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3011/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":null,"status":"pending","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:55:10Z","created_at":"2013-05-09T18:38:17Z","updated_at":"2013-08-05T18:45:21Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3012","class":"case"},"message":{"href":"/api/v2/cases/3012/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3012/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3012/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3012/attachments","class":"attachment"}}},{"external_id":null,"subject":"","priority":4,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-10T18:28:14Z","created_at":"2013-05-09T21:50:06Z","updated_at":"2013-05-10T18:28:11Z","received_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
53
- 1"},"_links":{"self":{"href":"/api/v2/cases/3013","class":"case"},"message":{"href":"/api/v2/cases/3013/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3013/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3013/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3013/attachments","class":"attachment"}}},{"external_id":"","subject":"Testing
54
- Quick Case","priority":8,"locked_until":null,"description":"Some additional
55
- Description regarding this email.","status":"resolved","type":"email","labels":[],"language":"de","active_at":"2013-05-10T19:08:27Z","created_at":"2013-05-10T19:08:10Z","updated_at":"2013-05-10T19:08:10Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3014","class":"case"},"message":{"href":"/api/v2/cases/3014/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3014/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3014/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3014/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
56
- the Quick Case","priority":9,"locked_until":null,"description":"Additional
57
- description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T20:21:21Z","created_at":"2013-05-10T20:20:18Z","updated_at":"2013-05-10T20:20:19Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3015","class":"case"},"message":{"href":"/api/v2/cases/3015/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3015/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3015/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3015/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
58
- Quick Case again","priority":8,"locked_until":null,"description":"And a description.","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:01:36Z","created_at":"2013-05-10T22:01:25Z","updated_at":"2013-05-10T22:01:25Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3016","class":"case"},"message":{"href":"/api/v2/cases/3016/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171214","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3016/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3016/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3016/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
59
- Quick Case once more","priority":5,"locked_until":null,"description":null,"status":"resolved","type":"email","labels":[],"language":"de","active_at":null,"created_at":"2013-05-10T22:11:43Z","updated_at":"2013-05-10T22:11:43Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3017","class":"case"},"message":{"href":"/api/v2/cases/3017/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16096734","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3017/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3017/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3017/attachments","class":"attachment"}}},{"external_id":null,"subject":"Quick
60
- Case - 1","priority":8,"locked_until":null,"description":"","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-16T01:10:29Z","created_at":"2013-05-10T22:20:01Z","updated_at":"2013-05-16T01:01:33Z","received_at":null,"custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
61
- 1"},"_links":{"self":{"href":"/api/v2/cases/3018","class":"case"},"message":{"href":"/api/v2/cases/3018/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":{"href":"/api/v2/users/16107036","class":"user"},"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3018/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3018/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3018/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
62
- Stuff","priority":5,"locked_until":null,"description":"Testing stuff","status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-10T22:25:38Z","created_at":"2013-05-10T22:25:19Z","updated_at":"2013-05-10T22:25:19Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3019","class":"case"},"message":{"href":"/api/v2/cases/3019/message","class":"email"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3019/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3019/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3019/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
63
- stuff","priority":5,"locked_until":null,"description":"","status":"open","type":"phone","labels":[],"language":"de","active_at":"2013-05-23T23:15:51Z","created_at":"2013-05-10T23:02:08Z","updated_at":"2013-05-15T00:17:23Z","received_at":"2013-05-15T00:17:23Z","custom_fields":{"my_new_custom_field":"","my_new_number_field":"0","my_new_date_field":"","my_new_boolean_field":"0","my_new_list_field":"Option
64
- 1"},"_links":{"self":{"href":"/api/v2/cases/3021","class":"case"},"message":{"href":"/api/v2/cases/3021/message","class":"phone"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3021/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3021/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3021/attachments","class":"attachment"}}},{"external_id":null,"subject":"The
65
- moms in your life always deliver.","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-11T01:43:17Z","created_at":"2013-05-11T00:03:08Z","updated_at":"2013-05-11T01:39:46Z","received_at":"2013-05-11T00:03:08Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3022","class":"case"},"message":{"href":"/api/v2/cases/3022/message","class":"email"},"customer":{"href":"/api/v2/customers/85614510","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3022/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3022/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3022/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas
66
- Stachl - You got 1 new mention","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-16T18:12:22Z","created_at":"2013-05-11T00:05:00Z","updated_at":"2013-05-16T18:12:22Z","received_at":"2013-05-11T00:05:00Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3023","class":"case"},"message":{"href":"/api/v2/cases/3023/message","class":"email"},"customer":{"href":"/api/v2/customers/85614731","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3023/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3023/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3023/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
67
- Uptown] Daily Digest for 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T00:49:57Z","updated_at":"2013-05-11T00:49:57Z","received_at":"2013-05-11T00:49:57Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3024","class":"case"},"message":{"href":"/api/v2/cases/3024/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3024/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3024/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3024/attachments","class":"attachment"}}},{"external_id":null,"subject":"Rising
68
- Stars May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T01:23:54Z","updated_at":"2013-05-11T01:23:54Z","received_at":"2013-05-11T01:23:54Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3025","class":"case"},"message":{"href":"/api/v2/cases/3025/message","class":"email"},"customer":{"href":"/api/v2/customers/85623855","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3025/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3025/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3025/attachments","class":"attachment"}}},{"external_id":null,"subject":"kjhj","priority":5,"locked_until":null,"description":null,"status":"open","type":"phone","labels":[],"language":"de","active_at":null,"created_at":"2013-05-11T01:41:04Z","updated_at":"2013-05-11T01:41:05Z","received_at":"2013-05-11T01:41:05Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3026","class":"case"},"message":{"href":"/api/v2/cases/3026/message","class":"phone"},"customer":{"href":"/api/v2/customers/37823480","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3026/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3026/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3026/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
69
- Uptown] New Package Notification","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T02:14:38Z","updated_at":"2013-05-11T02:14:39Z","received_at":"2013-05-11T02:14:38Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3027","class":"case"},"message":{"href":"/api/v2/cases/3027/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3027/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3027/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3027/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
70
- Weekly Financial Summary from Mint.com - 05/10/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T02:25:47Z","updated_at":"2013-05-11T02:25:48Z","received_at":"2013-05-11T02:25:48Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3028","class":"case"},"message":{"href":"/api/v2/cases/3028/message","class":"email"},"customer":{"href":"/api/v2/customers/85630608","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3028/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3028/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3028/attachments","class":"attachment"}}},{"external_id":null,"subject":"St\u00e4dtehighlights
71
- z.B. Hamburg mit Flug ab 299,- \u20ac","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T08:16:41Z","updated_at":"2013-05-11T08:16:41Z","received_at":"2013-05-11T08:16:41Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3029","class":"case"},"message":{"href":"/api/v2/cases/3029/message","class":"email"},"customer":{"href":"/api/v2/customers/85666173","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3029/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3029/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3029/attachments","class":"attachment"}}},{"external_id":null,"subject":"RingDNA
72
- releases mobile call tracking app to ''make sales reps smarter''","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T09:45:50Z","updated_at":"2013-05-11T09:45:50Z","received_at":"2013-05-11T09:45:50Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3030","class":"case"},"message":{"href":"/api/v2/cases/3030/message","class":"email"},"customer":{"href":"/api/v2/customers/85674329","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3030/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3030/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3030/attachments","class":"attachment"}}},{"external_id":null,"subject":"Get
73
- credits for trying out our new Snap Your Stay feature","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T10:06:36Z","updated_at":"2013-05-11T10:06:36Z","received_at":"2013-05-11T10:06:36Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3031","class":"case"},"message":{"href":"/api/v2/cases/3031/message","class":"email"},"customer":{"href":"/api/v2/customers/85676376","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3031/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3031/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3031/attachments","class":"attachment"}}},{"external_id":null,"subject":"Thomas,
74
- stay in touch with me on LinkedIn","priority":4,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"en","active_at":"2013-05-13T16:49:33Z","created_at":"2013-05-11T11:07:46Z","updated_at":"2013-05-13T16:49:34Z","received_at":"2013-05-11T11:07:46Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3032","class":"case"},"message":{"href":"/api/v2/cases/3032/message","class":"email"},"customer":{"href":"/api/v2/customers/85682378","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3032/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3032/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3032/attachments","class":"attachment"}}},{"external_id":null,"subject":"Neuigkeiten
75
- f\u00fcr Dich bei meinVZ.","priority":4,"locked_until":null,"description":"","status":"resolved","type":"email","labels":[],"language":"en","active_at":"2013-08-07T19:22:19Z","created_at":"2013-05-11T11:15:29Z","updated_at":"2013-08-07T19:23:03Z","received_at":"2013-05-11T11:15:29Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3033","class":"case"},"message":{"href":"/api/v2/cases/3033/message","class":"email"},"customer":{"href":"/api/v2/customers/85682944","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3033/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3033/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3033/attachments","class":"attachment"}}},{"external_id":null,"subject":"How
76
- many Lead Status values do you have in your org? If recordtypes are used,
77
- answer with the average. Feel free to comment on what they are. Thanks.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T12:53:09Z","updated_at":"2013-05-11T12:53:10Z","received_at":"2013-05-11T12:53:09Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3034","class":"case"},"message":{"href":"/api/v2/cases/3034/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3034/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3034/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3034/attachments","class":"attachment"}}},{"external_id":null,"subject":"Hydrocolonic
78
- Therapy","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:09:43Z","updated_at":"2013-05-11T13:09:43Z","received_at":"2013-05-11T13:09:43Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3035","class":"case"},"message":{"href":"/api/v2/cases/3035/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3035/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3035/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3035/attachments","class":"attachment"}}},{"external_id":null,"subject":"Boot
79
- Camp","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:09:44Z","updated_at":"2013-05-11T13:09:44Z","received_at":"2013-05-11T13:09:44Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3036","class":"case"},"message":{"href":"/api/v2/cases/3036/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3036/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3036/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3036/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
80
- Catch-Up - Sat, 11 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T13:58:58Z","updated_at":"2013-05-11T13:58:58Z","received_at":"2013-05-11T13:58:58Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3037","class":"case"},"message":{"href":"/api/v2/cases/3037/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3037/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3037/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3037/attachments","class":"attachment"}}},{"external_id":null,"subject":"Retro
81
- kitchenware, bird-themed tableware, floor lamps, rugs by designers we love,
82
- tables & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T15:04:49Z","updated_at":"2013-05-11T15:04:49Z","received_at":"2013-05-11T15:04:49Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3038","class":"case"},"message":{"href":"/api/v2/cases/3038/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3038/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3038/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3038/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
83
- Weekly Inspiration from Pinterest","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T15:04:50Z","updated_at":"2013-05-11T15:04:50Z","received_at":"2013-05-11T15:04:50Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3039","class":"case"},"message":{"href":"/api/v2/cases/3039/message","class":"email"},"customer":{"href":"/api/v2/customers/85711509","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3039/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3039/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3039/attachments","class":"attachment"}}},{"external_id":null,"subject":"Ferrari
84
- or Lamborghini Drive","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T15:11:06Z","updated_at":"2013-05-11T15:11:06Z","received_at":"2013-05-11T15:11:06Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3040","class":"case"},"message":{"href":"/api/v2/cases/3040/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3040/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3040/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3040/attachments","class":"attachment"}}},{"external_id":null,"subject":"Special
85
- Announcement: Pageonce is now Check!","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T15:17:19Z","updated_at":"2013-05-11T15:17:19Z","received_at":"2013-05-11T15:17:19Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3041","class":"case"},"message":{"href":"/api/v2/cases/3041/message","class":"email"},"customer":{"href":"/api/v2/customers/85712890","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3041/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3041/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3041/attachments","class":"attachment"}}},{"external_id":null,"subject":"New
86
- Arrivals: Warm-Weather Gear, Props for Your Pad & More | Need It Now: Beans
87
- & Bones | Most-Wanted Watches | Graphic Hip-Hop Tees | Happy Socks Gift Boxes
88
- & More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T16:49:22Z","updated_at":"2013-05-11T16:49:22Z","received_at":"2013-05-11T16:49:22Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3042","class":"case"},"message":{"href":"/api/v2/cases/3042/message","class":"email"},"customer":{"href":"/api/v2/customers/85726596","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3042/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3042/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3042/attachments","class":"attachment"}}},{"external_id":null,"subject":"Important
89
- Account Notice","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T17:00:32Z","updated_at":"2013-05-11T17:00:32Z","received_at":"2013-05-11T17:00:32Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3043","class":"case"},"message":{"href":"/api/v2/cases/3043/message","class":"email"},"customer":{"href":"/api/v2/customers/85728040","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3043/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3043/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3043/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mother''s
90
- Day love from Will Ferrell & Adam Sandler and SNL''s Best Mom Moments","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T20:02:14Z","updated_at":"2013-05-11T20:02:15Z","received_at":"2013-05-11T20:02:14Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3047","class":"case"},"message":{"href":"/api/v2/cases/3047/message","class":"email"},"customer":{"href":"/api/v2/customers/85752345","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3047/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3047/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3047/attachments","class":"attachment"}}},{"external_id":null,"subject":"Your
91
- week in the cloud 5th May - 12th May","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T22:35:58Z","updated_at":"2013-05-11T22:35:58Z","received_at":"2013-05-11T22:35:58Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3048","class":"case"},"message":{"href":"/api/v2/cases/3048/message","class":"email"},"customer":{"href":"/api/v2/customers/85771500","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3048/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3048/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3048/attachments","class":"attachment"}}},{"external_id":null,"subject":"Account
92
- Alert: Your Account Snapshot","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T23:16:25Z","updated_at":"2013-05-11T23:16:25Z","received_at":"2013-05-11T23:16:25Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3049","class":"case"},"message":{"href":"/api/v2/cases/3049/message","class":"email"},"customer":{"href":"/api/v2/customers/85776070","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3049/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3049/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3049/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bibi
93
- Scheuchl, Bethany Herold and 4 others have birthdays this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-11T23:41:09Z","updated_at":"2013-05-11T23:41:09Z","received_at":"2013-05-11T23:41:09Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3050","class":"case"},"message":{"href":"/api/v2/cases/3050/message","class":"email"},"customer":{"href":"/api/v2/customers/85779426","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3050/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3050/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3050/attachments","class":"attachment"}}},{"external_id":null,"subject":"LinkedPHPers
94
- Announcement - Posting JOBS and PROMOTIONS on the LinkedPHPers","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T00:01:51Z","updated_at":"2013-05-12T00:01:51Z","received_at":"2013-05-12T00:01:51Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3051","class":"case"},"message":{"href":"/api/v2/cases/3051/message","class":"email"},"customer":{"href":"/api/v2/customers/85781990","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3051/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3051/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3051/attachments","class":"attachment"}}},{"external_id":null,"subject":"[The
95
- Uptown] Daily Digest for 05/11/2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T00:50:58Z","updated_at":"2013-05-12T00:50:58Z","received_at":"2013-05-12T00:50:58Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3052","class":"case"},"message":{"href":"/api/v2/cases/3052/message","class":"email"},"customer":{"href":"/api/v2/customers/85620183","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3052/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3052/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3052/attachments","class":"attachment"}}},{"external_id":null,"subject":"10+
96
- new jobs found for you this week","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T03:26:01Z","updated_at":"2013-05-12T03:26:01Z","received_at":"2013-05-12T03:26:01Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3054","class":"case"},"message":{"href":"/api/v2/cases/3054/message","class":"email"},"customer":{"href":"/api/v2/customers/85807851","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3054/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3054/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3054/attachments","class":"attachment"}}},{"external_id":null,"subject":"Men''s
97
- Classic Clothes | Nautica, Izod &More","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T08:05:00Z","updated_at":"2013-05-12T08:05:01Z","received_at":"2013-05-12T08:05:01Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3055","class":"case"},"message":{"href":"/api/v2/cases/3055/message","class":"email"},"customer":{"href":"/api/v2/customers/85838535","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3055/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3055/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3055/attachments","class":"attachment"}}},{"external_id":null,"subject":"Reminder:
98
- Make a deposit today","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T08:30:23Z","updated_at":"2013-05-12T08:30:23Z","received_at":"2013-05-12T08:30:23Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3056","class":"case"},"message":{"href":"/api/v2/cases/3056/message","class":"email"},"customer":{"href":"/api/v2/customers/85840817","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3056/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3056/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3056/attachments","class":"attachment"}}},{"external_id":null,"subject":"I
99
- need a developer for a couple of hours work. I need to have a Apex trigger
100
- created to trigger a WSDL and get the data retrieved via the WSDL into SF.","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T11:54:57Z","updated_at":"2013-05-12T11:54:57Z","received_at":"2013-05-12T11:54:57Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3057","class":"case"},"message":{"href":"/api/v2/cases/3057/message","class":"email"},"customer":{"href":"/api/v2/customers/85693711","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3057/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3057/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3057/attachments","class":"attachment"}}},{"external_id":null,"subject":"Bible
101
- Plans You Can Finish this Week, Plus New James MacDonald Plans","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T13:01:00Z","updated_at":"2013-05-12T13:01:00Z","received_at":"2013-05-12T13:01:00Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3058","class":"case"},"message":{"href":"/api/v2/cases/3058/message","class":"email"},"customer":{"href":"/api/v2/customers/85868602","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3058/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3058/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3058/attachments","class":"attachment"}}},{"external_id":null,"subject":"50%
102
- Off Cafe Lizzi","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T13:14:24Z","updated_at":"2013-05-12T13:14:24Z","received_at":"2013-05-12T13:14:24Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3059","class":"case"},"message":{"href":"/api/v2/cases/3059/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3059/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3059/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3059/attachments","class":"attachment"}}},{"external_id":null,"subject":"Celebrate
103
- Mother''s Day with $5 Off Almost All Purchases + 1 or 3 Nights in Palos Verdes
104
- for 2, 4, or 6","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T13:14:25Z","updated_at":"2013-05-12T13:14:25Z","received_at":"2013-05-12T13:14:25Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3060","class":"case"},"message":{"href":"/api/v2/cases/3060/message","class":"email"},"customer":{"href":"/api/v2/customers/85696350","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3060/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3060/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3060/attachments","class":"attachment"}}},{"external_id":null,"subject":"Daily
105
- Catch-Up - Sun, 12 May 2013","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T14:02:16Z","updated_at":"2013-05-12T14:02:16Z","received_at":"2013-05-12T14:02:16Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3061","class":"case"},"message":{"href":"/api/v2/cases/3061/message","class":"email"},"customer":{"href":"/api/v2/customers/85702560","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3061/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3061/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3061/attachments","class":"attachment"}}},{"external_id":null,"subject":"Living
106
- room furniture, elegant jewelry, rugs for every budget, Downstairs clearance
107
- items & more","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T15:03:22Z","updated_at":"2013-05-12T15:03:22Z","received_at":"2013-05-12T15:03:22Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3062","class":"case"},"message":{"href":"/api/v2/cases/3062/message","class":"email"},"customer":{"href":"/api/v2/customers/85711506","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3062/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3062/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3062/attachments","class":"attachment"}}},{"external_id":null,"subject":"Mexican
108
- Food","priority":4,"locked_until":null,"description":null,"status":"new","type":"email","labels":[],"language":"en","active_at":null,"created_at":"2013-05-12T15:10:11Z","updated_at":"2013-05-12T15:10:11Z","received_at":"2013-05-12T15:10:11Z","custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3063","class":"case"},"message":{"href":"/api/v2/cases/3063/message","class":"email"},"customer":{"href":"/api/v2/customers/85712173","class":"customer"},"assigned_user":null,"assigned_group":{"href":"/api/v2/groups/171213","class":"group"},"locked_by":null,"replies":{"href":"/api/v2/cases/3063/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3063/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3063/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
109
- customer create","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:43Z","created_at":"2013-05-13T18:12:07Z","updated_at":"2013-05-13T18:12:07Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3064","class":"case"},"message":{"href":"/api/v2/cases/3064/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3064/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3064/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3064/attachments","class":"attachment"}}},{"external_id":null,"subject":"Testing
110
- the Tank again","priority":5,"locked_until":null,"description":null,"status":"open","type":"email","labels":[],"language":"de","active_at":"2013-05-13T19:20:59Z","created_at":"2013-05-13T18:13:39Z","updated_at":"2013-05-13T18:13:39Z","received_at":null,"custom_fields":{"my_new_custom_field":null,"my_new_number_field":null,"my_new_date_field":null,"my_new_boolean_field":null,"my_new_list_field":null},"_links":{"self":{"href":"/api/v2/cases/3065","class":"case"},"message":{"href":"/api/v2/cases/3065/message","class":"email"},"customer":{"href":"/api/v2/customers/86101780","class":"customer"},"assigned_user":null,"assigned_group":null,"locked_by":null,"replies":{"href":"/api/v2/cases/3065/replies","class":"reply"},"notes":{"href":"/api/v2/cases/3065/notes","class":"note"},"attachments":{"href":"/api/v2/cases/3065/attachments","class":"attachment"}}}]}}'
111
- http_version:
112
- recorded_at: Mon, 19 Aug 2013 23:51:32 GMT
113
- recorded_with: VCR 2.5.0