clever-ruby 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG.md +4 -0
  3. data/clever-ruby.gemspec +2 -1
  4. data/lib/clever-ruby/api_operations/list.rb +71 -0
  5. data/lib/clever-ruby/api_operations/nested_list.rb +49 -0
  6. data/lib/clever-ruby/api_operations/page.rb +16 -8
  7. data/lib/clever-ruby/version.rb +1 -1
  8. data/test/data/vcr_cassettes/{district_count.yml → Clever_APIOperations_List/counts_district_properly.yml} +6 -4
  9. data/test/data/vcr_cassettes/{event_count.yml → Clever_APIOperations_List/counts_event_properly.yml} +6 -4
  10. data/test/data/vcr_cassettes/{school_count.yml → Clever_APIOperations_List/counts_school_properly.yml} +6 -4
  11. data/test/data/vcr_cassettes/{section_count.yml → Clever_APIOperations_List/counts_section_properly.yml} +6 -4
  12. data/test/data/vcr_cassettes/{student_count.yml → Clever_APIOperations_List/counts_student_properly.yml} +6 -4
  13. data/test/data/vcr_cassettes/{teacher_count.yml → Clever_APIOperations_List/counts_teacher_properly.yml} +6 -4
  14. data/test/data/vcr_cassettes/{district_find_one.yml → Clever_APIOperations_List/finds_a_single_district.yml} +11 -7
  15. data/test/data/vcr_cassettes/{event_find_one.yml → Clever_APIOperations_List/finds_a_single_event.yml} +11 -7
  16. data/test/data/vcr_cassettes/{school_find_one.yml → Clever_APIOperations_List/finds_a_single_school.yml} +11 -7
  17. data/test/data/vcr_cassettes/{section_find_one.yml → Clever_APIOperations_List/finds_a_single_section.yml} +11 -7
  18. data/test/data/vcr_cassettes/{student_find_one.yml → Clever_APIOperations_List/finds_a_single_student.yml} +11 -7
  19. data/test/data/vcr_cassettes/{teacher_find_one.yml → Clever_APIOperations_List/finds_a_single_teacher.yml} +11 -7
  20. data/test/data/vcr_cassettes/{districts.yml → Clever_APIOperations_List/finds_districts_by_page.yml} +11 -7
  21. data/test/data/vcr_cassettes/{district_find_multiple.yml → Clever_APIOperations_List/finds_districts_with_multiple_ids.yml} +11 -7
  22. data/test/data/vcr_cassettes/{events.yml → Clever_APIOperations_List/finds_events_by_page.yml} +11 -7
  23. data/test/data/vcr_cassettes/{event_find_multiple.yml → Clever_APIOperations_List/finds_events_with_multiple_ids.yml} +11 -7
  24. data/test/data/vcr_cassettes/{schools.yml → Clever_APIOperations_List/finds_schools_by_page.yml} +11 -7
  25. data/test/data/vcr_cassettes/{school_find_multiple.yml → Clever_APIOperations_List/finds_schools_with_multiple_ids.yml} +11 -7
  26. data/test/data/vcr_cassettes/{section_find_by_page.yml → Clever_APIOperations_List/finds_sections_by_page.yml} +26 -16
  27. data/test/data/vcr_cassettes/{section_find_multiple.yml → Clever_APIOperations_List/finds_sections_with_multiple_ids.yml} +11 -7
  28. data/test/data/vcr_cassettes/{students.yml → Clever_APIOperations_List/finds_students_by_page.yml} +61 -37
  29. data/test/data/vcr_cassettes/{student_find_multiple.yml → Clever_APIOperations_List/finds_students_with_multiple_ids.yml} +11 -7
  30. data/test/data/vcr_cassettes/{teachers.yml → Clever_APIOperations_List/finds_teachers_by_page.yml} +11 -7
  31. data/test/data/vcr_cassettes/{teacher_find_multiple.yml → Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml} +11 -7
  32. data/test/data/vcr_cassettes/{district_find_by_page.yml → Clever_APIOperations_List/retrieves_all_district.yml} +11 -7
  33. data/test/data/vcr_cassettes/{event_find_by_page.yml → Clever_APIOperations_List/retrieves_all_event.yml} +11 -7
  34. data/test/data/vcr_cassettes/{school_find_by_page.yml → Clever_APIOperations_List/retrieves_all_school.yml} +11 -7
  35. data/test/data/vcr_cassettes/{sections.yml → Clever_APIOperations_List/retrieves_all_section.yml} +26 -16
  36. data/test/data/vcr_cassettes/{student_find_by_page.yml → Clever_APIOperations_List/retrieves_all_student.yml} +61 -37
  37. data/test/data/vcr_cassettes/{teacher_find_by_page.yml → Clever_APIOperations_List/retrieves_all_teacher.yml} +11 -7
  38. data/test/data/vcr_cassettes/{districts_event_pages.yml → Clever_District/pages_methods/pages_a_district_s_events.yml} +56 -34
  39. data/test/data/vcr_cassettes/{districts_school_pages.yml → Clever_District/pages_methods/pages_a_district_s_schools.yml} +26 -16
  40. data/test/data/vcr_cassettes/{districts_section_pages.yml → Clever_District/pages_methods/pages_a_district_s_sections.yml} +206 -124
  41. data/test/data/vcr_cassettes/{districts_student_pages.yml → Clever_District/pages_methods/pages_a_district_s_students.yml} +121 -73
  42. data/test/data/vcr_cassettes/{districts_teacher_pages.yml → Clever_District/pages_methods/pages_a_district_s_teachers.yml} +61 -37
  43. data/test/data/vcr_cassettes/{district_events.yml → Clever_NestedResource/retrieves_a_district_s_events.yml} +21 -13
  44. data/test/data/vcr_cassettes/{district_schools.yml → Clever_NestedResource/retrieves_a_district_s_schools.yml} +21 -13
  45. data/test/data/vcr_cassettes/{district_sections.yml → Clever_NestedResource/retrieves_a_district_s_sections.yml} +51 -31
  46. data/test/data/vcr_cassettes/{district_students.yml → Clever_NestedResource/retrieves_a_district_s_students.yml} +121 -73
  47. data/test/data/vcr_cassettes/{district_teachers.yml → Clever_NestedResource/retrieves_a_district_s_teachers.yml} +21 -13
  48. data/test/data/vcr_cassettes/{school_district.yml → Clever_NestedResource/retrieves_a_school_s_district.yml} +16 -10
  49. data/test/data/vcr_cassettes/{school_events.yml → Clever_NestedResource/retrieves_a_school_s_events.yml} +21 -13
  50. data/test/data/vcr_cassettes/{school_sections.yml → Clever_NestedResource/retrieves_a_school_s_sections.yml} +31 -19
  51. data/test/data/vcr_cassettes/{school_students.yml → Clever_NestedResource/retrieves_a_school_s_students.yml} +61 -37
  52. data/test/data/vcr_cassettes/{school_teachers.yml → Clever_NestedResource/retrieves_a_school_s_teachers.yml} +21 -13
  53. data/test/data/vcr_cassettes/{section_district.yml → Clever_NestedResource/retrieves_a_section_s_district.yml} +16 -10
  54. data/test/data/vcr_cassettes/{section_events.yml → Clever_NestedResource/retrieves_a_section_s_events.yml} +21 -13
  55. data/test/data/vcr_cassettes/{section_school.yml → Clever_NestedResource/retrieves_a_section_s_school.yml} +16 -10
  56. data/test/data/vcr_cassettes/{section_students.yml → Clever_NestedResource/retrieves_a_section_s_students.yml} +21 -13
  57. data/test/data/vcr_cassettes/{section_teacher.yml → Clever_NestedResource/retrieves_a_section_s_teacher.yml} +16 -10
  58. data/test/data/vcr_cassettes/{student_district.yml → Clever_NestedResource/retrieves_a_student_s_district.yml} +16 -10
  59. data/test/data/vcr_cassettes/{student_events.yml → Clever_NestedResource/retrieves_a_student_s_events.yml} +21 -13
  60. data/test/data/vcr_cassettes/{student_school.yml → Clever_NestedResource/retrieves_a_student_s_school.yml} +16 -10
  61. data/test/data/vcr_cassettes/{student_sections.yml → Clever_NestedResource/retrieves_a_student_s_sections.yml} +21 -13
  62. data/test/data/vcr_cassettes/{student_teachers.yml → Clever_NestedResource/retrieves_a_student_s_teachers.yml} +21 -13
  63. data/test/data/vcr_cassettes/{teacher_district.yml → Clever_NestedResource/retrieves_a_teacher_s_district.yml} +16 -10
  64. data/test/data/vcr_cassettes/{teacher_events.yml → Clever_NestedResource/retrieves_a_teacher_s_events.yml} +21 -13
  65. data/test/data/vcr_cassettes/{teacher_school.yml → Clever_NestedResource/retrieves_a_teacher_s_school.yml} +16 -10
  66. data/test/data/vcr_cassettes/{teacher_sections.yml → Clever_NestedResource/retrieves_a_teacher_s_sections.yml} +21 -13
  67. data/test/data/vcr_cassettes/{teacher_students.yml → Clever_NestedResource/retrieves_a_teacher_s_students.yml} +21 -13
  68. data/test/data/vcr_cassettes/{error_handling.yml → Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml} +16 -10
  69. data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +49 -0
  70. data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +719 -0
  71. data/test/data/vcr_cassettes/last_method/resource/has_working_first_and_last_methods.yml +648 -0
  72. data/test/integration/api_operations/list_test.rb +40 -50
  73. data/test/integration/district_test.rb +13 -15
  74. data/test/integration/error_handling_test.rb +6 -8
  75. data/test/integration/last_test.rb +70 -0
  76. data/test/integration/nested_resource_test.rb +7 -9
  77. data/test/test_helper.rb +3 -0
  78. data/test/unit/clever_test.rb +1 -1
  79. data/test/unit/configuration_test.rb +6 -0
  80. data/test/unit/optional_attributes_test.rb +4 -10
  81. metadata +147 -129
  82. data/test/data/vcr_cassettes/schools_optional_attributes.yml +0 -55
  83. data/test/data/vcr_cassettes/student_teacher.yml +0 -161
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts
5
+ uri: https://api.clever.com/v1.1/districts
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -11,6 +11,8 @@ http_interactions:
11
11
  - ! '*/*; q=0.5, application/xml'
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
+ Authorization:
15
+ - Bearer DEMO_TOKEN
14
16
  User-Agent:
15
17
  - Ruby
16
18
  response:
@@ -27,7 +29,7 @@ http_interactions:
27
29
  Content-Type:
28
30
  - application/json; charset=utf-8
29
31
  Date:
30
- - Fri, 12 Sep 2014 20:48:53 GMT
32
+ - Sat, 13 Sep 2014 00:05:09 GMT
31
33
  Server:
32
34
  - nginx/1.4.7
33
35
  X-Powered-By:
@@ -40,10 +42,10 @@ http_interactions:
40
42
  encoding: US-ASCII
41
43
  string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
44
  http_version:
43
- recorded_at: Fri, 12 Sep 2014 20:48:53 GMT
45
+ recorded_at: Sat, 13 Sep 2014 00:05:09 GMT
44
46
  - request:
45
47
  method: get
46
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
48
+ uri: https://api.clever.com/v1.1/districts/4fd43cc56d11340000000005
47
49
  body:
48
50
  encoding: US-ASCII
49
51
  string: ''
@@ -52,6 +54,8 @@ http_interactions:
52
54
  - ! '*/*; q=0.5, application/xml'
53
55
  Accept-Encoding:
54
56
  - gzip, deflate
57
+ Authorization:
58
+ - Bearer DEMO_TOKEN
55
59
  User-Agent:
56
60
  - Ruby
57
61
  response:
@@ -68,7 +72,7 @@ http_interactions:
68
72
  Content-Type:
69
73
  - application/json; charset=utf-8
70
74
  Date:
71
- - Fri, 12 Sep 2014 20:48:53 GMT
75
+ - Sat, 13 Sep 2014 00:05:09 GMT
72
76
  Server:
73
77
  - nginx/1.4.7
74
78
  X-Powered-By:
@@ -81,10 +85,10 @@ http_interactions:
81
85
  encoding: US-ASCII
82
86
  string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
87
  http_version:
84
- recorded_at: Fri, 12 Sep 2014 20:48:53 GMT
88
+ recorded_at: Sat, 13 Sep 2014 00:05:09 GMT
85
89
  - request:
86
90
  method: get
87
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=100000
91
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=100000
88
92
  body:
89
93
  encoding: US-ASCII
90
94
  string: ''
@@ -93,6 +97,8 @@ http_interactions:
93
97
  - ! '*/*; q=0.5, application/xml'
94
98
  Accept-Encoding:
95
99
  - gzip, deflate
100
+ Authorization:
101
+ - Bearer DEMO_TOKEN
96
102
  User-Agent:
97
103
  - Ruby
98
104
  response:
@@ -109,7 +115,7 @@ http_interactions:
109
115
  Content-Type:
110
116
  - application/json; charset=utf-8
111
117
  Date:
112
- - Fri, 12 Sep 2014 20:48:54 GMT
118
+ - Sat, 13 Sep 2014 00:05:09 GMT
113
119
  Etag:
114
120
  - ! '"-1260498667"'
115
121
  Server:
@@ -778,10 +784,10 @@ http_interactions:
778
784
  or African American","school":"530e595026403103360ff9ff","sis_id":"998414435","state_id":"134063200","student_number":"998414435","id":"530e5968049e75a9262d064a"},"uri":"/v1.1/students/530e5968049e75a9262d064a"},{"data":{"created":"2014-02-26T21:15:20.623Z","credentials":{"district_username":"markr17","district_password":"yo0ohYo6ro"},"district":"4fd43cc56d11340000000005","dob":"8/24/1996","ell_status":"N","email":"r_mark@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.750Z","location":{"zip":"10034"},"name":{"first":"Mark","middle":"S","last":"Reilly"},"race":"American
779
785
  Indian","school":"530e595026403103360ff9fd","sis_id":"999447617","state_id":"651135073","student_number":"999447617","id":"530e5968049e75a9262d064b"},"uri":"/v1.1/students/530e5968049e75a9262d064b"}],"paging":{"current":1,"total":1,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=100000"}]}'
780
786
  http_version:
781
- recorded_at: Fri, 12 Sep 2014 20:48:55 GMT
787
+ recorded_at: Sat, 13 Sep 2014 00:05:10 GMT
782
788
  - request:
783
789
  method: get
784
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50
790
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50
785
791
  body:
786
792
  encoding: US-ASCII
787
793
  string: ''
@@ -790,6 +796,8 @@ http_interactions:
790
796
  - ! '*/*; q=0.5, application/xml'
791
797
  Accept-Encoding:
792
798
  - gzip, deflate
799
+ Authorization:
800
+ - Bearer DEMO_TOKEN
793
801
  User-Agent:
794
802
  - Ruby
795
803
  response:
@@ -806,7 +814,7 @@ http_interactions:
806
814
  Content-Type:
807
815
  - application/json; charset=utf-8
808
816
  Date:
809
- - Fri, 12 Sep 2014 20:48:58 GMT
817
+ - Sat, 13 Sep 2014 00:05:12 GMT
810
818
  Etag:
811
819
  - ! '"-222331548"'
812
820
  Server:
@@ -853,10 +861,10 @@ http_interactions:
853
861
  Indian","school":"530e595026403103360ff9fd","sis_id":"135635226","state_id":"568110703","student_number":"135635226","id":"530e5960049e75a9262cff67"},"uri":"/v1.1/students/530e5960049e75a9262cff67"},{"data":{"created":"2014-02-26T21:15:12.697Z","credentials":{"district_username":"clarettas30","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1995","ell_status":"Y","email":"s_claretta@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.851Z","location":{"zip":"11361"},"name":{"first":"Claretta","middle":"C","last":"Steuber"},"race":"Black
854
862
  or African American","school":"530e595026403103360ff9fd","sis_id":"136380730","state_id":"307304843","student_number":"136380730","id":"530e5960049e75a9262cff6a"},"uri":"/v1.1/students/530e5960049e75a9262cff6a"},{"data":{"created":"2014-02-26T21:15:12.713Z","credentials":{"district_username":"lisab30","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"9/12/2002","ell_status":"N","email":"b_lisa@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.855Z","location":{"zip":"11370"},"name":{"first":"Lisa","middle":"B","last":"Botsford"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"136422830","state_id":"258401272","student_number":"136422830","id":"530e5960049e75a9262cff6c"},"uri":"/v1.1/students/530e5960049e75a9262cff6c"},{"data":{"created":"2014-02-26T21:15:12.721Z","credentials":{"district_username":"amberw60","district_password":"Tu5sahdoh"},"district":"4fd43cc56d11340000000005","dob":"2/26/2006","ell_status":"N","email":"amber_w@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.860Z","location":{"zip":"11429"},"name":{"first":"Amber","middle":"J","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137019560","state_id":"650349892","student_number":"137019560","id":"530e5960049e75a9262cff6e"},"uri":"/v1.1/students/530e5960049e75a9262cff6e"},{"data":{"created":"2014-02-26T21:15:12.734Z","credentials":{"district_username":"lloydc63","district_password":"ohChah5t"},"district":"4fd43cc56d11340000000005","dob":"11/21/2005","ell_status":"N","email":"c.lloyd@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.864Z","location":{"zip":"10014"},"name":{"first":"Lloyd","middle":"P","last":"Collier"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137569863","state_id":"997363437","student_number":"137569863","id":"530e5960049e75a9262cff72"},"uri":"/v1.1/students/530e5960049e75a9262cff72"}],"paging":{"current":1,"total":21,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72"}]}'
855
863
  http_version:
856
- recorded_at: Fri, 12 Sep 2014 20:48:58 GMT
864
+ recorded_at: Sat, 13 Sep 2014 00:05:12 GMT
857
865
  - request:
858
866
  method: get
859
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72
867
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72
860
868
  body:
861
869
  encoding: US-ASCII
862
870
  string: ''
@@ -865,6 +873,8 @@ http_interactions:
865
873
  - ! '*/*; q=0.5, application/xml'
866
874
  Accept-Encoding:
867
875
  - gzip, deflate
876
+ Authorization:
877
+ - Bearer DEMO_TOKEN
868
878
  User-Agent:
869
879
  - Ruby
870
880
  response:
@@ -881,7 +891,7 @@ http_interactions:
881
891
  Content-Type:
882
892
  - application/json; charset=utf-8
883
893
  Date:
884
- - Fri, 12 Sep 2014 20:48:58 GMT
894
+ - Sat, 13 Sep 2014 00:05:12 GMT
885
895
  Etag:
886
896
  - ! '"-1095771344"'
887
897
  Server:
@@ -935,10 +945,10 @@ http_interactions:
935
945
  or More Races","school":"530e595026403103360ff9ff","sis_id":"189422359","state_id":"949395711","student_number":"189422359","id":"530e5961049e75a9262cffe3"},"uri":"/v1.1/students/530e5961049e75a9262cffe3"},{"data":{"created":"2014-02-26T21:15:13.206Z","credentials":{"district_username":"mial61","district_password":"uka5Hixae"},"district":"4fd43cc56d11340000000005","dob":"11/10/2002","ell_status":"N","email":"l_mia@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.072Z","location":{"zip":"10002"},"name":{"first":"Mia","middle":"J","last":"Lindgren"},"race":"Black
936
946
  or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5960049e75a9262cff76"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4"}]}'
937
947
  http_version:
938
- recorded_at: Fri, 12 Sep 2014 20:48:58 GMT
948
+ recorded_at: Sat, 13 Sep 2014 00:05:12 GMT
939
949
  - request:
940
950
  method: get
941
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4
951
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4
942
952
  body:
943
953
  encoding: US-ASCII
944
954
  string: ''
@@ -947,6 +957,8 @@ http_interactions:
947
957
  - ! '*/*; q=0.5, application/xml'
948
958
  Accept-Encoding:
949
959
  - gzip, deflate
960
+ Authorization:
961
+ - Bearer DEMO_TOKEN
950
962
  User-Agent:
951
963
  - Ruby
952
964
  response:
@@ -963,7 +975,7 @@ http_interactions:
963
975
  Content-Type:
964
976
  - application/json; charset=utf-8
965
977
  Date:
966
- - Fri, 12 Sep 2014 20:48:59 GMT
978
+ - Sat, 13 Sep 2014 00:05:12 GMT
967
979
  Etag:
968
980
  - ! '"125239207"'
969
981
  Server:
@@ -1016,10 +1028,10 @@ http_interactions:
1016
1028
  or More Races","school":"530e595026403103360ff9fe","sis_id":"239116519","state_id":"471948035","student_number":"239116519","id":"530e5961049e75a9262d003c"},"uri":"/v1.1/students/530e5961049e75a9262d003c"},{"data":{"created":"2014-02-26T21:15:13.628Z","credentials":{"district_username":"rebeccac35","district_password":"ooCheo3Ahdee"},"district":"4fd43cc56d11340000000005","dob":"4/11/2003","ell_status":"N","email":"rebecca.c@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.273Z","location":{"zip":"11209"},"name":{"first":"Rebecca","middle":"R","last":"Considine"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"239458535","state_id":"902039938","student_number":"239458535","id":"530e5961049e75a9262d003f"},"uri":"/v1.1/students/530e5961049e75a9262d003f"},{"data":{"created":"2014-02-26T21:15:13.653Z","credentials":{"district_username":"jeromes74","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"7/31/1998","ell_status":"N","email":"jerome.s@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.277Z","location":{"zip":"11231"},"name":{"first":"Jerome","middle":"C","last":"Schowalter"},"race":"Two
1017
1029
  or More Races","school":"530e595026403103360ff9fd","sis_id":"243330474","state_id":"536202212","student_number":"243330474","id":"530e5961049e75a9262d0048"},"uri":"/v1.1/students/530e5961049e75a9262d0048"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048"}]}'
1018
1030
  http_version:
1019
- recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
1031
+ recorded_at: Sat, 13 Sep 2014 00:05:12 GMT
1020
1032
  - request:
1021
1033
  method: get
1022
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048
1034
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048
1023
1035
  body:
1024
1036
  encoding: US-ASCII
1025
1037
  string: ''
@@ -1028,6 +1040,8 @@ http_interactions:
1028
1040
  - ! '*/*; q=0.5, application/xml'
1029
1041
  Accept-Encoding:
1030
1042
  - gzip, deflate
1043
+ Authorization:
1044
+ - Bearer DEMO_TOKEN
1031
1045
  User-Agent:
1032
1046
  - Ruby
1033
1047
  response:
@@ -1044,7 +1058,7 @@ http_interactions:
1044
1058
  Content-Type:
1045
1059
  - application/json; charset=utf-8
1046
1060
  Date:
1047
- - Fri, 12 Sep 2014 20:48:59 GMT
1061
+ - Sat, 13 Sep 2014 00:05:12 GMT
1048
1062
  Etag:
1049
1063
  - ! '"958448407"'
1050
1064
  Server:
@@ -1085,10 +1099,10 @@ http_interactions:
1085
1099
  or More Races","school":"530e595026403103360ff9ff","sis_id":"281506967","state_id":"783233963","student_number":"281506967","id":"530e5962049e75a9262d00a0"},"uri":"/v1.1/students/530e5962049e75a9262d00a0"},{"data":{"created":"2014-02-26T21:15:14.041Z","credentials":{"district_username":"ethans60","district_password":"iv5ooga4Ie"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"s_ethan@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.470Z","location":{"zip":"10465"},"name":{"first":"Ethan","middle":"S","last":"Stokes"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"281770560","state_id":"424914041","student_number":"281770560","id":"530e5962049e75a9262d00a2"},"uri":"/v1.1/students/530e5962049e75a9262d00a2"},{"data":{"created":"2014-02-26T21:15:14.049Z","credentials":{"district_username":"kimberlyt62","district_password":"Ue7oevee"},"district":"4fd43cc56d11340000000005","dob":"12/24/1997","ell_status":"N","email":"t.kimberly@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.482Z","location":{"zip":"11695"},"name":{"first":"Kimberly","middle":"J","last":"Torphy"},"race":"Black
1086
1100
  or African American","school":"530e595026403103360ff9fd","sis_id":"282491062","state_id":"918036457","student_number":"282491062","id":"530e5962049e75a9262d00a5"},"uri":"/v1.1/students/530e5962049e75a9262d00a5"},{"data":{"created":"2014-02-26T21:15:14.060Z","credentials":{"district_username":"alexp21","district_password":"la8ohShee"},"district":"4fd43cc56d11340000000005","dob":"9/24/2003","ell_status":"N","email":"p.alex@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.486Z","location":{"zip":"10018"},"name":{"first":"Alex","middle":"M","last":"Pacocha"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283207621","state_id":"729866081","student_number":"283207621","id":"530e5962049e75a9262d00a9"},"uri":"/v1.1/students/530e5962049e75a9262d00a9"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5961049e75a9262d004a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9"}]}'
1087
1101
  http_version:
1088
- recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
1102
+ recorded_at: Sat, 13 Sep 2014 00:05:12 GMT
1089
1103
  - request:
1090
1104
  method: get
1091
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9
1105
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9
1092
1106
  body:
1093
1107
  encoding: US-ASCII
1094
1108
  string: ''
@@ -1097,6 +1111,8 @@ http_interactions:
1097
1111
  - ! '*/*; q=0.5, application/xml'
1098
1112
  Accept-Encoding:
1099
1113
  - gzip, deflate
1114
+ Authorization:
1115
+ - Bearer DEMO_TOKEN
1100
1116
  User-Agent:
1101
1117
  - Ruby
1102
1118
  response:
@@ -1113,7 +1129,7 @@ http_interactions:
1113
1129
  Content-Type:
1114
1130
  - application/json; charset=utf-8
1115
1131
  Date:
1116
- - Fri, 12 Sep 2014 20:48:59 GMT
1132
+ - Sat, 13 Sep 2014 00:05:12 GMT
1117
1133
  Etag:
1118
1134
  - ! '"773509148"'
1119
1135
  Server:
@@ -1164,10 +1180,10 @@ http_interactions:
1164
1180
  or African American","school":"530e595026403103360ff9fe","sis_id":"320645862","state_id":"871144833","student_number":"320645862","id":"530e5962049e75a9262d0104"},"uri":"/v1.1/students/530e5962049e75a9262d0104"},{"data":{"created":"2014-02-26T21:15:14.454Z","credentials":{"district_username":"nancyb33","district_password":"quiVu5aen"},"district":"4fd43cc56d11340000000005","dob":"9/26/1996","ell_status":"N","email":"b_nancy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.684Z","location":{"zip":"10021"},"name":{"first":"Nancy","middle":"P","last":"Borer"},"race":"Two
1165
1181
  or More Races","school":"530e595026403103360ff9fd","sis_id":"321540033","state_id":"170613526","student_number":"321540033","id":"530e5962049e75a9262d0106"},"uri":"/v1.1/students/530e5962049e75a9262d0106"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106"}]}'
1166
1182
  http_version:
1167
- recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
1183
+ recorded_at: Sat, 13 Sep 2014 00:05:12 GMT
1168
1184
  - request:
1169
1185
  method: get
1170
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106
1186
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106
1171
1187
  body:
1172
1188
  encoding: US-ASCII
1173
1189
  string: ''
@@ -1176,6 +1192,8 @@ http_interactions:
1176
1192
  - ! '*/*; q=0.5, application/xml'
1177
1193
  Accept-Encoding:
1178
1194
  - gzip, deflate
1195
+ Authorization:
1196
+ - Bearer DEMO_TOKEN
1179
1197
  User-Agent:
1180
1198
  - Ruby
1181
1199
  response:
@@ -1192,7 +1210,7 @@ http_interactions:
1192
1210
  Content-Type:
1193
1211
  - application/json; charset=utf-8
1194
1212
  Date:
1195
- - Fri, 12 Sep 2014 20:48:59 GMT
1213
+ - Sat, 13 Sep 2014 00:05:13 GMT
1196
1214
  Etag:
1197
1215
  - ! '"1086824720"'
1198
1216
  Server:
@@ -1239,10 +1257,10 @@ http_interactions:
1239
1257
  or African American","school":"530e595026403103360ff9fd","sis_id":"365272887","state_id":"700708728","student_number":"365272887","id":"530e5962049e75a9262d015f"},"uri":"/v1.1/students/530e5962049e75a9262d015f"},{"data":{"created":"2014-02-26T21:15:14.870Z","credentials":{"district_username":"virgiem43","district_password":"Lein8oop"},"district":"4fd43cc56d11340000000005","dob":"1/20/2005","ell_status":"N","email":"m_virgie@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.888Z","location":{"zip":"10465"},"name":{"first":"Virgie","middle":"J","last":"Mueller"},"race":"Black
1240
1258
  or African American","school":"530e595026403103360ff9fe","sis_id":"365316343","state_id":"857518638","student_number":"365316343","id":"530e5962049e75a9262d0160"},"uri":"/v1.1/students/530e5962049e75a9262d0160"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d0107"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160"}]}'
1241
1259
  http_version:
1242
- recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
1260
+ recorded_at: Sat, 13 Sep 2014 00:05:13 GMT
1243
1261
  - request:
1244
1262
  method: get
1245
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160
1263
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160
1246
1264
  body:
1247
1265
  encoding: US-ASCII
1248
1266
  string: ''
@@ -1251,6 +1269,8 @@ http_interactions:
1251
1269
  - ! '*/*; q=0.5, application/xml'
1252
1270
  Accept-Encoding:
1253
1271
  - gzip, deflate
1272
+ Authorization:
1273
+ - Bearer DEMO_TOKEN
1254
1274
  User-Agent:
1255
1275
  - Ruby
1256
1276
  response:
@@ -1267,7 +1287,7 @@ http_interactions:
1267
1287
  Content-Type:
1268
1288
  - application/json; charset=utf-8
1269
1289
  Date:
1270
- - Fri, 12 Sep 2014 20:49:00 GMT
1290
+ - Sat, 13 Sep 2014 00:05:13 GMT
1271
1291
  Etag:
1272
1292
  - ! '"1341594749"'
1273
1293
  Server:
@@ -1317,10 +1337,10 @@ http_interactions:
1317
1337
  or More Races","school":"530e595026403103360ff9fd","sis_id":"406647418","state_id":"144054889","student_number":"406647418","id":"530e5963049e75a9262d01cd"},"uri":"/v1.1/students/530e5963049e75a9262d01cd"},{"data":{"created":"2014-02-26T21:15:15.301Z","credentials":{"district_username":"davidt49","district_password":"ahc5Ahmi4j"},"district":"4fd43cc56d11340000000005","dob":"10/10/2003","ell_status":"N","email":"t_david@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.091Z","location":{"zip":"10458"},"name":{"first":"David","middle":"P","last":"Treutel"},"race":"Two
1318
1338
  or More Races","school":"530e595026403103360ff9fe","sis_id":"407098749","state_id":"250275588","student_number":"407098749","id":"530e5963049e75a9262d01ce"},"uri":"/v1.1/students/530e5963049e75a9262d01ce"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce"}]}'
1319
1339
  http_version:
1320
- recorded_at: Fri, 12 Sep 2014 20:49:00 GMT
1340
+ recorded_at: Sat, 13 Sep 2014 00:05:13 GMT
1321
1341
  - request:
1322
1342
  method: get
1323
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce
1343
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce
1324
1344
  body:
1325
1345
  encoding: US-ASCII
1326
1346
  string: ''
@@ -1329,6 +1349,8 @@ http_interactions:
1329
1349
  - ! '*/*; q=0.5, application/xml'
1330
1350
  Accept-Encoding:
1331
1351
  - gzip, deflate
1352
+ Authorization:
1353
+ - Bearer DEMO_TOKEN
1332
1354
  User-Agent:
1333
1355
  - Ruby
1334
1356
  response:
@@ -1345,7 +1367,7 @@ http_interactions:
1345
1367
  Content-Type:
1346
1368
  - application/json; charset=utf-8
1347
1369
  Date:
1348
- - Fri, 12 Sep 2014 20:49:00 GMT
1370
+ - Sat, 13 Sep 2014 00:05:13 GMT
1349
1371
  Etag:
1350
1372
  - ! '"553412241"'
1351
1373
  Server:
@@ -1394,10 +1416,10 @@ http_interactions:
1394
1416
  or More Races","school":"530e595026403103360ff9ff","sis_id":"443841431","state_id":"888501124","student_number":"443841431","id":"530e5963049e75a9262d0220"},"uri":"/v1.1/students/530e5963049e75a9262d0220"},{"data":{"created":"2014-02-26T21:15:15.683Z","credentials":{"district_username":"myrnaw92","district_password":"si7fuD3oh"},"district":"4fd43cc56d11340000000005","dob":"12/19/2006","ell_status":"Y","email":"w.myrna@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.288Z","location":{"zip":"10007"},"name":{"first":"Myrna","middle":"J","last":"Wilkinson"},"race":"Black
1395
1417
  or African American","school":"530e595026403103360ff9fe","sis_id":"447837192","state_id":"100034975","student_number":"447837192","id":"530e5963049e75a9262d0225"},"uri":"/v1.1/students/530e5963049e75a9262d0225"},{"data":{"created":"2014-02-26T21:15:15.691Z","credentials":{"district_username":"sharons28","district_password":"uo2eoL3aiZ"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"Y","email":"s_sharon@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.293Z","location":{"zip":"10309"},"name":{"first":"Sharon","middle":"R","last":"Schamberger"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"449269728","state_id":"870415736","student_number":"449269728","id":"530e5963049e75a9262d0227"},"uri":"/v1.1/students/530e5963049e75a9262d0227"},{"data":{"created":"2014-02-26T21:15:15.696Z","credentials":{"district_username":"christineh14","district_password":"aeWaib2ahs6"},"district":"4fd43cc56d11340000000005","dob":"11/13/1999","ell_status":"N","email":"christine.h@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.297Z","location":{"zip":"10466"},"name":{"first":"Christine","middle":"K","last":"Hoppe"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"450147614","state_id":"823859002","student_number":"450147614","id":"530e5963049e75a9262d0228"},"uri":"/v1.1/students/530e5963049e75a9262d0228"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5963049e75a9262d01cf"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228"}]}'
1396
1418
  http_version:
1397
- recorded_at: Fri, 12 Sep 2014 20:49:00 GMT
1419
+ recorded_at: Sat, 13 Sep 2014 00:05:13 GMT
1398
1420
  - request:
1399
1421
  method: get
1400
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228
1422
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228
1401
1423
  body:
1402
1424
  encoding: US-ASCII
1403
1425
  string: ''
@@ -1406,6 +1428,8 @@ http_interactions:
1406
1428
  - ! '*/*; q=0.5, application/xml'
1407
1429
  Accept-Encoding:
1408
1430
  - gzip, deflate
1431
+ Authorization:
1432
+ - Bearer DEMO_TOKEN
1409
1433
  User-Agent:
1410
1434
  - Ruby
1411
1435
  response:
@@ -1422,7 +1446,7 @@ http_interactions:
1422
1446
  Content-Type:
1423
1447
  - application/json; charset=utf-8
1424
1448
  Date:
1425
- - Fri, 12 Sep 2014 20:49:01 GMT
1449
+ - Sat, 13 Sep 2014 00:05:13 GMT
1426
1450
  Etag:
1427
1451
  - ! '"2018449721"'
1428
1452
  Server:
@@ -1470,10 +1494,10 @@ http_interactions:
1470
1494
  or African American","school":"530e595026403103360ff9fe","sis_id":"497063121","state_id":"572625208","student_number":"497063121","id":"530e5964049e75a9262d0280"},"uri":"/v1.1/students/530e5964049e75a9262d0280"},{"data":{"created":"2014-02-26T21:15:16.189Z","credentials":{"district_username":"patriciau09","district_password":"xeexie9Ah"},"district":"4fd43cc56d11340000000005","dob":"12/8/1996","ell_status":"N","email":"patricia.u@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.495Z","location":{"zip":"11233"},"name":{"first":"Patricia","middle":"D","last":"Upton"},"race":"Black
1471
1495
  or African American","school":"530e595026403103360ff9fd","sis_id":"497546809","state_id":"248483929","student_number":"497546809","id":"530e5964049e75a9262d0281"},"uri":"/v1.1/students/530e5964049e75a9262d0281"},{"data":{"created":"2014-02-26T21:15:16.195Z","credentials":{"district_username":"franklind35","district_password":"Otu6Geinah"},"district":"4fd43cc56d11340000000005","dob":"8/2/1997","ell_status":"N","email":"d_franklin@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.498Z","location":{"zip":"11693"},"name":{"first":"Franklin","middle":"D","last":"Daugherty"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"497595735","state_id":"904175015","student_number":"497595735","id":"530e5964049e75a9262d0282"},"uri":"/v1.1/students/530e5964049e75a9262d0282"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282"}]}'
1472
1496
  http_version:
1473
- recorded_at: Fri, 12 Sep 2014 20:49:01 GMT
1497
+ recorded_at: Sat, 13 Sep 2014 00:05:13 GMT
1474
1498
  - request:
1475
1499
  method: get
1476
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282
1500
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282
1477
1501
  body:
1478
1502
  encoding: US-ASCII
1479
1503
  string: ''
@@ -1482,6 +1506,8 @@ http_interactions:
1482
1506
  - ! '*/*; q=0.5, application/xml'
1483
1507
  Accept-Encoding:
1484
1508
  - gzip, deflate
1509
+ Authorization:
1510
+ - Bearer DEMO_TOKEN
1485
1511
  User-Agent:
1486
1512
  - Ruby
1487
1513
  response:
@@ -1498,7 +1524,7 @@ http_interactions:
1498
1524
  Content-Type:
1499
1525
  - application/json; charset=utf-8
1500
1526
  Date:
1501
- - Fri, 12 Sep 2014 20:49:01 GMT
1527
+ - Sat, 13 Sep 2014 00:05:14 GMT
1502
1528
  Etag:
1503
1529
  - ! '"-217056092"'
1504
1530
  Server:
@@ -1546,10 +1572,10 @@ http_interactions:
1546
1572
  or African American","school":"530e595026403103360ff9fd","sis_id":"534675808","state_id":"651155420","student_number":"534675808","id":"530e5964049e75a9262d02d9"},"uri":"/v1.1/students/530e5964049e75a9262d02d9"},{"data":{"created":"2014-02-26T21:15:16.705Z","credentials":{"district_username":"vivians08","district_password":"Quieze4sh"},"district":"4fd43cc56d11340000000005","dob":"2/27/2000","ell_status":"N","email":"s_vivian@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.690Z","location":{"zip":"11355"},"name":{"first":"Vivian","middle":"K","last":"Schaefer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"538539808","state_id":"195542681","student_number":"538539808","id":"530e5964049e75a9262d02de"},"uri":"/v1.1/students/530e5964049e75a9262d02de"},{"data":{"created":"2014-02-26T21:15:16.713Z","credentials":{"district_username":"williamf53","district_password":"ahng4Ceeth"},"district":"4fd43cc56d11340000000005","dob":"7/21/2003","ell_status":"Y","email":"william_f@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.694Z","location":{"zip":"11217"},"name":{"first":"William","middle":"M","last":"Franecki"},"race":"Two
1547
1573
  or More Races","school":"530e595026403103360ff9fe","sis_id":"538754153","state_id":"287289543","student_number":"538754153","id":"530e5964049e75a9262d02e1"},"uri":"/v1.1/students/530e5964049e75a9262d02e1"},{"data":{"created":"2014-02-26T21:15:16.740Z","credentials":{"district_username":"dianen73","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"6/16/1996","ell_status":"N","email":"n_diane@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.697Z","location":{"zip":"11691"},"name":{"first":"Diane","middle":"J","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"541253373","state_id":"817987559","student_number":"541253373","id":"530e5964049e75a9262d02e7"},"uri":"/v1.1/students/530e5964049e75a9262d02e7"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5964049e75a9262d0284"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7"}]}'
1548
1574
  http_version:
1549
- recorded_at: Fri, 12 Sep 2014 20:49:01 GMT
1575
+ recorded_at: Sat, 13 Sep 2014 00:05:14 GMT
1550
1576
  - request:
1551
1577
  method: get
1552
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7
1578
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7
1553
1579
  body:
1554
1580
  encoding: US-ASCII
1555
1581
  string: ''
@@ -1558,6 +1584,8 @@ http_interactions:
1558
1584
  - ! '*/*; q=0.5, application/xml'
1559
1585
  Accept-Encoding:
1560
1586
  - gzip, deflate
1587
+ Authorization:
1588
+ - Bearer DEMO_TOKEN
1561
1589
  User-Agent:
1562
1590
  - Ruby
1563
1591
  response:
@@ -1574,7 +1602,7 @@ http_interactions:
1574
1602
  Content-Type:
1575
1603
  - application/json; charset=utf-8
1576
1604
  Date:
1577
- - Fri, 12 Sep 2014 20:49:02 GMT
1605
+ - Sat, 13 Sep 2014 00:05:14 GMT
1578
1606
  Etag:
1579
1607
  - ! '"54877912"'
1580
1608
  Server:
@@ -1620,10 +1648,10 @@ http_interactions:
1620
1648
  Indian","school":"530e595026403103360ff9ff","sis_id":"582001873","state_id":"483980889","student_number":"582001873","id":"530e5965049e75a9262d0347"},"uri":"/v1.1/students/530e5965049e75a9262d0347"},{"data":{"created":"2014-02-26T21:15:17.302Z","credentials":{"district_username":"carries30","district_password":"ta4qua8E"},"district":"4fd43cc56d11340000000005","dob":"7/23/1995","ell_status":"N","email":"s_carrie@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.894Z","location":{"zip":"11221"},"name":{"first":"Carrie","middle":"R","last":"Stiedemann"},"race":"Two
1621
1649
  or More Races","school":"530e595026403103360ff9fd","sis_id":"582823730","state_id":"950480385","student_number":"582823730","id":"530e5965049e75a9262d0349"},"uri":"/v1.1/students/530e5965049e75a9262d0349"},{"data":{"created":"2014-02-26T21:15:17.310Z","credentials":{"district_username":"jamesa02","district_password":"chaph8AhPh"},"district":"4fd43cc56d11340000000005","dob":"1/28/2000","ell_status":"Y","email":"a.james@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.897Z","location":{"zip":"11414"},"name":{"first":"James","middle":"L","last":"Ankunding"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"583471602","state_id":"377458919","student_number":"583471602","id":"530e5965049e75a9262d034a"},"uri":"/v1.1/students/530e5965049e75a9262d034a"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a"}]}'
1622
1650
  http_version:
1623
- recorded_at: Fri, 12 Sep 2014 20:49:02 GMT
1651
+ recorded_at: Sat, 13 Sep 2014 00:05:14 GMT
1624
1652
  - request:
1625
1653
  method: get
1626
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a
1654
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a
1627
1655
  body:
1628
1656
  encoding: US-ASCII
1629
1657
  string: ''
@@ -1632,6 +1660,8 @@ http_interactions:
1632
1660
  - ! '*/*; q=0.5, application/xml'
1633
1661
  Accept-Encoding:
1634
1662
  - gzip, deflate
1663
+ Authorization:
1664
+ - Bearer DEMO_TOKEN
1635
1665
  User-Agent:
1636
1666
  - Ruby
1637
1667
  response:
@@ -1648,7 +1678,7 @@ http_interactions:
1648
1678
  Content-Type:
1649
1679
  - application/json; charset=utf-8
1650
1680
  Date:
1651
- - Fri, 12 Sep 2014 20:49:02 GMT
1681
+ - Sat, 13 Sep 2014 00:05:14 GMT
1652
1682
  Etag:
1653
1683
  - ! '"102126015"'
1654
1684
  Server:
@@ -1694,10 +1724,10 @@ http_interactions:
1694
1724
  or African American","school":"530e595026403103360ff9fe","sis_id":"636094492","state_id":"187787907","student_number":"636094492","id":"530e5965049e75a9262d03b5"},"uri":"/v1.1/students/530e5965049e75a9262d03b5"},{"data":{"created":"2014-02-26T21:15:17.758Z","credentials":{"district_username":"marvink72","district_password":"XieC1pha0Aa"},"district":"4fd43cc56d11340000000005","dob":"7/29/1997","ell_status":"Y","email":"k.marvin@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.090Z","location":{"zip":"10033"},"name":{"first":"Marvin","middle":"R","last":"Kerluke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"636206672","state_id":"513617328","student_number":"636206672","id":"530e5965049e75a9262d03b6"},"uri":"/v1.1/students/530e5965049e75a9262d03b6"},{"data":{"created":"2014-02-26T21:15:17.764Z","credentials":{"district_username":"brandons01","district_password":"uuGhie5poo"},"district":"4fd43cc56d11340000000005","dob":"2/9/2001","ell_status":"Y","email":"s.brandon@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.095Z","location":{"zip":"10303"},"name":{"first":"Brandon","middle":"D","last":"Satterfield"},"race":"Black
1695
1725
  or African American","school":"530e595026403103360ff9ff","sis_id":"636675101","state_id":"341635613","student_number":"636675101","id":"530e5965049e75a9262d03b7"},"uri":"/v1.1/students/530e5965049e75a9262d03b7"},{"data":{"created":"2014-02-26T21:15:17.768Z","credentials":{"district_username":"bettyg52","district_password":"ahd1eiceeV"},"district":"4fd43cc56d11340000000005","dob":"8/21/1999","ell_status":"Y","email":"g_betty@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.099Z","location":{"zip":"10026"},"name":{"first":"Betty","middle":"A","last":"Graham"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"636776752","state_id":"694201438","student_number":"636776752","id":"530e5965049e75a9262d03b8"},"uri":"/v1.1/students/530e5965049e75a9262d03b8"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5965049e75a9262d034b"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8"}]}'
1696
1726
  http_version:
1697
- recorded_at: Fri, 12 Sep 2014 20:49:02 GMT
1727
+ recorded_at: Sat, 13 Sep 2014 00:05:14 GMT
1698
1728
  - request:
1699
1729
  method: get
1700
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8
1730
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8
1701
1731
  body:
1702
1732
  encoding: US-ASCII
1703
1733
  string: ''
@@ -1706,6 +1736,8 @@ http_interactions:
1706
1736
  - ! '*/*; q=0.5, application/xml'
1707
1737
  Accept-Encoding:
1708
1738
  - gzip, deflate
1739
+ Authorization:
1740
+ - Bearer DEMO_TOKEN
1709
1741
  User-Agent:
1710
1742
  - Ruby
1711
1743
  response:
@@ -1722,7 +1754,7 @@ http_interactions:
1722
1754
  Content-Type:
1723
1755
  - application/json; charset=utf-8
1724
1756
  Date:
1725
- - Fri, 12 Sep 2014 20:49:03 GMT
1757
+ - Sat, 13 Sep 2014 00:05:14 GMT
1726
1758
  Etag:
1727
1759
  - ! '"-1078273975"'
1728
1760
  Server:
@@ -1769,10 +1801,10 @@ http_interactions:
1769
1801
  or More Races","school":"530e595026403103360ff9fd","sis_id":"674519152","state_id":"506308109","student_number":"674519152","id":"530e5966049e75a9262d040c"},"uri":"/v1.1/students/530e5966049e75a9262d040c"},{"data":{"created":"2014-02-26T21:15:18.130Z","credentials":{"district_username":"victoriag22","district_password":"Cibaexo8o"},"district":"4fd43cc56d11340000000005","dob":"5/10/1995","ell_status":"N","email":"g_victoria@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.310Z","location":{"zip":"10469"},"name":{"first":"Victoria","middle":"T","last":"Gerlach"},"race":"Two
1770
1802
  or More Races","school":"530e595026403103360ff9fd","sis_id":"675767222","state_id":"714871884","student_number":"675767222","id":"530e5966049e75a9262d040f"},"uri":"/v1.1/students/530e5966049e75a9262d040f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f"}]}'
1771
1803
  http_version:
1772
- recorded_at: Fri, 12 Sep 2014 20:49:03 GMT
1804
+ recorded_at: Sat, 13 Sep 2014 00:05:14 GMT
1773
1805
  - request:
1774
1806
  method: get
1775
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f
1807
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f
1776
1808
  body:
1777
1809
  encoding: US-ASCII
1778
1810
  string: ''
@@ -1781,6 +1813,8 @@ http_interactions:
1781
1813
  - ! '*/*; q=0.5, application/xml'
1782
1814
  Accept-Encoding:
1783
1815
  - gzip, deflate
1816
+ Authorization:
1817
+ - Bearer DEMO_TOKEN
1784
1818
  User-Agent:
1785
1819
  - Ruby
1786
1820
  response:
@@ -1797,7 +1831,7 @@ http_interactions:
1797
1831
  Content-Type:
1798
1832
  - application/json; charset=utf-8
1799
1833
  Date:
1800
- - Fri, 12 Sep 2014 20:49:03 GMT
1834
+ - Sat, 13 Sep 2014 00:05:15 GMT
1801
1835
  Etag:
1802
1836
  - ! '"-536236596"'
1803
1837
  Server:
@@ -1842,10 +1876,10 @@ http_interactions:
1842
1876
  or African American","school":"530e595026403103360ff9fd","sis_id":"727160681","state_id":"381222631","student_number":"727160681","id":"530e5966049e75a9262d046b"},"uri":"/v1.1/students/530e5966049e75a9262d046b"},{"data":{"created":"2014-02-26T21:15:18.511Z","credentials":{"district_username":"chesterw93","district_password":"co5Eepohng"},"district":"4fd43cc56d11340000000005","dob":"11/15/1998","ell_status":"Y","email":"w_chester@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.513Z","location":{"zip":"11233"},"name":{"first":"Chester","middle":"R","last":"Watsica"},"race":"Black
1843
1877
  or African American","school":"530e595026403103360ff9fd","sis_id":"728386393","state_id":"921766728","student_number":"728386393","id":"530e5966049e75a9262d046c"},"uri":"/v1.1/students/530e5966049e75a9262d046c"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d0412"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c"}]}'
1844
1878
  http_version:
1845
- recorded_at: Fri, 12 Sep 2014 20:49:03 GMT
1879
+ recorded_at: Sat, 13 Sep 2014 00:05:15 GMT
1846
1880
  - request:
1847
1881
  method: get
1848
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c
1882
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c
1849
1883
  body:
1850
1884
  encoding: US-ASCII
1851
1885
  string: ''
@@ -1854,6 +1888,8 @@ http_interactions:
1854
1888
  - ! '*/*; q=0.5, application/xml'
1855
1889
  Accept-Encoding:
1856
1890
  - gzip, deflate
1891
+ Authorization:
1892
+ - Bearer DEMO_TOKEN
1857
1893
  User-Agent:
1858
1894
  - Ruby
1859
1895
  response:
@@ -1870,7 +1906,7 @@ http_interactions:
1870
1906
  Content-Type:
1871
1907
  - application/json; charset=utf-8
1872
1908
  Date:
1873
- - Fri, 12 Sep 2014 20:49:04 GMT
1909
+ - Sat, 13 Sep 2014 00:05:15 GMT
1874
1910
  Etag:
1875
1911
  - ! '"2113491514"'
1876
1912
  Server:
@@ -1919,10 +1955,10 @@ http_interactions:
1919
1955
  or African American","school":"530e595026403103360ff9fe","sis_id":"768666664","state_id":"544947371","student_number":"768666664","id":"530e5966049e75a9262d04d5"},"uri":"/v1.1/students/530e5966049e75a9262d04d5"},{"data":{"created":"2014-02-26T21:15:18.952Z","credentials":{"district_username":"roccos84","district_password":"rairaSh7p"},"district":"4fd43cc56d11340000000005","dob":"8/2/1998","ell_status":"N","email":"rocco.s@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.703Z","location":{"zip":"10014"},"name":{"first":"Rocco","middle":"A","last":"Schumm"},"race":"Black
1920
1956
  or African American","school":"530e595026403103360ff9fd","sis_id":"768841884","state_id":"239367560","student_number":"768841884","id":"530e5966049e75a9262d04d7"},"uri":"/v1.1/students/530e5966049e75a9262d04d7"},{"data":{"created":"2014-02-26T21:15:18.968Z","credentials":{"district_username":"quentinf79","district_password":"fohV1oos9Ee"},"district":"4fd43cc56d11340000000005","dob":"3/30/1996","ell_status":"Y","email":"quentin.f@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.706Z","location":{"zip":"11412"},"name":{"first":"Quentin","middle":"C","last":"Feil"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"773959679","state_id":"500526668","student_number":"773959679","id":"530e5966049e75a9262d04d8"},"uri":"/v1.1/students/530e5966049e75a9262d04d8"},{"data":{"created":"2014-02-26T21:15:18.986Z","credentials":{"district_username":"leighh62","district_password":"Eiw2yah6"},"district":"4fd43cc56d11340000000005","dob":"6/3/2000","ell_status":"N","email":"h_leigh@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.710Z","location":{"zip":"11234"},"name":{"first":"Leigh","middle":"M","last":"Hilll"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775530462","state_id":"720424076","student_number":"775530462","id":"530e5966049e75a9262d04d9"},"uri":"/v1.1/students/530e5966049e75a9262d04d9"},{"data":{"created":"2014-02-26T21:15:18.992Z","credentials":{"district_username":"lorad80","district_password":"looy6Huaghae"},"district":"4fd43cc56d11340000000005","dob":"7/4/2003","ell_status":"N","email":"lora_d@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.715Z","location":{"zip":"11213"},"name":{"first":"Lora","middle":"C","last":"Dicki"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"775672580","state_id":"510806650","student_number":"775672580","id":"530e5966049e75a9262d04da"},"uri":"/v1.1/students/530e5966049e75a9262d04da"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da"}]}'
1921
1957
  http_version:
1922
- recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
1958
+ recorded_at: Sat, 13 Sep 2014 00:05:15 GMT
1923
1959
  - request:
1924
1960
  method: get
1925
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da
1961
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da
1926
1962
  body:
1927
1963
  encoding: US-ASCII
1928
1964
  string: ''
@@ -1931,6 +1967,8 @@ http_interactions:
1931
1967
  - ! '*/*; q=0.5, application/xml'
1932
1968
  Accept-Encoding:
1933
1969
  - gzip, deflate
1970
+ Authorization:
1971
+ - Bearer DEMO_TOKEN
1934
1972
  User-Agent:
1935
1973
  - Ruby
1936
1974
  response:
@@ -1947,7 +1985,7 @@ http_interactions:
1947
1985
  Content-Type:
1948
1986
  - application/json; charset=utf-8
1949
1987
  Date:
1950
- - Fri, 12 Sep 2014 20:49:04 GMT
1988
+ - Sat, 13 Sep 2014 00:05:15 GMT
1951
1989
  Etag:
1952
1990
  - ! '"1079310895"'
1953
1991
  Server:
@@ -1996,10 +2034,10 @@ http_interactions:
1996
2034
  or African American","school":"530e595026403103360ff9fe","sis_id":"819021071","state_id":"575688366","student_number":"819021071","id":"530e5967049e75a9262d054d"},"uri":"/v1.1/students/530e5967049e75a9262d054d"},{"data":{"created":"2014-02-26T21:15:19.474Z","credentials":{"district_username":"edwarde77","district_password":"wo4thoep4AB"},"district":"4fd43cc56d11340000000005","dob":"2/25/2003","ell_status":"N","email":"e.edward@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.927Z","location":{"zip":"11210"},"name":{"first":"Edward","middle":"M","last":"Emard"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"821986877","state_id":"279178317","student_number":"821986877","id":"530e5967049e75a9262d0553"},"uri":"/v1.1/students/530e5967049e75a9262d0553"},{"data":{"created":"2014-02-26T21:15:19.485Z","credentials":{"district_username":"samuelo65","district_password":"fai9ahYoo"},"district":"4fd43cc56d11340000000005","dob":"8/4/2005","ell_status":"N","email":"o.samuel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.929Z","location":{"zip":"10010"},"name":{"first":"Samuel","middle":"B","last":"O''Keefe"},"race":"Black
1997
2035
  or African American","school":"530e595026403103360ff9fe","sis_id":"822547765","state_id":"966505139","student_number":"822547765","id":"530e5967049e75a9262d0557"},"uri":"/v1.1/students/530e5967049e75a9262d0557"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d04db"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557"}]}'
1998
2036
  http_version:
1999
- recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
2037
+ recorded_at: Sat, 13 Sep 2014 00:05:15 GMT
2000
2038
  - request:
2001
2039
  method: get
2002
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557
2040
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557
2003
2041
  body:
2004
2042
  encoding: US-ASCII
2005
2043
  string: ''
@@ -2008,6 +2046,8 @@ http_interactions:
2008
2046
  - ! '*/*; q=0.5, application/xml'
2009
2047
  Accept-Encoding:
2010
2048
  - gzip, deflate
2049
+ Authorization:
2050
+ - Bearer DEMO_TOKEN
2011
2051
  User-Agent:
2012
2052
  - Ruby
2013
2053
  response:
@@ -2024,7 +2064,7 @@ http_interactions:
2024
2064
  Content-Type:
2025
2065
  - application/json; charset=utf-8
2026
2066
  Date:
2027
- - Fri, 12 Sep 2014 20:49:04 GMT
2067
+ - Sat, 13 Sep 2014 00:05:15 GMT
2028
2068
  Etag:
2029
2069
  - ! '"-1747551844"'
2030
2070
  Server:
@@ -2071,10 +2111,10 @@ http_interactions:
2071
2111
  or African American","school":"530e595026403103360ff9fe","sis_id":"865434690","state_id":"987022429","student_number":"865434690","id":"530e5967049e75a9262d05ad"},"uri":"/v1.1/students/530e5967049e75a9262d05ad"},{"data":{"created":"2014-02-26T21:15:19.844Z","credentials":{"district_username":"tonyah94","district_password":"Bo1oa2tah"},"district":"4fd43cc56d11340000000005","dob":"7/31/2001","ell_status":"Y","email":"tonya_h@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.119Z","location":{"zip":"11101"},"name":{"first":"Tonya","middle":"T","last":"Hammes"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"865828594","state_id":"468226764","student_number":"865828594","id":"530e5967049e75a9262d05ae"},"uri":"/v1.1/students/530e5967049e75a9262d05ae"},{"data":{"created":"2014-02-26T21:15:19.856Z","credentials":{"district_username":"paulb39","district_password":"bu7iVaiNgaph"},"district":"4fd43cc56d11340000000005","dob":"9/15/1999","ell_status":"N","email":"paul.b@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.123Z","location":{"zip":"10461"},"name":{"first":"Paul","middle":"E","last":"Bergnaum"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"868997339","state_id":"259925233","student_number":"868997339","id":"530e5967049e75a9262d05af"},"uri":"/v1.1/students/530e5967049e75a9262d05af"},{"data":{"created":"2014-02-26T21:15:19.863Z","credentials":{"district_username":"lulab78","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"6/7/2000","ell_status":"N","email":"lula_b@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.128Z","location":{"zip":"10309"},"name":{"first":"Lula","middle":"R","last":"Bode"},"race":"American
2072
2112
  Indian","school":"530e595026403103360ff9ff","sis_id":"870605578","state_id":"296193871","student_number":"870605578","id":"530e5967049e75a9262d05b0"},"uri":"/v1.1/students/530e5967049e75a9262d05b0"},{"data":{"created":"2014-02-26T21:15:19.868Z","credentials":{"district_username":"jasonw13","district_password":"taemee1Ta"},"district":"4fd43cc56d11340000000005","dob":"5/10/2002","ell_status":"N","email":"w_jason@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.132Z","location":{"zip":"11238"},"name":{"first":"Jason","middle":"J","last":"Wilderman"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"870661913","state_id":"503680014","student_number":"870661913","id":"530e5967049e75a9262d05b1"},"uri":"/v1.1/students/530e5967049e75a9262d05b1"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1"}]}'
2073
2113
  http_version:
2074
- recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
2114
+ recorded_at: Sat, 13 Sep 2014 00:05:15 GMT
2075
2115
  - request:
2076
2116
  method: get
2077
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1
2117
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1
2078
2118
  body:
2079
2119
  encoding: US-ASCII
2080
2120
  string: ''
@@ -2083,6 +2123,8 @@ http_interactions:
2083
2123
  - ! '*/*; q=0.5, application/xml'
2084
2124
  Accept-Encoding:
2085
2125
  - gzip, deflate
2126
+ Authorization:
2127
+ - Bearer DEMO_TOKEN
2086
2128
  User-Agent:
2087
2129
  - Ruby
2088
2130
  response:
@@ -2099,7 +2141,7 @@ http_interactions:
2099
2141
  Content-Type:
2100
2142
  - application/json; charset=utf-8
2101
2143
  Date:
2102
- - Fri, 12 Sep 2014 20:49:05 GMT
2144
+ - Sat, 13 Sep 2014 00:05:15 GMT
2103
2145
  Etag:
2104
2146
  - ! '"1865073188"'
2105
2147
  Server:
@@ -2146,10 +2188,10 @@ http_interactions:
2146
2188
  or More Races","school":"530e595026403103360ff9fe","sis_id":"912597949","state_id":"486294596","student_number":"912597949","id":"530e5968049e75a9262d05e0"},"uri":"/v1.1/students/530e5968049e75a9262d05e0"},{"data":{"created":"2014-02-26T21:15:20.164Z","credentials":{"district_username":"ronaldp24","district_password":"Egaengah8Ne"},"district":"4fd43cc56d11340000000005","dob":"3/7/2003","ell_status":"Y","email":"p.ronald@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.329Z","location":{"zip":"11225"},"name":{"first":"Ronald","middle":"K","last":"Padberg"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"912667824","state_id":"430895037","student_number":"912667824","id":"530e5968049e75a9262d05e1"},"uri":"/v1.1/students/530e5968049e75a9262d05e1"},{"data":{"created":"2014-02-26T21:15:20.168Z","credentials":{"district_username":"marthag20","district_password":"iiban1oB6"},"district":"4fd43cc56d11340000000005","dob":"4/2/1998","ell_status":"N","email":"g_martha@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.332Z","location":{"zip":"11694"},"name":{"first":"Martha","middle":"T","last":"Greenholt"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"913113920","state_id":"975729843","student_number":"913113920","id":"530e5968049e75a9262d05e2"},"uri":"/v1.1/students/530e5968049e75a9262d05e2"},{"data":{"created":"2014-02-26T21:15:20.173Z","credentials":{"district_username":"johnw53","district_password":"och8Aw0Ie"},"district":"4fd43cc56d11340000000005","dob":"1/31/1998","ell_status":"Y","email":"john_w@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.336Z","location":{"zip":"10451"},"name":{"first":"John","middle":"K","last":"Watsica"},"race":"Two
2147
2189
  or More Races","school":"530e595026403103360ff9fd","sis_id":"914153353","state_id":"765870576","student_number":"914153353","id":"530e5968049e75a9262d05e3"},"uri":"/v1.1/students/530e5968049e75a9262d05e3"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5967049e75a9262d05b2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3"}]}'
2148
2190
  http_version:
2149
- recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
2191
+ recorded_at: Sat, 13 Sep 2014 00:05:15 GMT
2150
2192
  - request:
2151
2193
  method: get
2152
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3
2194
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3
2153
2195
  body:
2154
2196
  encoding: US-ASCII
2155
2197
  string: ''
@@ -2158,6 +2200,8 @@ http_interactions:
2158
2200
  - ! '*/*; q=0.5, application/xml'
2159
2201
  Accept-Encoding:
2160
2202
  - gzip, deflate
2203
+ Authorization:
2204
+ - Bearer DEMO_TOKEN
2161
2205
  User-Agent:
2162
2206
  - Ruby
2163
2207
  response:
@@ -2174,7 +2218,7 @@ http_interactions:
2174
2218
  Content-Type:
2175
2219
  - application/json; charset=utf-8
2176
2220
  Date:
2177
- - Fri, 12 Sep 2014 20:49:05 GMT
2221
+ - Sat, 13 Sep 2014 00:05:16 GMT
2178
2222
  Etag:
2179
2223
  - ! '"-445703461"'
2180
2224
  Server:
@@ -2218,10 +2262,10 @@ http_interactions:
2218
2262
  or African American","school":"530e595026403103360ff9fd","sis_id":"954752985","state_id":"770757190","student_number":"954752985","id":"530e5968049e75a9262d0613"},"uri":"/v1.1/students/530e5968049e75a9262d0613"},{"data":{"created":"2014-02-26T21:15:20.391Z","credentials":{"district_username":"tommyl70","district_password":"ieR5ait4ACe"},"district":"4fd43cc56d11340000000005","dob":"10/26/1998","ell_status":"N","email":"l_tommy@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.532Z","location":{"zip":"11224"},"name":{"first":"Tommy","middle":"I","last":"Langworth"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"957214270","state_id":"970294131","student_number":"957214270","id":"530e5968049e75a9262d0614"},"uri":"/v1.1/students/530e5968049e75a9262d0614"},{"data":{"created":"2014-02-26T21:15:20.394Z","credentials":{"district_username":"alexism32","district_password":"iup9uThie"},"district":"4fd43cc56d11340000000005","dob":"4/28/2007","ell_status":"N","email":"m.alexis@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.537Z","location":{"zip":"10463"},"name":{"first":"Alexis","middle":"E","last":"Miller"},"race":"Two
2219
2263
  or More Races","school":"530e595026403103360ff9fe","sis_id":"957702932","state_id":"575918444","student_number":"957702932","id":"530e5968049e75a9262d0615"},"uri":"/v1.1/students/530e5968049e75a9262d0615"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615"}]}'
2220
2264
  http_version:
2221
- recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
2265
+ recorded_at: Sat, 13 Sep 2014 00:05:16 GMT
2222
2266
  - request:
2223
2267
  method: get
2224
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615
2268
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615
2225
2269
  body:
2226
2270
  encoding: US-ASCII
2227
2271
  string: ''
@@ -2230,6 +2274,8 @@ http_interactions:
2230
2274
  - ! '*/*; q=0.5, application/xml'
2231
2275
  Accept-Encoding:
2232
2276
  - gzip, deflate
2277
+ Authorization:
2278
+ - Bearer DEMO_TOKEN
2233
2279
  User-Agent:
2234
2280
  - Ruby
2235
2281
  response:
@@ -2246,7 +2292,7 @@ http_interactions:
2246
2292
  Content-Type:
2247
2293
  - application/json; charset=utf-8
2248
2294
  Date:
2249
- - Fri, 12 Sep 2014 20:49:05 GMT
2295
+ - Sat, 13 Sep 2014 00:05:16 GMT
2250
2296
  Etag:
2251
2297
  - ! '"-1099254497"'
2252
2298
  Server:
@@ -2289,10 +2335,10 @@ http_interactions:
2289
2335
  or African American","school":"530e595026403103360ff9ff","sis_id":"988363878","state_id":"528811928","student_number":"988363878","id":"530e5968049e75a9262d0641"},"uri":"/v1.1/students/530e5968049e75a9262d0641"},{"data":{"created":"2014-02-26T21:15:20.591Z","credentials":{"district_username":"marjoriew79","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"8/1/2005","ell_status":"N","email":"w_marjorie@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.717Z","location":{"zip":"11436"},"name":{"first":"Marjorie","middle":"J","last":"White"},"race":"Black
2290
2336
  or African American","school":"530e595026403103360ff9fe","sis_id":"989693879","state_id":"568608854","student_number":"989693879","id":"530e5968049e75a9262d0642"},"uri":"/v1.1/students/530e5968049e75a9262d0642"},{"data":{"created":"2014-02-26T21:15:20.595Z","credentials":{"district_username":"stevenr21","district_password":"Cae6Zoogh"},"district":"4fd43cc56d11340000000005","dob":"8/19/2006","ell_status":"N","email":"steven.r@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.720Z","location":{"zip":"11413"},"name":{"first":"Steven","middle":"A","last":"Robel"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"992399521","state_id":"486242945","student_number":"992399521","id":"530e5968049e75a9262d0643"},"uri":"/v1.1/students/530e5968049e75a9262d0643"},{"data":{"created":"2014-02-26T21:15:20.601Z","credentials":{"district_username":"beths47","district_password":"keefooY9anoe"},"district":"4fd43cc56d11340000000005","dob":"1/21/2004","ell_status":"Y","email":"s_beth@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.724Z","location":{"zip":"11106"},"name":{"first":"Beth","middle":"K","last":"Spencer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"992702547","state_id":"899990945","student_number":"992702547","id":"530e5968049e75a9262d0644"},"uri":"/v1.1/students/530e5968049e75a9262d0644"},{"data":{"created":"2014-02-26T21:15:20.604Z","credentials":{"district_username":"jeffreyt39","district_password":"Daichaep5"},"district":"4fd43cc56d11340000000005","dob":"2/1/1997","ell_status":"N","email":"jeffrey_t@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.728Z","location":{"zip":"10032"},"name":{"first":"Jeffrey","middle":"C","last":"Turner"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993335439","state_id":"985250921","student_number":"993335439","id":"530e5968049e75a9262d0645"},"uri":"/v1.1/students/530e5968049e75a9262d0645"},{"data":{"created":"2014-02-26T21:15:20.608Z","credentials":{"district_username":"samuelc82","district_password":"Ooghee1j"},"district":"4fd43cc56d11340000000005","dob":"11/28/1998","ell_status":"N","email":"c_samuel@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.732Z","location":{"zip":"10035"},"name":{"first":"Samuel","middle":"S","last":"Crona"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993756982","state_id":"496635778","student_number":"993756982","id":"530e5968049e75a9262d0646"},"uri":"/v1.1/students/530e5968049e75a9262d0646"},{"data":{"created":"2014-02-26T21:15:20.611Z","credentials":{"district_username":"marjoriel40","district_password":"iushoo1It"},"district":"4fd43cc56d11340000000005","dob":"11/4/1997","ell_status":"N","email":"marjorie_l@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.735Z","location":{"zip":"10016"},"name":{"first":"Marjorie","middle":"L","last":"Lesch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"994397040","state_id":"828598322","student_number":"994397040","id":"530e5968049e75a9262d0647"},"uri":"/v1.1/students/530e5968049e75a9262d0647"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d0616"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647"}]}'
2291
2337
  http_version:
2292
- recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
2338
+ recorded_at: Sat, 13 Sep 2014 00:05:16 GMT
2293
2339
  - request:
2294
2340
  method: get
2295
- uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647
2341
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647
2296
2342
  body:
2297
2343
  encoding: US-ASCII
2298
2344
  string: ''
@@ -2301,6 +2347,8 @@ http_interactions:
2301
2347
  - ! '*/*; q=0.5, application/xml'
2302
2348
  Accept-Encoding:
2303
2349
  - gzip, deflate
2350
+ Authorization:
2351
+ - Bearer DEMO_TOKEN
2304
2352
  User-Agent:
2305
2353
  - Ruby
2306
2354
  response:
@@ -2317,7 +2365,7 @@ http_interactions:
2317
2365
  Content-Type:
2318
2366
  - application/json; charset=utf-8
2319
2367
  Date:
2320
- - Fri, 12 Sep 2014 20:49:06 GMT
2368
+ - Sat, 13 Sep 2014 00:05:16 GMT
2321
2369
  Etag:
2322
2370
  - ! '"803246346"'
2323
2371
  Server:
@@ -2335,5 +2383,5 @@ http_interactions:
2335
2383
  or African American","school":"530e595026403103360ff9ff","sis_id":"998414435","state_id":"134063200","student_number":"998414435","id":"530e5968049e75a9262d064a"},"uri":"/v1.1/students/530e5968049e75a9262d064a"},{"data":{"created":"2014-02-26T21:15:20.623Z","credentials":{"district_username":"markr17","district_password":"yo0ohYo6ro"},"district":"4fd43cc56d11340000000005","dob":"8/24/1996","ell_status":"N","email":"r_mark@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.750Z","location":{"zip":"10034"},"name":{"first":"Mark","middle":"S","last":"Reilly"},"race":"American
2336
2384
  Indian","school":"530e595026403103360ff9fd","sis_id":"999447617","state_id":"651135073","student_number":"999447617","id":"530e5968049e75a9262d064b"},"uri":"/v1.1/students/530e5968049e75a9262d064b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d0648"}]}'
2337
2385
  http_version:
2338
- recorded_at: Fri, 12 Sep 2014 20:49:06 GMT
2339
- recorded_with: VCR 2.4.0
2386
+ recorded_at: Sat, 13 Sep 2014 00:05:16 GMT
2387
+ recorded_with: VCR 2.9.3