freckle_io 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +5 -0
  3. data/.env.sample +3 -0
  4. data/.env.test.sample +3 -0
  5. data/.gitignore +5 -0
  6. data/.rubocop.yml +67 -0
  7. data/.travis.yml +20 -0
  8. data/Gemfile +8 -0
  9. data/README.md +95 -0
  10. data/Rakefile +5 -0
  11. data/freckle-io.gemspec +37 -0
  12. data/icon.svg +192 -0
  13. data/lib/freckle_io/authentication.rb +26 -0
  14. data/lib/freckle_io/client/entries.rb +53 -0
  15. data/lib/freckle_io/client/project_groups.rb +36 -0
  16. data/lib/freckle_io/client/projects.rb +42 -0
  17. data/lib/freckle_io/client/tags.rb +33 -0
  18. data/lib/freckle_io/client/users.rb +35 -0
  19. data/lib/freckle_io/configuration.rb +48 -0
  20. data/lib/freckle_io/connection.rb +80 -0
  21. data/lib/freckle_io/errors/configuration.rb +5 -0
  22. data/lib/freckle_io/errors/connection.rb +9 -0
  23. data/lib/freckle_io/errors/params.rb +8 -0
  24. data/lib/freckle_io/paginator.rb +70 -0
  25. data/lib/freckle_io/params.rb +46 -0
  26. data/lib/freckle_io/request/multiple_pages.rb +62 -0
  27. data/lib/freckle_io/request/single_page.rb +73 -0
  28. data/lib/freckle_io/validator/entry.rb +57 -0
  29. data/lib/freckle_io/validator/project.rb +46 -0
  30. data/lib/freckle_io/validator/project_group.rb +30 -0
  31. data/lib/freckle_io/validator/restricted_hash.rb +11 -0
  32. data/lib/freckle_io/validator/tag.rb +30 -0
  33. data/lib/freckle_io/validator/user.rb +43 -0
  34. data/lib/freckle_io/validator/validation.yml +14 -0
  35. data/lib/freckle_io.rb +35 -0
  36. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Entries/with_configuration/_all/result_must_be_a_Request_MultiplePages.yml +48 -0
  37. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Entries/with_configuration/_all/returns_a_entry_for_each_response.yml +48 -0
  38. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Entries/with_configuration/with_valid_params/params_should_be_valid.yml +48 -0
  39. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Entries/with_configuration/with_validator/call_entry_s_validator.yml +48 -0
  40. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_ProjectGroups/with_configuration/_all/result_must_be_a_Request_MultiplePages.yml +99 -0
  41. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_ProjectGroups/with_configuration/_all/returns_a_project_group_for_each_response.yml +99 -0
  42. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_ProjectGroups/with_configuration/with_valid_params/params_should_be_valid.yml +48 -0
  43. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_ProjectGroups/with_configuration/with_validator/call_project_group_s_validator.yml +99 -0
  44. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/_all/result_must_be_a_Request_MultiplePages.yml +491 -0
  45. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/_all/returns_a_project_for_each_response.yml +491 -0
  46. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/_show/get_a_spacific_project.yml +48 -0
  47. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/_show/raw_links_should_be_a_empty_array.yml +48 -0
  48. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/with_valid_params/params_should_be_valid.yml +48 -0
  49. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Projects/with_configuration/with_validator/call_project_s_validator.yml +491 -0
  50. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Tags/with_configuration/_all/result_must_be_a_Request_MultiplePages.yml +48 -0
  51. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Tags/with_configuration/_all/returns_a_tag_for_each_response.yml +48 -0
  52. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Tags/with_configuration/with_valid_params/params_should_be_valid.yml +48 -0
  53. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Tags/with_configuration/with_validator/call_tag_s_validator.yml +48 -0
  54. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/_all/result_must_be_a_Request_MultiplePages.yml +99 -0
  55. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/_all/returns_a_user_for_each_response.yml +99 -0
  56. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/_show/get_a_spacific_user.yml +48 -0
  57. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/_show/raw_links_should_be_a_empty_array.yml +48 -0
  58. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/with_valid_params/params_should_be_valid.yml +48 -0
  59. data/spec/fixtures/vcr_cassettes/FreckleIO_Client_Users/with_configuration/with_validator/call_user_s_validator.yml +99 -0
  60. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_a_valid_response/must_be_a_json_format.yml +51 -0
  61. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_freckle_token_authentication/set_X-FreckleToken.yml +51 -0
  62. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_header/set_user_agent.yml +51 -0
  63. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_invalid_url/raises_a_resource_not_found_error_for_invalid_resource.yml +40 -0
  64. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_page_param/response_must_be_success.yml +51 -0
  65. data/spec/fixtures/vcr_cassettes/FreckleIO_Connection/with_default_configuration/with_per_page_param/response_must_have_per_page_elements.yml +51 -0
  66. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_MultiplePages/with_configuration/_get/returns_an_array_of_faraday_response.yml +99 -0
  67. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_MultiplePages/with_configuration/_get/returns_freckle_default_per_page_elements.yml +99 -0
  68. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_MultiplePages/with_per_page/_get/return_per_page_number_elements.yml +148 -0
  69. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_first/next_page_should_be_a_SinglePage.yml +99 -0
  70. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_first/prev_page_should_be_nil.yml +51 -0
  71. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_first/when_get_last_page_from_the_first_page/next_should_be_nil.yml +99 -0
  72. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_get/returns_correct_raw_links_for_the_first_page.yml +51 -0
  73. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_last/next_page_should_be_nil.yml +99 -0
  74. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_last/returns_correct_raw_links_for_the_last_page.yml +99 -0
  75. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_last/when_get_prev_page_from_the_last_page/prev_should_be_nil.yml +147 -0
  76. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_next/previous_page_is_a_SinglePage.yml +147 -0
  77. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_next/previous_page_should_be_not_nil.yml +147 -0
  78. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_prev/next_page_is_a_SinglePage.yml +195 -0
  79. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_prev/when_get_prev_page_from_the_first_page/prev_should_be_nil.yml +147 -0
  80. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_total_page/with_first_page/returns_the_range_of_pages.yml +51 -0
  81. data/spec/fixtures/vcr_cassettes/FreckleIO_Request_SinglePage/with_configuration/_total_page/with_next_page/returns_an_empty_array.yml +99 -0
  82. data/spec/freckle_io/client/entries_spec.rb +359 -0
  83. data/spec/freckle_io/client/project_groups_spec.rb +132 -0
  84. data/spec/freckle_io/client/projects_spec.rb +183 -0
  85. data/spec/freckle_io/client/tags_spec.rb +132 -0
  86. data/spec/freckle_io/client/users_spec.rb +150 -0
  87. data/spec/freckle_io/configuration_spec.rb +70 -0
  88. data/spec/freckle_io/connection_spec.rb +116 -0
  89. data/spec/freckle_io/paginator_spec.rb +105 -0
  90. data/spec/freckle_io/params_spec.rb +15 -0
  91. data/spec/freckle_io/request/multiple_pages_spec.rb +39 -0
  92. data/spec/freckle_io/request/single_page_spec.rb +107 -0
  93. data/spec/spec_helper.rb +69 -0
  94. data/spec/support/anonymize/entries.rb +60 -0
  95. data/spec/support/anonymize/project_groups.rb +55 -0
  96. data/spec/support/anonymize/projects.rb +60 -0
  97. data/spec/support/anonymize/tags.rb +47 -0
  98. data/spec/support/anonymize/users.rb +59 -0
  99. data/spec/support/anonymize_interaction.rb +60 -0
  100. data/spec/support/entry_info.rb +19 -0
  101. data/spec/support/project_group_info.rb +13 -0
  102. data/spec/support/project_info.rb +26 -0
  103. data/spec/support/shared/links/raw_links.rb +13 -0
  104. data/spec/support/tag_info.rb +11 -0
  105. data/spec/support/user_info.rb +21 -0
  106. metadata +382 -0
@@ -0,0 +1,99 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.letsfreckle.com/v2/project_groups
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - MyFreckleBot/1.0
12
+ X-Freckletoken:
13
+ - "<TOKEN>"
14
+ Expect:
15
+ - ''
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - nginx
23
+ Date:
24
+ - Sat, 15 Dec 2018 09:34:58 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Content-Length:
28
+ - '39847'
29
+ Connection:
30
+ - keep-alive
31
+ Status:
32
+ - 200 OK
33
+ Cache-Control:
34
+ - private, max-age=0, must-revalidate
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ Link:
38
+ - <https://api.letsfreckle.com/v2/project_groups?page=2>; rel="last", <https://api.letsfreckle.com/v2/project_groups?page=2>;
39
+ rel="next"
40
+ X-Runtime:
41
+ - '196'
42
+ Vary:
43
+ - Origin
44
+ Strict-Transport-Security:
45
+ - max-age=31536000; includeSubdomains
46
+ body:
47
+ encoding: ASCII-8BIT
48
+ string: '[{"id":0,"name":"name_106","created_at":"2018-07-19T10:06:17Z","updated_at":"2018-07-19T10:06:17Z","projects":[{"id":1,"name":"name_26","billing_increment":5,"enabled":true,"billable":true,"color":"#feff96","url":"http://foo.com/0"},{"id":2,"name":"name_52","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/1"}],"url":"http://foo.com/2","entries_url":"http://foo.com/2/entries","projects_url":"http://foo.com/2/projects","add_projects_url":"http://foo.com/2/add_projects","remove_projects_url":"http://foo.com/2/remove_projects","remove_all_projects_url":"http://foo.com/2/remove_all_projects"},{"id":3,"name":"name_107","created_at":"2018-07-26T15:18:39Z","updated_at":"2018-07-26T15:18:39Z","projects":[{"id":4,"name":"name_11","billing_increment":5,"enabled":true,"billable":true,"color":"#f1f353","url":"http://foo.com/3"}],"url":"http://foo.com/4","entries_url":"http://foo.com/4/entries","projects_url":"http://foo.com/4/projects","add_projects_url":"http://foo.com/4/add_projects","remove_projects_url":"http://foo.com/4/remove_projects","remove_all_projects_url":"http://foo.com/4/remove_all_projects"},{"id":5,"name":"name_53","created_at":"2018-12-14T08:50:56Z","updated_at":"2018-12-14T08:50:56Z","projects":[{"id":6,"name":"name_12","billing_increment":5,"enabled":true,"billable":true,"color":"#ea6300","url":"http://foo.com/5"},{"id":7,"name":"name_13","billing_increment":5,"enabled":true,"billable":true,"color":"#f1f353","url":"http://foo.com/6"}],"url":"http://foo.com/7","entries_url":"http://foo.com/7/entries","projects_url":"http://foo.com/7/projects","add_projects_url":"http://foo.com/7/add_projects","remove_projects_url":"http://foo.com/7/remove_projects","remove_all_projects_url":"http://foo.com/7/remove_all_projects"},{"id":8,"name":"name_54","created_at":"2016-04-20T09:41:34Z","updated_at":"2016-04-20T09:41:34Z","projects":[{"id":9,"name":"name_108","billing_increment":5,"enabled":true,"billable":false,"color":"#ff9898","url":"http://foo.com/8"},{"id":10,"name":"name_55","billing_increment":5,"enabled":false,"billable":false,"color":"#d3d52b","url":"http://foo.com/00"},{"id":11,"name":"name_109","billing_increment":5,"enabled":false,"billable":true,"color":"#5b7a11","url":"http://foo.com/01"},{"id":12,"name":"name_110","billing_increment":5,"enabled":false,"billable":false,"color":"#ea6300","url":"http://foo.com/02"},{"id":13,"name":"name_111","billing_increment":5,"enabled":false,"billable":false,"color":"#b92c6c","url":"http://foo.com/03"}],"url":"http://foo.com/13","entries_url":"http://foo.com/13/entries","projects_url":"http://foo.com/13/projects","add_projects_url":"http://foo.com/13/add_projects","remove_projects_url":"http://foo.com/13/remove_projects","remove_all_projects_url":"http://foo.com/13/remove_all_projects"},{"id":14,"name":"name_112","created_at":"2013-12-18T09:19:57Z","updated_at":"2013-12-18T09:19:57Z","projects":[{"id":15,"name":"name_56","billing_increment":5,"enabled":true,"billable":true,"color":"#8fe8f8","url":"http://foo.com/05"},{"id":16,"name":"name_107","billing_increment":5,"enabled":true,"billable":true,"color":"#ff9898","url":"http://foo.com/06"},{"id":17,"name":"name_112","billing_increment":5,"enabled":true,"billable":false,"color":"#55c9ef","url":"http://foo.com/07"},{"id":18,"name":"name_57","billing_increment":5,"enabled":true,"billable":false,"color":"#0f6953","url":"http://foo.com/08"},{"id":19,"name":"name_58","billing_increment":5,"enabled":true,"billable":true,"color":"#efc255","url":"http://foo.com/09"},{"id":20,"name":"name_113","billing_increment":5,"enabled":false,"billable":false,"color":"#5b7a11","url":"http://foo.com/10"},{"id":21,"name":"name_59","billing_increment":5,"enabled":true,"billable":false,"color":"#3195a7","url":"http://foo.com/11"},{"id":22,"name":"name_114","billing_increment":5,"enabled":true,"billable":false,"color":"#ef9655","url":"http://foo.com/12"},{"id":23,"name":"name_115","billing_increment":5,"enabled":false,"billable":true,"color":"#7d4ad1","url":"http://foo.com/13"},{"id":24,"name":"name_60","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/14"},{"id":25,"name":"name_27","billing_increment":5,"enabled":true,"billable":false,"color":"#ef5555","url":"http://foo.com/15"},{"id":26,"name":"name_61","billing_increment":5,"enabled":true,"billable":false,"color":"#ef63a2","url":"http://foo.com/16"},{"id":27,"name":"name_62","billing_increment":5,"enabled":true,"billable":false,"color":"#ef9655","url":"http://foo.com/17"},{"id":28,"name":"name_63","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/18"},{"id":29,"name":"name_64","billing_increment":5,"enabled":true,"billable":false,"color":"#bd4242","url":"http://foo.com/19"},{"id":30,"name":"name_116","billing_increment":5,"enabled":true,"billable":false,"color":"#ef5555","url":"http://foo.com/29"},{"id":31,"name":"name_65","billing_increment":5,"enabled":true,"billable":false,"color":"#b92c6c","url":"http://foo.com/30"},{"id":32,"name":"name_117","billing_increment":5,"enabled":true,"billable":false,"color":"#ef9655","url":"http://foo.com/31"},{"id":33,"name":"name_66","billing_increment":5,"enabled":true,"billable":false,"color":"#13a480","url":"http://foo.com/32"},{"id":34,"name":"name_67","billing_increment":5,"enabled":true,"billable":false,"color":"#ef63a2","url":"http://foo.com/33"},{"id":35,"name":"name_14","billing_increment":5,"enabled":true,"billable":true,"color":"#13a480","url":"http://foo.com/34"},{"id":36,"name":"name_118","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/35"},{"id":37,"name":"name_119","billing_increment":5,"enabled":true,"billable":false,"color":"#ef5555","url":"http://foo.com/36"},{"id":38,"name":"name_68","billing_increment":5,"enabled":false,"billable":false,"color":"#ff9898","url":"http://foo.com/37"},{"id":39,"name":"name_120","billing_increment":5,"enabled":false,"billable":false,"color":"#55c9ef","url":"http://foo.com/38"},{"id":40,"name":"name_69","billing_increment":5,"enabled":true,"billable":false,"color":"#ef63a2","url":"http://foo.com/30"}],"url":"http://foo.com/40","entries_url":"http://foo.com/40/entries","projects_url":"http://foo.com/40/projects","add_projects_url":"http://foo.com/40/add_projects","remove_projects_url":"http://foo.com/40/remove_projects","remove_all_projects_url":"http://foo.com/40/remove_all_projects"},{"id":41,"name":"name_121","created_at":"2013-12-18T09:32:38Z","updated_at":"2013-12-18T09:32:38Z","projects":[{"id":42,"name":"name_70","billing_increment":5,"enabled":false,"billable":true,"color":"#b92c6c","url":"http://foo.com/32"}],"url":"http://foo.com/42","entries_url":"http://foo.com/42/entries","projects_url":"http://foo.com/42/projects","add_projects_url":"http://foo.com/42/add_projects","remove_projects_url":"http://foo.com/42/remove_projects","remove_all_projects_url":"http://foo.com/42/remove_all_projects"},{"id":43,"name":"name_28","created_at":"2016-04-20T09:42:47Z","updated_at":"2016-04-20T09:42:47Z","projects":[{"id":44,"name":"name_71","billing_increment":5,"enabled":true,"billable":false,"color":"#efc255","url":"http://foo.com/34"},{"id":45,"name":"name_72","billing_increment":5,"enabled":true,"billable":false,"color":"#ef5555","url":"http://foo.com/35"},{"id":46,"name":"name_5","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/36"},{"id":47,"name":"name_73","billing_increment":5,"enabled":true,"billable":false,"color":"#7d4ad1","url":"http://foo.com/37"},{"id":48,"name":"name_122","billing_increment":5,"enabled":true,"billable":false,"color":"#7d4ad1","url":"http://foo.com/38"},{"id":49,"name":"name_123","billing_increment":5,"enabled":false,"billable":false,"color":"#ea6300","url":"http://foo.com/39"},{"id":50,"name":"name_74","billing_increment":5,"enabled":true,"billable":false,"color":"#ef63a2","url":"http://foo.com/49"}],"url":"http://foo.com/50","entries_url":"http://foo.com/50/entries","projects_url":"http://foo.com/50/projects","add_projects_url":"http://foo.com/50/add_projects","remove_projects_url":"http://foo.com/50/remove_projects","remove_all_projects_url":"http://foo.com/50/remove_all_projects"},{"id":51,"name":"name_124","created_at":"2013-11-27T15:36:18Z","updated_at":"2013-11-27T15:36:18Z","projects":[],"url":"http://foo.com/71","entries_url":"http://foo.com/71/entries","projects_url":"http://foo.com/71/projects","add_projects_url":"http://foo.com/71/add_projects","remove_projects_url":"http://foo.com/71/remove_projects","remove_all_projects_url":"http://foo.com/71/remove_all_projects"},{"id":52,"name":"name_75","created_at":"2018-01-10T08:56:06Z","updated_at":"2018-01-10T08:56:06Z","projects":[{"id":53,"name":"name_125","billing_increment":5,"enabled":true,"billable":true,"color":"#bf4e40","url":"http://foo.com/52"},{"id":54,"name":"name_126","billing_increment":5,"enabled":true,"billable":true,"color":"#feff96","url":"http://foo.com/53"}],"url":"http://foo.com/72","entries_url":"http://foo.com/72/entries","projects_url":"http://foo.com/72/projects","add_projects_url":"http://foo.com/72/add_projects","remove_projects_url":"http://foo.com/72/remove_projects","remove_all_projects_url":"http://foo.com/72/remove_all_projects"},{"id":55,"name":"name_127","created_at":"2014-01-21T11:40:16Z","updated_at":"2014-01-21T11:40:16Z","projects":[{"id":56,"name":"name_128","billing_increment":5,"enabled":false,"billable":true,"color":"#bce162","url":"http://foo.com/55"},{"id":57,"name":"name_76","billing_increment":5,"enabled":false,"billable":true,"color":"#ea6300","url":"http://foo.com/56"},{"id":58,"name":"name_29","billing_increment":5,"enabled":false,"billable":true,"color":"#ef5555","url":"http://foo.com/57"},{"id":59,"name":"name_30","billing_increment":1,"enabled":false,"billable":true,"color":"#70e2c6","url":"http://foo.com/58"},{"id":60,"name":"name_129","billing_increment":5,"enabled":false,"billable":true,"color":"#3195a7","url":"http://foo.com/50"}],"url":"http://foo.com/75","entries_url":"http://foo.com/75/entries","projects_url":"http://foo.com/75/projects","add_projects_url":"http://foo.com/75/add_projects","remove_projects_url":"http://foo.com/75/remove_projects","remove_all_projects_url":"http://foo.com/75/remove_all_projects"},{"id":61,"name":"name_31","created_at":"2014-02-04T15:12:32Z","updated_at":"2014-02-04T15:12:32Z","projects":[{"id":62,"name":"name_77","billing_increment":5,"enabled":false,"billable":true,"color":"#f6bed7","url":"http://foo.com/52"}],"url":"http://foo.com/62","entries_url":"http://foo.com/62/entries","projects_url":"http://foo.com/62/projects","add_projects_url":"http://foo.com/62/add_projects","remove_projects_url":"http://foo.com/62/remove_projects","remove_all_projects_url":"http://foo.com/62/remove_all_projects"},{"id":63,"name":"name_130","created_at":"2016-01-29T17:10:29Z","updated_at":"2016-01-29T17:10:29Z","projects":[{"id":64,"name":"name_131","billing_increment":5,"enabled":true,"billable":true,"color":"#5b7a11","url":"http://foo.com/54"},{"id":65,"name":"name_132","billing_increment":5,"enabled":true,"billable":true,"color":"#bd4242","url":"http://foo.com/55"},{"id":66,"name":"name_133","billing_increment":5,"enabled":false,"billable":true,"color":"#efc255","url":"http://foo.com/56"},{"id":67,"name":"name_134","billing_increment":5,"enabled":true,"billable":true,"color":"#f6bed7","url":"http://foo.com/57"},{"id":68,"name":"name_78","billing_increment":5,"enabled":false,"billable":true,"color":"#ea6300","url":"http://foo.com/58"},{"id":69,"name":"name_79","billing_increment":5,"enabled":false,"billable":true,"color":"#70e2c6","url":"http://foo.com/59"}],"url":"http://foo.com/69","entries_url":"http://foo.com/69/entries","projects_url":"http://foo.com/69/projects","add_projects_url":"http://foo.com/69/add_projects","remove_projects_url":"http://foo.com/69/remove_projects","remove_all_projects_url":"http://foo.com/69/remove_all_projects"},{"id":70,"name":"name_80","created_at":"2014-07-10T22:45:00Z","updated_at":"2014-07-10T22:45:00Z","projects":[{"id":71,"name":"name_81","billing_increment":5,"enabled":false,"billable":true,"color":"#f1f353","url":"http://foo.com/61"},{"id":72,"name":"name_82","billing_increment":5,"enabled":false,"billable":true,"color":"#bd4242","url":"http://foo.com/62"}],"url":"http://foo.com/72","entries_url":"http://foo.com/72/entries","projects_url":"http://foo.com/72/projects","add_projects_url":"http://foo.com/72/add_projects","remove_projects_url":"http://foo.com/72/remove_projects","remove_all_projects_url":"http://foo.com/72/remove_all_projects"},{"id":73,"name":"name_83","created_at":"2014-07-23T08:12:47Z","updated_at":"2014-07-23T08:12:47Z","projects":[{"id":74,"name":"name_84","billing_increment":5,"enabled":false,"billable":true,"color":"#70e2c6","url":"http://foo.com/64"},{"id":75,"name":"name_135","billing_increment":5,"enabled":false,"billable":true,"color":"#3195a7","url":"http://foo.com/65"}],"url":"http://foo.com/75","entries_url":"http://foo.com/75/entries","projects_url":"http://foo.com/75/projects","add_projects_url":"http://foo.com/75/add_projects","remove_projects_url":"http://foo.com/75/remove_projects","remove_all_projects_url":"http://foo.com/75/remove_all_projects"},{"id":76,"name":"name_136","created_at":"2014-10-17T11:18:05Z","updated_at":"2014-10-17T11:18:05Z","projects":[],"url":"http://foo.com/76","entries_url":"http://foo.com/76/entries","projects_url":"http://foo.com/76/projects","add_projects_url":"http://foo.com/76/add_projects","remove_projects_url":"http://foo.com/76/remove_projects","remove_all_projects_url":"http://foo.com/76/remove_all_projects"},{"id":77,"name":"name_137","created_at":"2015-11-09T18:08:06Z","updated_at":"2015-11-09T18:08:06Z","projects":[{"id":78,"name":"name_85","billing_increment":5,"enabled":false,"billable":true,"color":"#d3d52b","url":"http://foo.com/68"},{"id":79,"name":"name_15","billing_increment":5,"enabled":false,"billable":true,"color":"#f1f353","url":"http://foo.com/69"}],"url":"http://foo.com/79","entries_url":"http://foo.com/79/entries","projects_url":"http://foo.com/79/projects","add_projects_url":"http://foo.com/79/add_projects","remove_projects_url":"http://foo.com/79/remove_projects","remove_all_projects_url":"http://foo.com/79/remove_all_projects"},{"id":80,"name":"name_86","created_at":"2013-11-22T09:56:51Z","updated_at":"2015-11-19T21:27:18Z","projects":[{"id":81,"name":"name_6","billing_increment":5,"enabled":true,"billable":true,"color":"#bce162","url":"http://foo.com/80"},{"id":82,"name":"name_2","billing_increment":5,"enabled":true,"billable":true,"color":"#3195a7","url":"http://foo.com/81"},{"id":83,"name":"name_87","billing_increment":5,"enabled":true,"billable":true,"color":"#5b7a11","url":"http://foo.com/82"},{"id":84,"name":"name_32","billing_increment":5,"enabled":true,"billable":true,"color":"#feff96","url":"http://foo.com/83"},{"id":85,"name":"name_33","billing_increment":1,"enabled":false,"billable":true,"color":"#f6bed7","url":"http://foo.com/84"},{"id":86,"name":"name_34","billing_increment":5,"enabled":true,"billable":true,"color":"#f6bed7","url":"http://foo.com/85"},{"id":87,"name":"name_35","billing_increment":5,"enabled":false,"billable":true,"color":"#70e2c6","url":"http://foo.com/86"},{"id":88,"name":"name_16","billing_increment":5,"enabled":true,"billable":true,"color":"#f6bed7","url":"http://foo.com/87"},{"id":89,"name":"name_7","billing_increment":5,"enabled":true,"billable":true,"color":"#70e2c6","url":"http://foo.com/88"},{"id":90,"name":"name_17","billing_increment":5,"enabled":true,"billable":true,"color":"#ef5555","url":"http://foo.com/80"},{"id":91,"name":"name_88","billing_increment":5,"enabled":true,"billable":true,"color":"#bce162","url":"http://foo.com/81"},{"id":92,"name":"name_3","billing_increment":5,"enabled":true,"billable":true,"color":"#d6c0fb","url":"http://foo.com/82"},{"id":93,"name":"name_36","billing_increment":5,"enabled":true,"billable":true,"color":"#efc255","url":"http://foo.com/83"},{"id":94,"name":"name_8","billing_increment":5,"enabled":true,"billable":false,"color":"#8fe8f8","url":"http://foo.com/84"},{"id":95,"name":"name_37","billing_increment":5,"enabled":false,"billable":true,"color":"#3195a7","url":"http://foo.com/85"},{"id":96,"name":"name_4","billing_increment":5,"enabled":true,"billable":true,"color":"#f1f353","url":"http://foo.com/86"},{"id":97,"name":"name_9","billing_increment":5,"enabled":true,"billable":true,"color":"#ef9655","url":"http://foo.com/87"},{"id":98,"name":"name_0","billing_increment":5,"enabled":false,"billable":true,"color":"#b92c6c","url":"http://foo.com/88"},{"id":99,"name":"name_10","billing_increment":5,"enabled":false,"billable":true,"color":"#ea6300","url":"http://foo.com/89"},{"id":100,"name":"name_18","billing_increment":5,"enabled":false,"billable":true,"color":"#efc255","url":"http://foo.com/000"},{"id":101,"name":"name_19","billing_increment":5,"enabled":false,"billable":true,"color":"#7d4ad1","url":"http://foo.com/001"},{"id":102,"name":"name_38","billing_increment":5,"enabled":false,"billable":true,"color":"#ff9898","url":"http://foo.com/002"},{"id":103,"name":"name_39","billing_increment":5,"enabled":false,"billable":true,"color":"#70e2c6","url":"http://foo.com/003"},{"id":104,"name":"name_40","billing_increment":5,"enabled":false,"billable":true,"color":"#f6bed7","url":"http://foo.com/004"},{"id":105,"name":"name_41","billing_increment":5,"enabled":false,"billable":true,"color":"#feff96","url":"http://foo.com/005"},{"id":106,"name":"name_1","billing_increment":5,"enabled":false,"billable":true,"color":"#ea6300","url":"http://foo.com/006"},{"id":107,"name":"name_20","billing_increment":5,"enabled":false,"billable":true,"color":"#bce162","url":"http://foo.com/007"},{"id":108,"name":"name_21","billing_increment":5,"enabled":false,"billable":true,"color":"#d6c0fb","url":"http://foo.com/008"},{"id":109,"name":"name_42","billing_increment":5,"enabled":false,"billable":true,"color":"#bd4242","url":"http://foo.com/009"},{"id":110,"name":"name_43","billing_increment":5,"enabled":false,"billable":true,"color":"#efc255","url":"http://foo.com/010"},{"id":111,"name":"name_44","billing_increment":5,"enabled":false,"billable":true,"color":"#f6bed7","url":"http://foo.com/011"}],"url":"http://foo.com/130","entries_url":"http://foo.com/130/entries","projects_url":"http://foo.com/130/projects","add_projects_url":"http://foo.com/130/add_projects","remove_projects_url":"http://foo.com/130/remove_projects","remove_all_projects_url":"http://foo.com/130/remove_all_projects"},{"id":112,"name":"name_138","created_at":"2015-07-10T08:25:13Z","updated_at":"2015-07-10T08:25:13Z","projects":[{"id":113,"name":"name_45","billing_increment":5,"enabled":false,"billable":true,"color":"#ff9898","url":"http://foo.com/013"},{"id":114,"name":"name_22","billing_increment":5,"enabled":true,"billable":true,"color":"#86ac2a","url":"http://foo.com/014"},{"id":115,"name":"name_89","billing_increment":5,"enabled":false,"billable":true,"color":"#13a480","url":"http://foo.com/015"},{"id":116,"name":"name_90","billing_increment":5,"enabled":false,"billable":true,"color":"#13a480","url":"http://foo.com/016"},{"id":117,"name":"name_91","billing_increment":5,"enabled":false,"billable":true,"color":"#3195a7","url":"http://foo.com/017"},{"id":118,"name":"name_139","billing_increment":5,"enabled":false,"billable":true,"color":"#feff96","url":"http://foo.com/018"},{"id":119,"name":"name_92","billing_increment":5,"enabled":true,"billable":true,"color":"#f1f353","url":"http://foo.com/019"}],"url":"http://foo.com/119","entries_url":"http://foo.com/119/entries","projects_url":"http://foo.com/119/projects","add_projects_url":"http://foo.com/119/add_projects","remove_projects_url":"http://foo.com/119/remove_projects","remove_all_projects_url":"http://foo.com/119/remove_all_projects"},{"id":120,"name":"name_46","created_at":"2016-01-08T15:44:01Z","updated_at":"2016-01-08T15:44:01Z","projects":[],"url":"http://foo.com/120","entries_url":"http://foo.com/120/entries","projects_url":"http://foo.com/120/projects","add_projects_url":"http://foo.com/120/add_projects","remove_projects_url":"http://foo.com/120/remove_projects","remove_all_projects_url":"http://foo.com/120/remove_all_projects"},{"id":121,"name":"name_93","created_at":"2015-09-16T09:35:39Z","updated_at":"2015-09-16T09:35:39Z","projects":[{"id":122,"name":"name_94","billing_increment":10,"enabled":false,"billable":true,"color":"#bd4242","url":"http://foo.com/022"},{"id":123,"name":"name_95","billing_increment":10,"enabled":false,"billable":true,"color":"#efc255","url":"http://foo.com/023"}],"url":"http://foo.com/123","entries_url":"http://foo.com/123/entries","projects_url":"http://foo.com/123/projects","add_projects_url":"http://foo.com/123/add_projects","remove_projects_url":"http://foo.com/123/remove_projects","remove_all_projects_url":"http://foo.com/123/remove_all_projects"},{"id":124,"name":"name_140","created_at":"2015-10-30T16:43:11Z","updated_at":"2015-10-30T16:43:11Z","projects":[{"id":125,"name":"name_141","billing_increment":5,"enabled":false,"billable":true,"color":"#ef63a2","url":"http://foo.com/025"}],"url":"http://foo.com/125","entries_url":"http://foo.com/125/entries","projects_url":"http://foo.com/125/projects","add_projects_url":"http://foo.com/125/add_projects","remove_projects_url":"http://foo.com/125/remove_projects","remove_all_projects_url":"http://foo.com/125/remove_all_projects"},{"id":126,"name":"name_96","created_at":"2017-01-19T22:18:32Z","updated_at":"2017-01-19T22:18:32Z","projects":[{"id":127,"name":"name_142","billing_increment":5,"enabled":true,"billable":false,"color":"#f6bed7","url":"http://foo.com/027"},{"id":128,"name":"name_143","billing_increment":5,"enabled":true,"billable":false,"color":"#0f6953","url":"http://foo.com/028"},{"id":129,"name":"name_144","billing_increment":5,"enabled":true,"billable":false,"color":"#0f6953","url":"http://foo.com/029"}],"url":"http://foo.com/129","entries_url":"http://foo.com/129/entries","projects_url":"http://foo.com/129/projects","add_projects_url":"http://foo.com/129/add_projects","remove_projects_url":"http://foo.com/129/remove_projects","remove_all_projects_url":"http://foo.com/129/remove_all_projects"},{"id":130,"name":"name_145","created_at":"2016-09-15T09:34:14Z","updated_at":"2016-09-15T09:34:14Z","projects":[{"id":131,"name":"name_97","billing_increment":5,"enabled":false,"billable":true,"color":"#5b7a11","url":"http://foo.com/031"},{"id":132,"name":"name_47","billing_increment":5,"enabled":false,"billable":true,"color":"#bd4242","url":"http://foo.com/032"}],"url":"http://foo.com/132","entries_url":"http://foo.com/132/entries","projects_url":"http://foo.com/132/projects","add_projects_url":"http://foo.com/132/add_projects","remove_projects_url":"http://foo.com/132/remove_projects","remove_all_projects_url":"http://foo.com/132/remove_all_projects"},{"id":133,"name":"name_98","created_at":"2016-10-25T15:13:55Z","updated_at":"2016-10-25T15:13:55Z","projects":[{"id":134,"name":"name_48","billing_increment":5,"enabled":false,"billable":true,"color":"#8fe8f8","url":"http://foo.com/034"},{"id":135,"name":"name_49","billing_increment":5,"enabled":false,"billable":true,"color":"#86ac2a","url":"http://foo.com/035"},{"id":136,"name":"name_23","billing_increment":5,"enabled":true,"billable":true,"color":"#86ac2a","url":"http://foo.com/036"}],"url":"http://foo.com/136","entries_url":"http://foo.com/136/entries","projects_url":"http://foo.com/136/projects","add_projects_url":"http://foo.com/136/add_projects","remove_projects_url":"http://foo.com/136/remove_projects","remove_all_projects_url":"http://foo.com/136/remove_all_projects"},{"id":137,"name":"name_146","created_at":"2016-12-01T10:34:30Z","updated_at":"2016-12-01T10:34:30Z","projects":[{"id":138,"name":"name_99","billing_increment":5,"enabled":true,"billable":true,"color":"#d3d52b","url":"http://foo.com/038"},{"id":139,"name":"name_100","billing_increment":5,"enabled":false,"billable":true,"color":"#5b7a11","url":"http://foo.com/039"},{"id":140,"name":"name_147","billing_increment":5,"enabled":false,"billable":true,"color":"#7d4ad1","url":"http://foo.com/040"}],"url":"http://foo.com/140","entries_url":"http://foo.com/140/entries","projects_url":"http://foo.com/140/projects","add_projects_url":"http://foo.com/140/add_projects","remove_projects_url":"http://foo.com/140/remove_projects","remove_all_projects_url":"http://foo.com/140/remove_all_projects"},{"id":141,"name":"name_148","created_at":"2013-11-22T10:11:12Z","updated_at":"2017-03-20T15:18:38Z","projects":[{"id":142,"name":"name_101","billing_increment":5,"enabled":false,"billable":true,"color":"#86ac2a","url":"http://foo.com/042"},{"id":143,"name":"name_149","billing_increment":5,"enabled":true,"billable":true,"color":"#d3d52b","url":"http://foo.com/043"},{"id":144,"name":"name_150","billing_increment":5,"enabled":false,"billable":true,"color":"#bd4242","url":"http://foo.com/044"}],"url":"http://foo.com/401","entries_url":"http://foo.com/401/entries","projects_url":"http://foo.com/401/projects","add_projects_url":"http://foo.com/401/add_projects","remove_projects_url":"http://foo.com/401/remove_projects","remove_all_projects_url":"http://foo.com/401/remove_all_projects"},{"id":145,"name":"name_151","created_at":"2017-03-23T09:54:08Z","updated_at":"2017-03-23T09:54:08Z","projects":[{"id":146,"name":"name_102","billing_increment":5,"enabled":true,"billable":true,"color":"#ea6300","url":"http://foo.com/046"},{"id":147,"name":"name_24","billing_increment":5,"enabled":true,"billable":true,"color":"#feff96","url":"http://foo.com/047"}],"url":"http://foo.com/405","entries_url":"http://foo.com/405/entries","projects_url":"http://foo.com/405/projects","add_projects_url":"http://foo.com/405/add_projects","remove_projects_url":"http://foo.com/405/remove_projects","remove_all_projects_url":"http://foo.com/405/remove_all_projects"},{"id":148,"name":"name_103","created_at":"2017-12-14T15:53:35Z","updated_at":"2017-12-14T15:53:35Z","projects":[{"id":149,"name":"name_25","billing_increment":5,"enabled":false,"billable":true,"color":"#13a480","url":"http://foo.com/049"},{"id":150,"name":"name_50","billing_increment":5,"enabled":true,"billable":true,"color":"#d6c0fb","url":"http://foo.com/050"}],"url":"http://foo.com/408","entries_url":"http://foo.com/408/entries","projects_url":"http://foo.com/408/projects","add_projects_url":"http://foo.com/408/add_projects","remove_projects_url":"http://foo.com/408/remove_projects","remove_all_projects_url":"http://foo.com/408/remove_all_projects"},{"id":151,"name":"name_152","created_at":"2018-01-17T09:37:15Z","updated_at":"2018-01-17T09:37:15Z","projects":[{"id":152,"name":"name_104","billing_increment":5,"enabled":true,"billable":true,"color":"#bd4242","url":"http://foo.com/052"},{"id":153,"name":"name_153","billing_increment":5,"enabled":false,"billable":true,"color":"#feff96","url":"http://foo.com/053"}],"url":"http://foo.com/153","entries_url":"http://foo.com/153/entries","projects_url":"http://foo.com/153/projects","add_projects_url":"http://foo.com/153/add_projects","remove_projects_url":"http://foo.com/153/remove_projects","remove_all_projects_url":"http://foo.com/153/remove_all_projects"},{"id":154,"name":"name_154","created_at":"2016-06-22T12:35:54Z","updated_at":"2017-06-14T12:15:10Z","projects":[{"id":155,"name":"name_155","billing_increment":5,"enabled":false,"billable":true,"color":"#13a480","url":"http://foo.com/055"},{"id":156,"name":"name_51","billing_increment":5,"enabled":true,"billable":true,"color":"#d6c0fb","url":"http://foo.com/056"},{"id":157,"name":"name_105","billing_increment":5,"enabled":false,"billable":true,"color":"#d6c0fb","url":"http://foo.com/057"},{"id":158,"name":"name_156","billing_increment":5,"enabled":false,"billable":true,"color":"#bce162","url":"http://foo.com/058"}],"url":"http://foo.com/158","entries_url":"http://foo.com/158/entries","projects_url":"http://foo.com/158/projects","add_projects_url":"http://foo.com/158/add_projects","remove_projects_url":"http://foo.com/158/remove_projects","remove_all_projects_url":"http://foo.com/158/remove_all_projects"}]'
49
+ http_version:
50
+ recorded_at: Sat, 15 Dec 2018 09:34:59 GMT
51
+ - request:
52
+ method: get
53
+ uri: https://api.letsfreckle.com/v2/project_groups?page=2
54
+ body:
55
+ encoding: US-ASCII
56
+ string: ''
57
+ headers:
58
+ User-Agent:
59
+ - MyFreckleBot/1.0
60
+ X-Freckletoken:
61
+ - "<TOKEN>"
62
+ Expect:
63
+ - ''
64
+ response:
65
+ status:
66
+ code: 200
67
+ message: OK
68
+ headers:
69
+ Server:
70
+ - nginx
71
+ Date:
72
+ - Sat, 15 Dec 2018 09:34:59 GMT
73
+ Content-Type:
74
+ - application/json; charset=utf-8
75
+ Content-Length:
76
+ - '5124'
77
+ Connection:
78
+ - keep-alive
79
+ Status:
80
+ - 200 OK
81
+ Cache-Control:
82
+ - private, max-age=0, must-revalidate
83
+ X-Frame-Options:
84
+ - SAMEORIGIN
85
+ Link:
86
+ - <https://api.letsfreckle.com/v2/project_groups?page=1>; rel="first", <https://api.letsfreckle.com/v2/project_groups?page=1>;
87
+ rel="prev"
88
+ X-Runtime:
89
+ - '76'
90
+ Vary:
91
+ - Origin
92
+ Strict-Transport-Security:
93
+ - max-age=31536000; includeSubdomains
94
+ body:
95
+ encoding: UTF-8
96
+ string: '[{"id":0,"name":"name_15","created_at":"2016-06-09T12:41:46Z","updated_at":"2018-02-19T07:47:42Z","projects":[{"id":1,"name":"name_4","billing_increment":5,"enabled":true,"billable":true,"color":"#002220","url":"http://foo.com/0"},{"id":2,"name":"name_5","billing_increment":5,"enabled":false,"billable":true,"color":"#b92c6c","url":"http://foo.com/1"}],"url":"http://foo.com/2","entries_url":"http://foo.com/2/entries","projects_url":"http://foo.com/2/projects","add_projects_url":"http://foo.com/2/add_projects","remove_projects_url":"http://foo.com/2/remove_projects","remove_all_projects_url":"http://foo.com/2/remove_all_projects"},{"id":3,"name":"name_16","created_at":"2017-11-23T16:42:33Z","updated_at":"2017-11-23T16:42:33Z","projects":[{"id":4,"name":"name_2","billing_increment":5,"enabled":true,"billable":true,"color":"#13a480","url":"http://foo.com/3"},{"id":5,"name":"name_6","billing_increment":5,"enabled":true,"billable":false,"color":"#86ac2a","url":"http://foo.com/4"},{"id":6,"name":"name_7","billing_increment":5,"enabled":true,"billable":true,"color":"#ef63a2","url":"http://foo.com/5"},{"id":7,"name":"name_0","billing_increment":5,"enabled":false,"billable":true,"color":"#0f6953","url":"http://foo.com/6"},{"id":8,"name":"name_8","billing_increment":5,"enabled":false,"billable":false,"color":"#55c9ef","url":"http://foo.com/7"},{"id":9,"name":"name_1","billing_increment":5,"enabled":false,"billable":true,"color":"#ef5555","url":"http://foo.com/8"}],"url":"http://foo.com/9","entries_url":"http://foo.com/9/entries","projects_url":"http://foo.com/9/projects","add_projects_url":"http://foo.com/9/add_projects","remove_projects_url":"http://foo.com/9/remove_projects","remove_all_projects_url":"http://foo.com/9/remove_all_projects"},{"id":10,"name":"name_17","created_at":"2017-11-30T17:18:10Z","updated_at":"2017-11-30T17:18:10Z","projects":[{"id":11,"name":"name_9","billing_increment":5,"enabled":true,"billable":true,"color":"#ef63a2","url":"http://foo.com/01"},{"id":12,"name":"name_10","billing_increment":5,"enabled":true,"billable":true,"color":"#13a480","url":"http://foo.com/02"},{"id":13,"name":"name_11","billing_increment":5,"enabled":true,"billable":true,"color":"#d3d52b","url":"http://foo.com/03"},{"id":14,"name":"name_12","billing_increment":5,"enabled":true,"billable":true,"color":"#ef9655","url":"http://foo.com/04"}],"url":"http://foo.com/14","entries_url":"http://foo.com/14/entries","projects_url":"http://foo.com/14/projects","add_projects_url":"http://foo.com/14/add_projects","remove_projects_url":"http://foo.com/14/remove_projects","remove_all_projects_url":"http://foo.com/14/remove_all_projects"},{"id":15,"name":"name_18","created_at":"2018-05-07T14:09:18Z","updated_at":"2018-05-07T14:09:18Z","projects":[{"id":16,"name":"name_18Demo","billing_increment":5,"enabled":true,"billable":false,"color":"#3195a7","url":"http://foo.com/06"},{"id":17,"name":"name_13","billing_increment":5,"enabled":true,"billable":false,"color":"#f1f353","url":"http://foo.com/07"},{"id":18,"name":"name_14","billing_increment":5,"enabled":true,"billable":false,"color":"#13a480","url":"http://foo.com/08"},{"id":19,"name":"name_3","billing_increment":5,"enabled":true,"billable":false,"color":"#ff9898","url":"http://foo.com/09"}],"url":"http://foo.com/19","entries_url":"http://foo.com/19/entries","projects_url":"http://foo.com/19/projects","add_projects_url":"http://foo.com/19/add_projects","remove_projects_url":"http://foo.com/19/remove_projects","remove_all_projects_url":"http://foo.com/19/remove_all_projects"}]'
97
+ http_version:
98
+ recorded_at: Sat, 15 Dec 2018 09:34:59 GMT
99
+ recorded_with: VCR 4.0.0