clever-ruby 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/CHANGELOG.md +4 -0
- data/clever-ruby.gemspec +2 -1
- data/lib/clever-ruby/api_operations/list.rb +71 -0
- data/lib/clever-ruby/api_operations/nested_list.rb +49 -0
- data/lib/clever-ruby/api_operations/page.rb +16 -8
- data/lib/clever-ruby/version.rb +1 -1
- data/test/data/vcr_cassettes/{district_count.yml → Clever_APIOperations_List/counts_district_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{event_count.yml → Clever_APIOperations_List/counts_event_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{school_count.yml → Clever_APIOperations_List/counts_school_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{section_count.yml → Clever_APIOperations_List/counts_section_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{student_count.yml → Clever_APIOperations_List/counts_student_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{teacher_count.yml → Clever_APIOperations_List/counts_teacher_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{district_find_one.yml → Clever_APIOperations_List/finds_a_single_district.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_one.yml → Clever_APIOperations_List/finds_a_single_event.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_one.yml → Clever_APIOperations_List/finds_a_single_school.yml} +11 -7
- data/test/data/vcr_cassettes/{section_find_one.yml → Clever_APIOperations_List/finds_a_single_section.yml} +11 -7
- data/test/data/vcr_cassettes/{student_find_one.yml → Clever_APIOperations_List/finds_a_single_student.yml} +11 -7
- data/test/data/vcr_cassettes/{teacher_find_one.yml → Clever_APIOperations_List/finds_a_single_teacher.yml} +11 -7
- data/test/data/vcr_cassettes/{districts.yml → Clever_APIOperations_List/finds_districts_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{district_find_multiple.yml → Clever_APIOperations_List/finds_districts_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{events.yml → Clever_APIOperations_List/finds_events_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_multiple.yml → Clever_APIOperations_List/finds_events_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{schools.yml → Clever_APIOperations_List/finds_schools_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_multiple.yml → Clever_APIOperations_List/finds_schools_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{section_find_by_page.yml → Clever_APIOperations_List/finds_sections_by_page.yml} +26 -16
- data/test/data/vcr_cassettes/{section_find_multiple.yml → Clever_APIOperations_List/finds_sections_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{students.yml → Clever_APIOperations_List/finds_students_by_page.yml} +61 -37
- data/test/data/vcr_cassettes/{student_find_multiple.yml → Clever_APIOperations_List/finds_students_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{teachers.yml → Clever_APIOperations_List/finds_teachers_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{teacher_find_multiple.yml → Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{district_find_by_page.yml → Clever_APIOperations_List/retrieves_all_district.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_by_page.yml → Clever_APIOperations_List/retrieves_all_event.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_by_page.yml → Clever_APIOperations_List/retrieves_all_school.yml} +11 -7
- data/test/data/vcr_cassettes/{sections.yml → Clever_APIOperations_List/retrieves_all_section.yml} +26 -16
- data/test/data/vcr_cassettes/{student_find_by_page.yml → Clever_APIOperations_List/retrieves_all_student.yml} +61 -37
- data/test/data/vcr_cassettes/{teacher_find_by_page.yml → Clever_APIOperations_List/retrieves_all_teacher.yml} +11 -7
- data/test/data/vcr_cassettes/{districts_event_pages.yml → Clever_District/pages_methods/pages_a_district_s_events.yml} +56 -34
- data/test/data/vcr_cassettes/{districts_school_pages.yml → Clever_District/pages_methods/pages_a_district_s_schools.yml} +26 -16
- data/test/data/vcr_cassettes/{districts_section_pages.yml → Clever_District/pages_methods/pages_a_district_s_sections.yml} +206 -124
- data/test/data/vcr_cassettes/{districts_student_pages.yml → Clever_District/pages_methods/pages_a_district_s_students.yml} +121 -73
- data/test/data/vcr_cassettes/{districts_teacher_pages.yml → Clever_District/pages_methods/pages_a_district_s_teachers.yml} +61 -37
- data/test/data/vcr_cassettes/{district_events.yml → Clever_NestedResource/retrieves_a_district_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{district_schools.yml → Clever_NestedResource/retrieves_a_district_s_schools.yml} +21 -13
- data/test/data/vcr_cassettes/{district_sections.yml → Clever_NestedResource/retrieves_a_district_s_sections.yml} +51 -31
- data/test/data/vcr_cassettes/{district_students.yml → Clever_NestedResource/retrieves_a_district_s_students.yml} +121 -73
- data/test/data/vcr_cassettes/{district_teachers.yml → Clever_NestedResource/retrieves_a_district_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{school_district.yml → Clever_NestedResource/retrieves_a_school_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{school_events.yml → Clever_NestedResource/retrieves_a_school_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{school_sections.yml → Clever_NestedResource/retrieves_a_school_s_sections.yml} +31 -19
- data/test/data/vcr_cassettes/{school_students.yml → Clever_NestedResource/retrieves_a_school_s_students.yml} +61 -37
- data/test/data/vcr_cassettes/{school_teachers.yml → Clever_NestedResource/retrieves_a_school_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{section_district.yml → Clever_NestedResource/retrieves_a_section_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{section_events.yml → Clever_NestedResource/retrieves_a_section_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{section_school.yml → Clever_NestedResource/retrieves_a_section_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{section_students.yml → Clever_NestedResource/retrieves_a_section_s_students.yml} +21 -13
- data/test/data/vcr_cassettes/{section_teacher.yml → Clever_NestedResource/retrieves_a_section_s_teacher.yml} +16 -10
- data/test/data/vcr_cassettes/{student_district.yml → Clever_NestedResource/retrieves_a_student_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{student_events.yml → Clever_NestedResource/retrieves_a_student_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{student_school.yml → Clever_NestedResource/retrieves_a_student_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{student_sections.yml → Clever_NestedResource/retrieves_a_student_s_sections.yml} +21 -13
- data/test/data/vcr_cassettes/{student_teachers.yml → Clever_NestedResource/retrieves_a_student_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_district.yml → Clever_NestedResource/retrieves_a_teacher_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{teacher_events.yml → Clever_NestedResource/retrieves_a_teacher_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_school.yml → Clever_NestedResource/retrieves_a_teacher_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{teacher_sections.yml → Clever_NestedResource/retrieves_a_teacher_s_sections.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_students.yml → Clever_NestedResource/retrieves_a_teacher_s_students.yml} +21 -13
- data/test/data/vcr_cassettes/{error_handling.yml → Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml} +16 -10
- data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +49 -0
- data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +719 -0
- data/test/data/vcr_cassettes/last_method/resource/has_working_first_and_last_methods.yml +648 -0
- data/test/integration/api_operations/list_test.rb +40 -50
- data/test/integration/district_test.rb +13 -15
- data/test/integration/error_handling_test.rb +6 -8
- data/test/integration/last_test.rb +70 -0
- data/test/integration/nested_resource_test.rb +7 -9
- data/test/test_helper.rb +3 -0
- data/test/unit/clever_test.rb +1 -1
- data/test/unit/configuration_test.rb +6 -0
- data/test/unit/optional_attributes_test.rb +4 -10
- metadata +147 -129
- data/test/data/vcr_cassettes/schools_optional_attributes.yml +0 -55
- 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://
|
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
|
-
-
|
32
|
+
- Sat, 13 Sep 2014 00:06:24 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:
|
45
|
+
recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
|
44
46
|
- request:
|
45
47
|
method: get
|
46
|
-
uri: https://
|
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
|
-
-
|
75
|
+
- Sat, 13 Sep 2014 00:06:24 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:
|
88
|
+
recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
|
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
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:06:25 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"1657555549"'
|
115
121
|
Server:
|
@@ -133,10 +139,10 @@ http_interactions:
|
|
133
139
|
Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
|
134
140
|
Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
|
135
141
|
http_version:
|
136
|
-
recorded_at:
|
142
|
+
recorded_at: Sat, 13 Sep 2014 00:06:25 GMT
|
137
143
|
- request:
|
138
144
|
method: get
|
139
|
-
uri: https://
|
145
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
|
140
146
|
body:
|
141
147
|
encoding: US-ASCII
|
142
148
|
string: ''
|
@@ -145,6 +151,8 @@ http_interactions:
|
|
145
151
|
- ! '*/*; q=0.5, application/xml'
|
146
152
|
Accept-Encoding:
|
147
153
|
- gzip, deflate
|
154
|
+
Authorization:
|
155
|
+
- Bearer DEMO_TOKEN
|
148
156
|
User-Agent:
|
149
157
|
- Ruby
|
150
158
|
response:
|
@@ -161,7 +169,7 @@ http_interactions:
|
|
161
169
|
Content-Type:
|
162
170
|
- application/json; charset=utf-8
|
163
171
|
Date:
|
164
|
-
-
|
172
|
+
- Sat, 13 Sep 2014 00:06:25 GMT
|
165
173
|
Etag:
|
166
174
|
- ! '"1657555549"'
|
167
175
|
Server:
|
@@ -185,5 +193,5 @@ http_interactions:
|
|
185
193
|
Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
|
186
194
|
Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
|
187
195
|
http_version:
|
188
|
-
recorded_at:
|
189
|
-
recorded_with: VCR 2.
|
196
|
+
recorded_at: Sat, 13 Sep 2014 00:06:25 GMT
|
197
|
+
recorded_with: VCR 2.9.3
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://
|
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
|
-
-
|
32
|
+
- Sat, 13 Sep 2014 00:07:46 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:
|
45
|
+
recorded_at: Sat, 13 Sep 2014 00:07:46 GMT
|
44
46
|
- request:
|
45
47
|
method: get
|
46
|
-
uri: https://
|
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
|
-
-
|
75
|
+
- Sat, 13 Sep 2014 00:07:46 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:
|
88
|
+
recorded_at: Sat, 13 Sep 2014 00:07:46 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections
|
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
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:07:46 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"967737503"'
|
115
121
|
Server:
|
@@ -386,10 +392,10 @@ http_interactions:
|
|
386
392
|
I","course_number":"101","created":"2014-02-26T21:15:38.354Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.356Z","name":"French
|
387
393
|
I - 101 - G. Gorczany (Section 1)","period":"9","school":"530e595026403103360ff9fd","sis_id":"681","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff4b","530e5960049e75a9262cff5b","530e5960049e75a9262cff7a","530e5961049e75a9262cfffb","530e5961049e75a9262d005d","530e5961049e75a9262d0070","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5962049e75a9262d015f","530e5963049e75a9262d0211","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d02a9","530e5964049e75a9262d02c3","530e5965049e75a9262d0325","530e5965049e75a9262d033f","530e5965049e75a9262d036c","530e5965049e75a9262d038f","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5967049e75a9262d057e","530e5967049e75a9262d0590","530e5967049e75a9262d05b5","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1","530e5968049e75a9262d05e3","530e5968049e75a9262d0605","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"language","teacher":"530e5955d50c310f36112bf9","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b55"},"uri":"/v1.1/sections/530e597a049e75a9262d0b55"}],"paging":{"current":1,"total":4,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55"}]}'
|
388
394
|
http_version:
|
389
|
-
recorded_at:
|
395
|
+
recorded_at: Sat, 13 Sep 2014 00:07:46 GMT
|
390
396
|
- request:
|
391
397
|
method: get
|
392
|
-
uri: https://
|
398
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55
|
393
399
|
body:
|
394
400
|
encoding: US-ASCII
|
395
401
|
string: ''
|
@@ -398,6 +404,8 @@ http_interactions:
|
|
398
404
|
- ! '*/*; q=0.5, application/xml'
|
399
405
|
Accept-Encoding:
|
400
406
|
- gzip, deflate
|
407
|
+
Authorization:
|
408
|
+
- Bearer DEMO_TOKEN
|
401
409
|
User-Agent:
|
402
410
|
- Ruby
|
403
411
|
response:
|
@@ -414,7 +422,7 @@ http_interactions:
|
|
414
422
|
Content-Type:
|
415
423
|
- application/json; charset=utf-8
|
416
424
|
Date:
|
417
|
-
-
|
425
|
+
- Sat, 13 Sep 2014 00:07:46 GMT
|
418
426
|
Etag:
|
419
427
|
- ! '"2068991059"'
|
420
428
|
Server:
|
@@ -645,10 +653,10 @@ http_interactions:
|
|
645
653
|
Class 602","course_number":"602","created":"2014-02-26T21:15:38.782Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.785Z","name":"Mathematics,
|
646
654
|
Class 602 - 602 - B. Goldner","period":"3","school":"530e595026403103360ff9ff","sis_id":"781","students":["530e5960049e75a9262cff4e","530e5961049e75a9262cffed","530e5961049e75a9262cfff5","530e5961049e75a9262d0009","530e5961049e75a9262d000f","530e5961049e75a9262d005e","530e5961049e75a9262d0083","530e5962049e75a9262d0098","530e5962049e75a9262d00a0","530e5962049e75a9262d00d4","530e5962049e75a9262d010b","530e5963049e75a9262d0220","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5965049e75a9262d03c5","530e5966049e75a9262d041e","530e5966049e75a9262d0494","530e5967049e75a9262d05ae","530e5967049e75a9262d05c4","530e5968049e75a9262d05d6","530e5968049e75a9262d05f3","530e5968049e75a9262d05ff","530e5968049e75a9262d060b"],"subject":"math","teacher":"530e5955d50c310f36112be0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bb9"},"uri":"/v1.1/sections/530e597a049e75a9262d0bb9"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597a049e75a9262d0b56"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9"}]}'
|
647
655
|
http_version:
|
648
|
-
recorded_at:
|
656
|
+
recorded_at: Sat, 13 Sep 2014 00:07:46 GMT
|
649
657
|
- request:
|
650
658
|
method: get
|
651
|
-
uri: https://
|
659
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9
|
652
660
|
body:
|
653
661
|
encoding: US-ASCII
|
654
662
|
string: ''
|
@@ -657,6 +665,8 @@ http_interactions:
|
|
657
665
|
- ! '*/*; q=0.5, application/xml'
|
658
666
|
Accept-Encoding:
|
659
667
|
- gzip, deflate
|
668
|
+
Authorization:
|
669
|
+
- Bearer DEMO_TOKEN
|
660
670
|
User-Agent:
|
661
671
|
- Ruby
|
662
672
|
response:
|
@@ -673,7 +683,7 @@ http_interactions:
|
|
673
683
|
Content-Type:
|
674
684
|
- application/json; charset=utf-8
|
675
685
|
Date:
|
676
|
-
-
|
686
|
+
- Sat, 13 Sep 2014 00:07:47 GMT
|
677
687
|
Etag:
|
678
688
|
- ! '"1779983124"'
|
679
689
|
Server:
|
@@ -946,10 +956,10 @@ http_interactions:
|
|
946
956
|
Chemistry","course_number":"404","created":"2014-02-26T21:15:39.240Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.242Z","name":"AP
|
947
957
|
Chemistry - 404 - M. Kulas (Section 3)","period":"3","school":"530e595026403103360ff9fd","sis_id":"881","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff67","530e5960049e75a9262cff6a","530e5961049e75a9262cffb7","530e5961049e75a9262d005b","530e5962049e75a9262d012c","530e5962049e75a9262d015b","530e5963049e75a9262d018b","530e5963049e75a9262d0209","530e5963049e75a9262d024a","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d0332","530e5965049e75a9262d0349","530e5965049e75a9262d0372","530e5966049e75a9262d0447","530e5967049e75a9262d04fa","530e5967049e75a9262d058c","530e5968049e75a9262d05dc","530e5968049e75a9262d063b"],"subject":"science","teacher":"530e5955d50c310f36112bd6","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c1d"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597a049e75a9262d0bba"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d"}]}'
|
948
958
|
http_version:
|
949
|
-
recorded_at:
|
959
|
+
recorded_at: Sat, 13 Sep 2014 00:07:47 GMT
|
950
960
|
- request:
|
951
961
|
method: get
|
952
|
-
uri: https://
|
962
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d
|
953
963
|
body:
|
954
964
|
encoding: US-ASCII
|
955
965
|
string: ''
|
@@ -958,6 +968,8 @@ http_interactions:
|
|
958
968
|
- ! '*/*; q=0.5, application/xml'
|
959
969
|
Accept-Encoding:
|
960
970
|
- gzip, deflate
|
971
|
+
Authorization:
|
972
|
+
- Bearer DEMO_TOKEN
|
961
973
|
User-Agent:
|
962
974
|
- Ruby
|
963
975
|
response:
|
@@ -974,7 +986,7 @@ http_interactions:
|
|
974
986
|
Content-Type:
|
975
987
|
- application/json; charset=utf-8
|
976
988
|
Date:
|
977
|
-
-
|
989
|
+
- Sat, 13 Sep 2014 00:07:47 GMT
|
978
990
|
Etag:
|
979
991
|
- ! '"2104753808"'
|
980
992
|
Server:
|
@@ -1183,10 +1195,10 @@ http_interactions:
|
|
1183
1195
|
to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
|
1184
1196
|
and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597b049e75a9262d0c1e"}]}'
|
1185
1197
|
http_version:
|
1186
|
-
recorded_at:
|
1198
|
+
recorded_at: Sat, 13 Sep 2014 00:07:47 GMT
|
1187
1199
|
- request:
|
1188
1200
|
method: get
|
1189
|
-
uri: https://
|
1201
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections
|
1190
1202
|
body:
|
1191
1203
|
encoding: US-ASCII
|
1192
1204
|
string: ''
|
@@ -1195,6 +1207,8 @@ http_interactions:
|
|
1195
1207
|
- ! '*/*; q=0.5, application/xml'
|
1196
1208
|
Accept-Encoding:
|
1197
1209
|
- gzip, deflate
|
1210
|
+
Authorization:
|
1211
|
+
- Bearer DEMO_TOKEN
|
1198
1212
|
User-Agent:
|
1199
1213
|
- Ruby
|
1200
1214
|
response:
|
@@ -1211,7 +1225,7 @@ http_interactions:
|
|
1211
1225
|
Content-Type:
|
1212
1226
|
- application/json; charset=utf-8
|
1213
1227
|
Date:
|
1214
|
-
-
|
1228
|
+
- Sat, 13 Sep 2014 00:07:48 GMT
|
1215
1229
|
Etag:
|
1216
1230
|
- ! '"967737503"'
|
1217
1231
|
Server:
|
@@ -1488,10 +1502,10 @@ http_interactions:
|
|
1488
1502
|
I","course_number":"101","created":"2014-02-26T21:15:38.354Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.356Z","name":"French
|
1489
1503
|
I - 101 - G. Gorczany (Section 1)","period":"9","school":"530e595026403103360ff9fd","sis_id":"681","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff4b","530e5960049e75a9262cff5b","530e5960049e75a9262cff7a","530e5961049e75a9262cfffb","530e5961049e75a9262d005d","530e5961049e75a9262d0070","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5962049e75a9262d015f","530e5963049e75a9262d0211","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d02a9","530e5964049e75a9262d02c3","530e5965049e75a9262d0325","530e5965049e75a9262d033f","530e5965049e75a9262d036c","530e5965049e75a9262d038f","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5967049e75a9262d057e","530e5967049e75a9262d0590","530e5967049e75a9262d05b5","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1","530e5968049e75a9262d05e3","530e5968049e75a9262d0605","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"language","teacher":"530e5955d50c310f36112bf9","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b55"},"uri":"/v1.1/sections/530e597a049e75a9262d0b55"}],"paging":{"current":1,"total":4,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55"}]}'
|
1490
1504
|
http_version:
|
1491
|
-
recorded_at:
|
1505
|
+
recorded_at: Sat, 13 Sep 2014 00:07:48 GMT
|
1492
1506
|
- request:
|
1493
1507
|
method: get
|
1494
|
-
uri: https://
|
1508
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55
|
1495
1509
|
body:
|
1496
1510
|
encoding: US-ASCII
|
1497
1511
|
string: ''
|
@@ -1500,6 +1514,8 @@ http_interactions:
|
|
1500
1514
|
- ! '*/*; q=0.5, application/xml'
|
1501
1515
|
Accept-Encoding:
|
1502
1516
|
- gzip, deflate
|
1517
|
+
Authorization:
|
1518
|
+
- Bearer DEMO_TOKEN
|
1503
1519
|
User-Agent:
|
1504
1520
|
- Ruby
|
1505
1521
|
response:
|
@@ -1516,7 +1532,7 @@ http_interactions:
|
|
1516
1532
|
Content-Type:
|
1517
1533
|
- application/json; charset=utf-8
|
1518
1534
|
Date:
|
1519
|
-
-
|
1535
|
+
- Sat, 13 Sep 2014 00:07:48 GMT
|
1520
1536
|
Etag:
|
1521
1537
|
- ! '"2068991059"'
|
1522
1538
|
Server:
|
@@ -1747,10 +1763,10 @@ http_interactions:
|
|
1747
1763
|
Class 602","course_number":"602","created":"2014-02-26T21:15:38.782Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.785Z","name":"Mathematics,
|
1748
1764
|
Class 602 - 602 - B. Goldner","period":"3","school":"530e595026403103360ff9ff","sis_id":"781","students":["530e5960049e75a9262cff4e","530e5961049e75a9262cffed","530e5961049e75a9262cfff5","530e5961049e75a9262d0009","530e5961049e75a9262d000f","530e5961049e75a9262d005e","530e5961049e75a9262d0083","530e5962049e75a9262d0098","530e5962049e75a9262d00a0","530e5962049e75a9262d00d4","530e5962049e75a9262d010b","530e5963049e75a9262d0220","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5965049e75a9262d03c5","530e5966049e75a9262d041e","530e5966049e75a9262d0494","530e5967049e75a9262d05ae","530e5967049e75a9262d05c4","530e5968049e75a9262d05d6","530e5968049e75a9262d05f3","530e5968049e75a9262d05ff","530e5968049e75a9262d060b"],"subject":"math","teacher":"530e5955d50c310f36112be0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bb9"},"uri":"/v1.1/sections/530e597a049e75a9262d0bb9"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0b55"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597a049e75a9262d0b56"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9"}]}'
|
1749
1765
|
http_version:
|
1750
|
-
recorded_at:
|
1766
|
+
recorded_at: Sat, 13 Sep 2014 00:07:48 GMT
|
1751
1767
|
- request:
|
1752
1768
|
method: get
|
1753
|
-
uri: https://
|
1769
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9
|
1754
1770
|
body:
|
1755
1771
|
encoding: US-ASCII
|
1756
1772
|
string: ''
|
@@ -1759,6 +1775,8 @@ http_interactions:
|
|
1759
1775
|
- ! '*/*; q=0.5, application/xml'
|
1760
1776
|
Accept-Encoding:
|
1761
1777
|
- gzip, deflate
|
1778
|
+
Authorization:
|
1779
|
+
- Bearer DEMO_TOKEN
|
1762
1780
|
User-Agent:
|
1763
1781
|
- Ruby
|
1764
1782
|
response:
|
@@ -1775,7 +1793,7 @@ http_interactions:
|
|
1775
1793
|
Content-Type:
|
1776
1794
|
- application/json; charset=utf-8
|
1777
1795
|
Date:
|
1778
|
-
-
|
1796
|
+
- Sat, 13 Sep 2014 00:07:48 GMT
|
1779
1797
|
Etag:
|
1780
1798
|
- ! '"1779983124"'
|
1781
1799
|
Server:
|
@@ -2048,10 +2066,10 @@ http_interactions:
|
|
2048
2066
|
Chemistry","course_number":"404","created":"2014-02-26T21:15:39.240Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.242Z","name":"AP
|
2049
2067
|
Chemistry - 404 - M. Kulas (Section 3)","period":"3","school":"530e595026403103360ff9fd","sis_id":"881","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff67","530e5960049e75a9262cff6a","530e5961049e75a9262cffb7","530e5961049e75a9262d005b","530e5962049e75a9262d012c","530e5962049e75a9262d015b","530e5963049e75a9262d018b","530e5963049e75a9262d0209","530e5963049e75a9262d024a","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d0332","530e5965049e75a9262d0349","530e5965049e75a9262d0372","530e5966049e75a9262d0447","530e5967049e75a9262d04fa","530e5967049e75a9262d058c","530e5968049e75a9262d05dc","530e5968049e75a9262d063b"],"subject":"science","teacher":"530e5955d50c310f36112bd6","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c1d"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597a049e75a9262d0bb9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597a049e75a9262d0bba"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d"}]}'
|
2050
2068
|
http_version:
|
2051
|
-
recorded_at:
|
2069
|
+
recorded_at: Sat, 13 Sep 2014 00:07:48 GMT
|
2052
2070
|
- request:
|
2053
2071
|
method: get
|
2054
|
-
uri: https://
|
2072
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d
|
2055
2073
|
body:
|
2056
2074
|
encoding: US-ASCII
|
2057
2075
|
string: ''
|
@@ -2060,6 +2078,8 @@ http_interactions:
|
|
2060
2078
|
- ! '*/*; q=0.5, application/xml'
|
2061
2079
|
Accept-Encoding:
|
2062
2080
|
- gzip, deflate
|
2081
|
+
Authorization:
|
2082
|
+
- Bearer DEMO_TOKEN
|
2063
2083
|
User-Agent:
|
2064
2084
|
- Ruby
|
2065
2085
|
response:
|
@@ -2076,7 +2096,7 @@ http_interactions:
|
|
2076
2096
|
Content-Type:
|
2077
2097
|
- application/json; charset=utf-8
|
2078
2098
|
Date:
|
2079
|
-
-
|
2099
|
+
- Sat, 13 Sep 2014 00:07:49 GMT
|
2080
2100
|
Etag:
|
2081
2101
|
- ! '"2104753808"'
|
2082
2102
|
Server:
|
@@ -2285,5 +2305,5 @@ http_interactions:
|
|
2285
2305
|
to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
|
2286
2306
|
and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?starting_after=530e597b049e75a9262d0c1d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?ending_before=530e597b049e75a9262d0c1e"}]}'
|
2287
2307
|
http_version:
|
2288
|
-
recorded_at:
|
2289
|
-
recorded_with: VCR 2.
|
2308
|
+
recorded_at: Sat, 13 Sep 2014 00:07:49 GMT
|
2309
|
+
recorded_with: VCR 2.9.3
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://
|
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
|
-
-
|
32
|
+
- Sat, 13 Sep 2014 00:06:26 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:
|
45
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
44
46
|
- request:
|
45
47
|
method: get
|
46
|
-
uri: https://
|
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
|
-
-
|
75
|
+
- Sat, 13 Sep 2014 00:06:26 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:
|
88
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students
|
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
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:06:26 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"-1846425227"'
|
115
121
|
Server:
|
@@ -195,10 +201,10 @@ http_interactions:
|
|
195
201
|
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
|
196
202
|
or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4"}]}'
|
197
203
|
http_version:
|
198
|
-
recorded_at:
|
204
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
199
205
|
- request:
|
200
206
|
method: get
|
201
|
-
uri: https://
|
207
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4
|
202
208
|
body:
|
203
209
|
encoding: US-ASCII
|
204
210
|
string: ''
|
@@ -207,6 +213,8 @@ http_interactions:
|
|
207
213
|
- ! '*/*; q=0.5, application/xml'
|
208
214
|
Accept-Encoding:
|
209
215
|
- gzip, deflate
|
216
|
+
Authorization:
|
217
|
+
- Bearer DEMO_TOKEN
|
210
218
|
User-Agent:
|
211
219
|
- Ruby
|
212
220
|
response:
|
@@ -223,7 +231,7 @@ http_interactions:
|
|
223
231
|
Content-Type:
|
224
232
|
- application/json; charset=utf-8
|
225
233
|
Date:
|
226
|
-
-
|
234
|
+
- Sat, 13 Sep 2014 00:06:27 GMT
|
227
235
|
Etag:
|
228
236
|
- ! '"1131846882"'
|
229
237
|
Server:
|
@@ -302,10 +310,10 @@ http_interactions:
|
|
302
310
|
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
|
303
311
|
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?starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d00a9"}]}'
|
304
312
|
http_version:
|
305
|
-
recorded_at:
|
313
|
+
recorded_at: Sat, 13 Sep 2014 00:06:27 GMT
|
306
314
|
- request:
|
307
315
|
method: get
|
308
|
-
uri: https://
|
316
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d00a9
|
309
317
|
body:
|
310
318
|
encoding: US-ASCII
|
311
319
|
string: ''
|
@@ -314,6 +322,8 @@ http_interactions:
|
|
314
322
|
- ! '*/*; q=0.5, application/xml'
|
315
323
|
Accept-Encoding:
|
316
324
|
- gzip, deflate
|
325
|
+
Authorization:
|
326
|
+
- Bearer DEMO_TOKEN
|
317
327
|
User-Agent:
|
318
328
|
- Ruby
|
319
329
|
response:
|
@@ -330,7 +340,7 @@ http_interactions:
|
|
330
340
|
Content-Type:
|
331
341
|
- application/json; charset=utf-8
|
332
342
|
Date:
|
333
|
-
-
|
343
|
+
- Sat, 13 Sep 2014 00:06:27 GMT
|
334
344
|
Etag:
|
335
345
|
- ! '"368481945"'
|
336
346
|
Server:
|
@@ -413,10 +423,10 @@ http_interactions:
|
|
413
423
|
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
|
414
424
|
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?starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d0160"}]}'
|
415
425
|
http_version:
|
416
|
-
recorded_at:
|
426
|
+
recorded_at: Sat, 13 Sep 2014 00:06:27 GMT
|
417
427
|
- request:
|
418
428
|
method: get
|
419
|
-
uri: https://
|
429
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d0160
|
420
430
|
body:
|
421
431
|
encoding: US-ASCII
|
422
432
|
string: ''
|
@@ -425,6 +435,8 @@ http_interactions:
|
|
425
435
|
- ! '*/*; q=0.5, application/xml'
|
426
436
|
Accept-Encoding:
|
427
437
|
- gzip, deflate
|
438
|
+
Authorization:
|
439
|
+
- Bearer DEMO_TOKEN
|
428
440
|
User-Agent:
|
429
441
|
- Ruby
|
430
442
|
response:
|
@@ -441,7 +453,7 @@ http_interactions:
|
|
441
453
|
Content-Type:
|
442
454
|
- application/json; charset=utf-8
|
443
455
|
Date:
|
444
|
-
-
|
456
|
+
- Sat, 13 Sep 2014 00:06:27 GMT
|
445
457
|
Etag:
|
446
458
|
- ! '"-1107114851"'
|
447
459
|
Server:
|
@@ -525,10 +537,10 @@ http_interactions:
|
|
525
537
|
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
|
526
538
|
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?starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5963049e75a9262d0228"}]}'
|
527
539
|
http_version:
|
528
|
-
recorded_at:
|
540
|
+
recorded_at: Sat, 13 Sep 2014 00:06:27 GMT
|
529
541
|
- request:
|
530
542
|
method: get
|
531
|
-
uri: https://
|
543
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5963049e75a9262d0228
|
532
544
|
body:
|
533
545
|
encoding: US-ASCII
|
534
546
|
string: ''
|
@@ -537,6 +549,8 @@ http_interactions:
|
|
537
549
|
- ! '*/*; q=0.5, application/xml'
|
538
550
|
Accept-Encoding:
|
539
551
|
- gzip, deflate
|
552
|
+
Authorization:
|
553
|
+
- Bearer DEMO_TOKEN
|
540
554
|
User-Agent:
|
541
555
|
- Ruby
|
542
556
|
response:
|
@@ -553,7 +567,7 @@ http_interactions:
|
|
553
567
|
Content-Type:
|
554
568
|
- application/json; charset=utf-8
|
555
569
|
Date:
|
556
|
-
-
|
570
|
+
- Sat, 13 Sep 2014 00:07:28 GMT
|
557
571
|
Etag:
|
558
572
|
- ! '"1091332755"'
|
559
573
|
Server:
|
@@ -634,10 +648,10 @@ http_interactions:
|
|
634
648
|
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
|
635
649
|
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?starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5964049e75a9262d02e7"}]}'
|
636
650
|
http_version:
|
637
|
-
recorded_at:
|
651
|
+
recorded_at: Sat, 13 Sep 2014 00:07:28 GMT
|
638
652
|
- request:
|
639
653
|
method: get
|
640
|
-
uri: https://
|
654
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5964049e75a9262d02e7
|
641
655
|
body:
|
642
656
|
encoding: US-ASCII
|
643
657
|
string: ''
|
@@ -646,6 +660,8 @@ http_interactions:
|
|
646
660
|
- ! '*/*; q=0.5, application/xml'
|
647
661
|
Accept-Encoding:
|
648
662
|
- gzip, deflate
|
663
|
+
Authorization:
|
664
|
+
- Bearer DEMO_TOKEN
|
649
665
|
User-Agent:
|
650
666
|
- Ruby
|
651
667
|
response:
|
@@ -662,7 +678,7 @@ http_interactions:
|
|
662
678
|
Content-Type:
|
663
679
|
- application/json; charset=utf-8
|
664
680
|
Date:
|
665
|
-
-
|
681
|
+
- Sat, 13 Sep 2014 00:07:30 GMT
|
666
682
|
Etag:
|
667
683
|
- ! '"925941719"'
|
668
684
|
Server:
|
@@ -739,10 +755,10 @@ http_interactions:
|
|
739
755
|
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
|
740
756
|
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?starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5965049e75a9262d03b8"}]}'
|
741
757
|
http_version:
|
742
|
-
recorded_at:
|
758
|
+
recorded_at: Sat, 13 Sep 2014 00:07:30 GMT
|
743
759
|
- request:
|
744
760
|
method: get
|
745
|
-
uri: https://
|
761
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5965049e75a9262d03b8
|
746
762
|
body:
|
747
763
|
encoding: US-ASCII
|
748
764
|
string: ''
|
@@ -751,6 +767,8 @@ http_interactions:
|
|
751
767
|
- ! '*/*; q=0.5, application/xml'
|
752
768
|
Accept-Encoding:
|
753
769
|
- gzip, deflate
|
770
|
+
Authorization:
|
771
|
+
- Bearer DEMO_TOKEN
|
754
772
|
User-Agent:
|
755
773
|
- Ruby
|
756
774
|
response:
|
@@ -767,7 +785,7 @@ http_interactions:
|
|
767
785
|
Content-Type:
|
768
786
|
- application/json; charset=utf-8
|
769
787
|
Date:
|
770
|
-
-
|
788
|
+
- Sat, 13 Sep 2014 00:07:30 GMT
|
771
789
|
Etag:
|
772
790
|
- ! '"533148668"'
|
773
791
|
Server:
|
@@ -844,10 +862,10 @@ http_interactions:
|
|
844
862
|
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
|
845
863
|
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?starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5966049e75a9262d046c"}]}'
|
846
864
|
http_version:
|
847
|
-
recorded_at:
|
865
|
+
recorded_at: Sat, 13 Sep 2014 00:07:30 GMT
|
848
866
|
- request:
|
849
867
|
method: get
|
850
|
-
uri: https://
|
868
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5966049e75a9262d046c
|
851
869
|
body:
|
852
870
|
encoding: US-ASCII
|
853
871
|
string: ''
|
@@ -856,6 +874,8 @@ http_interactions:
|
|
856
874
|
- ! '*/*; q=0.5, application/xml'
|
857
875
|
Accept-Encoding:
|
858
876
|
- gzip, deflate
|
877
|
+
Authorization:
|
878
|
+
- Bearer DEMO_TOKEN
|
859
879
|
User-Agent:
|
860
880
|
- Ruby
|
861
881
|
response:
|
@@ -872,7 +892,7 @@ http_interactions:
|
|
872
892
|
Content-Type:
|
873
893
|
- application/json; charset=utf-8
|
874
894
|
Date:
|
875
|
-
-
|
895
|
+
- Sat, 13 Sep 2014 00:07:30 GMT
|
876
896
|
Etag:
|
877
897
|
- ! '"769832738"'
|
878
898
|
Server:
|
@@ -955,10 +975,10 @@ http_interactions:
|
|
955
975
|
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
|
956
976
|
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?starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5967049e75a9262d0557"}]}'
|
957
977
|
http_version:
|
958
|
-
recorded_at:
|
978
|
+
recorded_at: Sat, 13 Sep 2014 00:07:30 GMT
|
959
979
|
- request:
|
960
980
|
method: get
|
961
|
-
uri: https://
|
981
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5967049e75a9262d0557
|
962
982
|
body:
|
963
983
|
encoding: US-ASCII
|
964
984
|
string: ''
|
@@ -967,6 +987,8 @@ http_interactions:
|
|
967
987
|
- ! '*/*; q=0.5, application/xml'
|
968
988
|
Accept-Encoding:
|
969
989
|
- gzip, deflate
|
990
|
+
Authorization:
|
991
|
+
- Bearer DEMO_TOKEN
|
970
992
|
User-Agent:
|
971
993
|
- Ruby
|
972
994
|
response:
|
@@ -983,7 +1005,7 @@ http_interactions:
|
|
983
1005
|
Content-Type:
|
984
1006
|
- application/json; charset=utf-8
|
985
1007
|
Date:
|
986
|
-
-
|
1008
|
+
- Sat, 13 Sep 2014 00:07:31 GMT
|
987
1009
|
Etag:
|
988
1010
|
- ! '"1774383180"'
|
989
1011
|
Server:
|
@@ -1062,10 +1084,10 @@ http_interactions:
|
|
1062
1084
|
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
|
1063
1085
|
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?starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d05e3"}]}'
|
1064
1086
|
http_version:
|
1065
|
-
recorded_at:
|
1087
|
+
recorded_at: Sat, 13 Sep 2014 00:07:31 GMT
|
1066
1088
|
- request:
|
1067
1089
|
method: get
|
1068
|
-
uri: https://
|
1090
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d05e3
|
1069
1091
|
body:
|
1070
1092
|
encoding: US-ASCII
|
1071
1093
|
string: ''
|
@@ -1074,6 +1096,8 @@ http_interactions:
|
|
1074
1096
|
- ! '*/*; q=0.5, application/xml'
|
1075
1097
|
Accept-Encoding:
|
1076
1098
|
- gzip, deflate
|
1099
|
+
Authorization:
|
1100
|
+
- Bearer DEMO_TOKEN
|
1077
1101
|
User-Agent:
|
1078
1102
|
- Ruby
|
1079
1103
|
response:
|
@@ -1090,7 +1114,7 @@ http_interactions:
|
|
1090
1114
|
Content-Type:
|
1091
1115
|
- application/json; charset=utf-8
|
1092
1116
|
Date:
|
1093
|
-
-
|
1117
|
+
- Sat, 13 Sep 2014 00:07:31 GMT
|
1094
1118
|
Etag:
|
1095
1119
|
- ! '"-1120574282"'
|
1096
1120
|
Server:
|
@@ -1162,10 +1186,10 @@ http_interactions:
|
|
1162
1186
|
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
|
1163
1187
|
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?starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d0647"}]}'
|
1164
1188
|
http_version:
|
1165
|
-
recorded_at:
|
1189
|
+
recorded_at: Sat, 13 Sep 2014 00:07:31 GMT
|
1166
1190
|
- request:
|
1167
1191
|
method: get
|
1168
|
-
uri: https://
|
1192
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d0647
|
1169
1193
|
body:
|
1170
1194
|
encoding: US-ASCII
|
1171
1195
|
string: ''
|
@@ -1174,6 +1198,8 @@ http_interactions:
|
|
1174
1198
|
- ! '*/*; q=0.5, application/xml'
|
1175
1199
|
Accept-Encoding:
|
1176
1200
|
- gzip, deflate
|
1201
|
+
Authorization:
|
1202
|
+
- Bearer DEMO_TOKEN
|
1177
1203
|
User-Agent:
|
1178
1204
|
- Ruby
|
1179
1205
|
response:
|
@@ -1190,7 +1216,7 @@ http_interactions:
|
|
1190
1216
|
Content-Type:
|
1191
1217
|
- application/json; charset=utf-8
|
1192
1218
|
Date:
|
1193
|
-
-
|
1219
|
+
- Sat, 13 Sep 2014 00:07:31 GMT
|
1194
1220
|
Etag:
|
1195
1221
|
- ! '"761100119"'
|
1196
1222
|
Server:
|
@@ -1208,10 +1234,10 @@ http_interactions:
|
|
1208
1234
|
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
|
1209
1235
|
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?starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5968049e75a9262d0648"}]}'
|
1210
1236
|
http_version:
|
1211
|
-
recorded_at:
|
1237
|
+
recorded_at: Sat, 13 Sep 2014 00:07:31 GMT
|
1212
1238
|
- request:
|
1213
1239
|
method: get
|
1214
|
-
uri: https://
|
1240
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students
|
1215
1241
|
body:
|
1216
1242
|
encoding: US-ASCII
|
1217
1243
|
string: ''
|
@@ -1220,6 +1246,8 @@ http_interactions:
|
|
1220
1246
|
- ! '*/*; q=0.5, application/xml'
|
1221
1247
|
Accept-Encoding:
|
1222
1248
|
- gzip, deflate
|
1249
|
+
Authorization:
|
1250
|
+
- Bearer DEMO_TOKEN
|
1223
1251
|
User-Agent:
|
1224
1252
|
- Ruby
|
1225
1253
|
response:
|
@@ -1236,7 +1264,7 @@ http_interactions:
|
|
1236
1264
|
Content-Type:
|
1237
1265
|
- application/json; charset=utf-8
|
1238
1266
|
Date:
|
1239
|
-
-
|
1267
|
+
- Sat, 13 Sep 2014 00:07:32 GMT
|
1240
1268
|
Etag:
|
1241
1269
|
- ! '"-1846425227"'
|
1242
1270
|
Server:
|
@@ -1322,10 +1350,10 @@ http_interactions:
|
|
1322
1350
|
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
|
1323
1351
|
or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4"}]}'
|
1324
1352
|
http_version:
|
1325
|
-
recorded_at:
|
1353
|
+
recorded_at: Sat, 13 Sep 2014 00:07:32 GMT
|
1326
1354
|
- request:
|
1327
1355
|
method: get
|
1328
|
-
uri: https://
|
1356
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4
|
1329
1357
|
body:
|
1330
1358
|
encoding: US-ASCII
|
1331
1359
|
string: ''
|
@@ -1334,6 +1362,8 @@ http_interactions:
|
|
1334
1362
|
- ! '*/*; q=0.5, application/xml'
|
1335
1363
|
Accept-Encoding:
|
1336
1364
|
- gzip, deflate
|
1365
|
+
Authorization:
|
1366
|
+
- Bearer DEMO_TOKEN
|
1337
1367
|
User-Agent:
|
1338
1368
|
- Ruby
|
1339
1369
|
response:
|
@@ -1350,7 +1380,7 @@ http_interactions:
|
|
1350
1380
|
Content-Type:
|
1351
1381
|
- application/json; charset=utf-8
|
1352
1382
|
Date:
|
1353
|
-
-
|
1383
|
+
- Sat, 13 Sep 2014 00:07:32 GMT
|
1354
1384
|
Etag:
|
1355
1385
|
- ! '"1131846882"'
|
1356
1386
|
Server:
|
@@ -1429,10 +1459,10 @@ http_interactions:
|
|
1429
1459
|
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
|
1430
1460
|
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?starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d00a9"}]}'
|
1431
1461
|
http_version:
|
1432
|
-
recorded_at:
|
1462
|
+
recorded_at: Sat, 13 Sep 2014 00:07:32 GMT
|
1433
1463
|
- request:
|
1434
1464
|
method: get
|
1435
|
-
uri: https://
|
1465
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d00a9
|
1436
1466
|
body:
|
1437
1467
|
encoding: US-ASCII
|
1438
1468
|
string: ''
|
@@ -1441,6 +1471,8 @@ http_interactions:
|
|
1441
1471
|
- ! '*/*; q=0.5, application/xml'
|
1442
1472
|
Accept-Encoding:
|
1443
1473
|
- gzip, deflate
|
1474
|
+
Authorization:
|
1475
|
+
- Bearer DEMO_TOKEN
|
1444
1476
|
User-Agent:
|
1445
1477
|
- Ruby
|
1446
1478
|
response:
|
@@ -1457,7 +1489,7 @@ http_interactions:
|
|
1457
1489
|
Content-Type:
|
1458
1490
|
- application/json; charset=utf-8
|
1459
1491
|
Date:
|
1460
|
-
-
|
1492
|
+
- Sat, 13 Sep 2014 00:07:32 GMT
|
1461
1493
|
Etag:
|
1462
1494
|
- ! '"368481945"'
|
1463
1495
|
Server:
|
@@ -1540,10 +1572,10 @@ http_interactions:
|
|
1540
1572
|
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
|
1541
1573
|
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?starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d0160"}]}'
|
1542
1574
|
http_version:
|
1543
|
-
recorded_at:
|
1575
|
+
recorded_at: Sat, 13 Sep 2014 00:07:32 GMT
|
1544
1576
|
- request:
|
1545
1577
|
method: get
|
1546
|
-
uri: https://
|
1578
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5962049e75a9262d0160
|
1547
1579
|
body:
|
1548
1580
|
encoding: US-ASCII
|
1549
1581
|
string: ''
|
@@ -1552,6 +1584,8 @@ http_interactions:
|
|
1552
1584
|
- ! '*/*; q=0.5, application/xml'
|
1553
1585
|
Accept-Encoding:
|
1554
1586
|
- gzip, deflate
|
1587
|
+
Authorization:
|
1588
|
+
- Bearer DEMO_TOKEN
|
1555
1589
|
User-Agent:
|
1556
1590
|
- Ruby
|
1557
1591
|
response:
|
@@ -1568,7 +1602,7 @@ http_interactions:
|
|
1568
1602
|
Content-Type:
|
1569
1603
|
- application/json; charset=utf-8
|
1570
1604
|
Date:
|
1571
|
-
-
|
1605
|
+
- Sat, 13 Sep 2014 00:07:33 GMT
|
1572
1606
|
Etag:
|
1573
1607
|
- ! '"-1107114851"'
|
1574
1608
|
Server:
|
@@ -1652,10 +1686,10 @@ http_interactions:
|
|
1652
1686
|
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
|
1653
1687
|
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?starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5963049e75a9262d0228"}]}'
|
1654
1688
|
http_version:
|
1655
|
-
recorded_at:
|
1689
|
+
recorded_at: Sat, 13 Sep 2014 00:07:33 GMT
|
1656
1690
|
- request:
|
1657
1691
|
method: get
|
1658
|
-
uri: https://
|
1692
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5963049e75a9262d0228
|
1659
1693
|
body:
|
1660
1694
|
encoding: US-ASCII
|
1661
1695
|
string: ''
|
@@ -1664,6 +1698,8 @@ http_interactions:
|
|
1664
1698
|
- ! '*/*; q=0.5, application/xml'
|
1665
1699
|
Accept-Encoding:
|
1666
1700
|
- gzip, deflate
|
1701
|
+
Authorization:
|
1702
|
+
- Bearer DEMO_TOKEN
|
1667
1703
|
User-Agent:
|
1668
1704
|
- Ruby
|
1669
1705
|
response:
|
@@ -1680,7 +1716,7 @@ http_interactions:
|
|
1680
1716
|
Content-Type:
|
1681
1717
|
- application/json; charset=utf-8
|
1682
1718
|
Date:
|
1683
|
-
-
|
1719
|
+
- Sat, 13 Sep 2014 00:07:33 GMT
|
1684
1720
|
Etag:
|
1685
1721
|
- ! '"1091332755"'
|
1686
1722
|
Server:
|
@@ -1761,10 +1797,10 @@ http_interactions:
|
|
1761
1797
|
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
|
1762
1798
|
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?starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5964049e75a9262d02e7"}]}'
|
1763
1799
|
http_version:
|
1764
|
-
recorded_at:
|
1800
|
+
recorded_at: Sat, 13 Sep 2014 00:07:33 GMT
|
1765
1801
|
- request:
|
1766
1802
|
method: get
|
1767
|
-
uri: https://
|
1803
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5964049e75a9262d02e7
|
1768
1804
|
body:
|
1769
1805
|
encoding: US-ASCII
|
1770
1806
|
string: ''
|
@@ -1773,6 +1809,8 @@ http_interactions:
|
|
1773
1809
|
- ! '*/*; q=0.5, application/xml'
|
1774
1810
|
Accept-Encoding:
|
1775
1811
|
- gzip, deflate
|
1812
|
+
Authorization:
|
1813
|
+
- Bearer DEMO_TOKEN
|
1776
1814
|
User-Agent:
|
1777
1815
|
- Ruby
|
1778
1816
|
response:
|
@@ -1789,7 +1827,7 @@ http_interactions:
|
|
1789
1827
|
Content-Type:
|
1790
1828
|
- application/json; charset=utf-8
|
1791
1829
|
Date:
|
1792
|
-
-
|
1830
|
+
- Sat, 13 Sep 2014 00:07:33 GMT
|
1793
1831
|
Etag:
|
1794
1832
|
- ! '"925941719"'
|
1795
1833
|
Server:
|
@@ -1866,10 +1904,10 @@ http_interactions:
|
|
1866
1904
|
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
|
1867
1905
|
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?starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5965049e75a9262d03b8"}]}'
|
1868
1906
|
http_version:
|
1869
|
-
recorded_at:
|
1907
|
+
recorded_at: Sat, 13 Sep 2014 00:07:33 GMT
|
1870
1908
|
- request:
|
1871
1909
|
method: get
|
1872
|
-
uri: https://
|
1910
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5965049e75a9262d03b8
|
1873
1911
|
body:
|
1874
1912
|
encoding: US-ASCII
|
1875
1913
|
string: ''
|
@@ -1878,6 +1916,8 @@ http_interactions:
|
|
1878
1916
|
- ! '*/*; q=0.5, application/xml'
|
1879
1917
|
Accept-Encoding:
|
1880
1918
|
- gzip, deflate
|
1919
|
+
Authorization:
|
1920
|
+
- Bearer DEMO_TOKEN
|
1881
1921
|
User-Agent:
|
1882
1922
|
- Ruby
|
1883
1923
|
response:
|
@@ -1894,7 +1934,7 @@ http_interactions:
|
|
1894
1934
|
Content-Type:
|
1895
1935
|
- application/json; charset=utf-8
|
1896
1936
|
Date:
|
1897
|
-
-
|
1937
|
+
- Sat, 13 Sep 2014 00:07:34 GMT
|
1898
1938
|
Etag:
|
1899
1939
|
- ! '"533148668"'
|
1900
1940
|
Server:
|
@@ -1971,10 +2011,10 @@ http_interactions:
|
|
1971
2011
|
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
|
1972
2012
|
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?starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5966049e75a9262d046c"}]}'
|
1973
2013
|
http_version:
|
1974
|
-
recorded_at:
|
2014
|
+
recorded_at: Sat, 13 Sep 2014 00:07:34 GMT
|
1975
2015
|
- request:
|
1976
2016
|
method: get
|
1977
|
-
uri: https://
|
2017
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5966049e75a9262d046c
|
1978
2018
|
body:
|
1979
2019
|
encoding: US-ASCII
|
1980
2020
|
string: ''
|
@@ -1983,6 +2023,8 @@ http_interactions:
|
|
1983
2023
|
- ! '*/*; q=0.5, application/xml'
|
1984
2024
|
Accept-Encoding:
|
1985
2025
|
- gzip, deflate
|
2026
|
+
Authorization:
|
2027
|
+
- Bearer DEMO_TOKEN
|
1986
2028
|
User-Agent:
|
1987
2029
|
- Ruby
|
1988
2030
|
response:
|
@@ -1999,7 +2041,7 @@ http_interactions:
|
|
1999
2041
|
Content-Type:
|
2000
2042
|
- application/json; charset=utf-8
|
2001
2043
|
Date:
|
2002
|
-
-
|
2044
|
+
- Sat, 13 Sep 2014 00:07:34 GMT
|
2003
2045
|
Etag:
|
2004
2046
|
- ! '"769832738"'
|
2005
2047
|
Server:
|
@@ -2082,10 +2124,10 @@ http_interactions:
|
|
2082
2124
|
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
|
2083
2125
|
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?starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5967049e75a9262d0557"}]}'
|
2084
2126
|
http_version:
|
2085
|
-
recorded_at:
|
2127
|
+
recorded_at: Sat, 13 Sep 2014 00:07:34 GMT
|
2086
2128
|
- request:
|
2087
2129
|
method: get
|
2088
|
-
uri: https://
|
2130
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5967049e75a9262d0557
|
2089
2131
|
body:
|
2090
2132
|
encoding: US-ASCII
|
2091
2133
|
string: ''
|
@@ -2094,6 +2136,8 @@ http_interactions:
|
|
2094
2136
|
- ! '*/*; q=0.5, application/xml'
|
2095
2137
|
Accept-Encoding:
|
2096
2138
|
- gzip, deflate
|
2139
|
+
Authorization:
|
2140
|
+
- Bearer DEMO_TOKEN
|
2097
2141
|
User-Agent:
|
2098
2142
|
- Ruby
|
2099
2143
|
response:
|
@@ -2110,7 +2154,7 @@ http_interactions:
|
|
2110
2154
|
Content-Type:
|
2111
2155
|
- application/json; charset=utf-8
|
2112
2156
|
Date:
|
2113
|
-
-
|
2157
|
+
- Sat, 13 Sep 2014 00:07:34 GMT
|
2114
2158
|
Etag:
|
2115
2159
|
- ! '"1774383180"'
|
2116
2160
|
Server:
|
@@ -2189,10 +2233,10 @@ http_interactions:
|
|
2189
2233
|
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
|
2190
2234
|
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?starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d05e3"}]}'
|
2191
2235
|
http_version:
|
2192
|
-
recorded_at:
|
2236
|
+
recorded_at: Sat, 13 Sep 2014 00:07:34 GMT
|
2193
2237
|
- request:
|
2194
2238
|
method: get
|
2195
|
-
uri: https://
|
2239
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d05e3
|
2196
2240
|
body:
|
2197
2241
|
encoding: US-ASCII
|
2198
2242
|
string: ''
|
@@ -2201,6 +2245,8 @@ http_interactions:
|
|
2201
2245
|
- ! '*/*; q=0.5, application/xml'
|
2202
2246
|
Accept-Encoding:
|
2203
2247
|
- gzip, deflate
|
2248
|
+
Authorization:
|
2249
|
+
- Bearer DEMO_TOKEN
|
2204
2250
|
User-Agent:
|
2205
2251
|
- Ruby
|
2206
2252
|
response:
|
@@ -2217,7 +2263,7 @@ http_interactions:
|
|
2217
2263
|
Content-Type:
|
2218
2264
|
- application/json; charset=utf-8
|
2219
2265
|
Date:
|
2220
|
-
-
|
2266
|
+
- Sat, 13 Sep 2014 00:07:35 GMT
|
2221
2267
|
Etag:
|
2222
2268
|
- ! '"-1120574282"'
|
2223
2269
|
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?starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5968049e75a9262d0647"}]}'
|
2291
2337
|
http_version:
|
2292
|
-
recorded_at:
|
2338
|
+
recorded_at: Sat, 13 Sep 2014 00:07:35 GMT
|
2293
2339
|
- request:
|
2294
2340
|
method: get
|
2295
|
-
uri: https://
|
2341
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?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
|
-
-
|
2368
|
+
- Sat, 13 Sep 2014 00:07:35 GMT
|
2321
2369
|
Etag:
|
2322
2370
|
- ! '"761100119"'
|
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?starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?ending_before=530e5968049e75a9262d0648"}]}'
|
2337
2385
|
http_version:
|
2338
|
-
recorded_at:
|
2339
|
-
recorded_with: VCR 2.
|
2386
|
+
recorded_at: Sat, 13 Sep 2014 00:07:35 GMT
|
2387
|
+
recorded_with: VCR 2.9.3
|