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:23 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:23 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:23 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=100000
|
88
92
|
body:
|
89
93
|
encoding: US-ASCII
|
90
94
|
string: ''
|
@@ -93,6 +97,8 @@ http_interactions:
|
|
93
97
|
- ! '*/*; q=0.5, application/xml'
|
94
98
|
Accept-Encoding:
|
95
99
|
- gzip, deflate
|
100
|
+
Authorization:
|
101
|
+
- Bearer DEMO_TOKEN
|
96
102
|
User-Agent:
|
97
103
|
- Ruby
|
98
104
|
response:
|
@@ -109,7 +115,7 @@ http_interactions:
|
|
109
115
|
Content-Type:
|
110
116
|
- application/json; charset=utf-8
|
111
117
|
Date:
|
112
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:06:24 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"-1820526720"'
|
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?limit=100000"}]}'
|
135
141
|
http_version:
|
136
|
-
recorded_at:
|
142
|
+
recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
|
137
143
|
- request:
|
138
144
|
method: get
|
139
|
-
uri: https://
|
145
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=2
|
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:24 GMT
|
165
173
|
Etag:
|
166
174
|
- ! '"1588311031"'
|
167
175
|
Server:
|
@@ -182,10 +190,10 @@ http_interactions:
|
|
182
190
|
Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
|
183
191
|
Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"uri":"/v1.1/schools/530e595026403103360ff9fe"}],"paging":{"current":1,"total":2,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe"}]}'
|
184
192
|
http_version:
|
185
|
-
recorded_at:
|
193
|
+
recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
|
186
194
|
- request:
|
187
195
|
method: get
|
188
|
-
uri: https://
|
196
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe
|
189
197
|
body:
|
190
198
|
encoding: US-ASCII
|
191
199
|
string: ''
|
@@ -194,6 +202,8 @@ http_interactions:
|
|
194
202
|
- ! '*/*; q=0.5, application/xml'
|
195
203
|
Accept-Encoding:
|
196
204
|
- gzip, deflate
|
205
|
+
Authorization:
|
206
|
+
- Bearer DEMO_TOKEN
|
197
207
|
User-Agent:
|
198
208
|
- Ruby
|
199
209
|
response:
|
@@ -210,7 +220,7 @@ http_interactions:
|
|
210
220
|
Content-Type:
|
211
221
|
- application/json; charset=utf-8
|
212
222
|
Date:
|
213
|
-
-
|
223
|
+
- Sat, 13 Sep 2014 00:06:24 GMT
|
214
224
|
Server:
|
215
225
|
- nginx/1.4.7
|
216
226
|
X-Powered-By:
|
@@ -226,5 +236,5 @@ http_interactions:
|
|
226
236
|
Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
|
227
237
|
Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&ending_before=530e595026403103360ff9ff"}]}'
|
228
238
|
http_version:
|
229
|
-
recorded_at:
|
230
|
-
recorded_with: VCR 2.
|
239
|
+
recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
|
240
|
+
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:05:16 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:05:16 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:05:17 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:05:17 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=100000
|
88
92
|
body:
|
89
93
|
encoding: US-ASCII
|
90
94
|
string: ''
|
@@ -93,6 +97,8 @@ http_interactions:
|
|
93
97
|
- ! '*/*; q=0.5, application/xml'
|
94
98
|
Accept-Encoding:
|
95
99
|
- gzip, deflate
|
100
|
+
Authorization:
|
101
|
+
- Bearer DEMO_TOKEN
|
96
102
|
User-Agent:
|
97
103
|
- Ruby
|
98
104
|
response:
|
@@ -109,7 +115,7 @@ http_interactions:
|
|
109
115
|
Content-Type:
|
110
116
|
- application/json; charset=utf-8
|
111
117
|
Date:
|
112
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:05:17 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"-317608596"'
|
115
121
|
Server:
|
@@ -1056,10 +1062,10 @@ http_interactions:
|
|
1056
1062
|
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
|
1057
1063
|
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"}],"paging":{"current":1,"total":1,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=100000"}]}'
|
1058
1064
|
http_version:
|
1059
|
-
recorded_at:
|
1065
|
+
recorded_at: Sat, 13 Sep 2014 00:05:17 GMT
|
1060
1066
|
- request:
|
1061
1067
|
method: get
|
1062
|
-
uri: https://
|
1068
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10
|
1063
1069
|
body:
|
1064
1070
|
encoding: US-ASCII
|
1065
1071
|
string: ''
|
@@ -1068,6 +1074,8 @@ http_interactions:
|
|
1068
1074
|
- ! '*/*; q=0.5, application/xml'
|
1069
1075
|
Accept-Encoding:
|
1070
1076
|
- gzip, deflate
|
1077
|
+
Authorization:
|
1078
|
+
- Bearer DEMO_TOKEN
|
1071
1079
|
User-Agent:
|
1072
1080
|
- Ruby
|
1073
1081
|
response:
|
@@ -1084,7 +1092,7 @@ http_interactions:
|
|
1084
1092
|
Content-Type:
|
1085
1093
|
- application/json; charset=utf-8
|
1086
1094
|
Date:
|
1087
|
-
-
|
1095
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1088
1096
|
Etag:
|
1089
1097
|
- ! '"205814927"'
|
1090
1098
|
Server:
|
@@ -1118,10 +1126,10 @@ http_interactions:
|
|
1118
1126
|
Grade Advisory","course_number":"701","created":"2014-02-26T21:15:37.967Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.970Z","name":"Seventh
|
1119
1127
|
Grade Advisory - 701 - S. Madison","period":"1","school":"530e595026403103360ff9ff","sis_id":"590","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffd5","530e5961049e75a9262cffe2","530e5961049e75a9262cffe3","530e5961049e75a9262d0015","530e5961049e75a9262d008a","530e5962049e75a9262d0155","530e5962049e75a9262d015e","530e5963049e75a9262d01a3","530e5963049e75a9262d01f2","530e5963049e75a9262d0233","530e5964049e75a9262d0275","530e5964049e75a9262d029f","530e5964049e75a9262d02c0","530e5965049e75a9262d0323","530e5965049e75a9262d034a","530e5965049e75a9262d0354","530e5966049e75a9262d046d","530e5966049e75a9262d0489","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5967049e75a9262d056d","530e5967049e75a9262d05bb","530e5968049e75a9262d0621"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0afb"},"uri":"/v1.1/sections/530e5979049e75a9262d0afb"}],"paging":{"current":1,"total":38,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb"}]}'
|
1120
1128
|
http_version:
|
1121
|
-
recorded_at:
|
1129
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1122
1130
|
- request:
|
1123
1131
|
method: get
|
1124
|
-
uri: https://
|
1132
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb
|
1125
1133
|
body:
|
1126
1134
|
encoding: US-ASCII
|
1127
1135
|
string: ''
|
@@ -1130,6 +1138,8 @@ http_interactions:
|
|
1130
1138
|
- ! '*/*; q=0.5, application/xml'
|
1131
1139
|
Accept-Encoding:
|
1132
1140
|
- gzip, deflate
|
1141
|
+
Authorization:
|
1142
|
+
- Bearer DEMO_TOKEN
|
1133
1143
|
User-Agent:
|
1134
1144
|
- Ruby
|
1135
1145
|
response:
|
@@ -1146,7 +1156,7 @@ http_interactions:
|
|
1146
1156
|
Content-Type:
|
1147
1157
|
- application/json; charset=utf-8
|
1148
1158
|
Date:
|
1149
|
-
-
|
1159
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1150
1160
|
Etag:
|
1151
1161
|
- ! '"-1866448954"'
|
1152
1162
|
Server:
|
@@ -1180,10 +1190,10 @@ http_interactions:
|
|
1180
1190
|
Guidance","course_number":"905","created":"2014-02-26T21:15:38.011Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.013Z","name":"Group
|
1181
1191
|
Guidance - 905 - J. Cummings (Section 5)","period":"0","school":"530e595026403103360ff9fd","sis_id":"600","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff27","530e5960049e75a9262cff5b","530e5961049e75a9262cfffb","530e5961049e75a9262d0038","530e5961049e75a9262d0089","530e5962049e75a9262d00ba","530e5962049e75a9262d00e6","530e5963049e75a9262d0181","530e5963049e75a9262d020f","530e5963049e75a9262d021b","530e5964049e75a9262d02d3","530e5965049e75a9262d033c","530e5966049e75a9262d045e","530e5966049e75a9262d0496","530e5966049e75a9262d04a5","530e5968049e75a9262d063c"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c16","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b05"},"uri":"/v1.1/sections/530e597a049e75a9262d0b05"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e5979049e75a9262d0afc"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05"}]}'
|
1182
1192
|
http_version:
|
1183
|
-
recorded_at:
|
1193
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1184
1194
|
- request:
|
1185
1195
|
method: get
|
1186
|
-
uri: https://
|
1196
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05
|
1187
1197
|
body:
|
1188
1198
|
encoding: US-ASCII
|
1189
1199
|
string: ''
|
@@ -1192,6 +1202,8 @@ http_interactions:
|
|
1192
1202
|
- ! '*/*; q=0.5, application/xml'
|
1193
1203
|
Accept-Encoding:
|
1194
1204
|
- gzip, deflate
|
1205
|
+
Authorization:
|
1206
|
+
- Bearer DEMO_TOKEN
|
1195
1207
|
User-Agent:
|
1196
1208
|
- Ruby
|
1197
1209
|
response:
|
@@ -1208,7 +1220,7 @@ http_interactions:
|
|
1208
1220
|
Content-Type:
|
1209
1221
|
- application/json; charset=utf-8
|
1210
1222
|
Date:
|
1211
|
-
-
|
1223
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1212
1224
|
Etag:
|
1213
1225
|
- ! '"-1637407075"'
|
1214
1226
|
Server:
|
@@ -1250,10 +1262,10 @@ http_interactions:
|
|
1250
1262
|
- 005 - R. Plant (Section 5)","period":"4","school":"530e595026403103360ff9fd","sis_id":"610","students":["530e5960049e75a9262cff48","530e5961049e75a9262d0027","530e5961049e75a9262d0056","530e5962049e75a9262d00b5","530e5962049e75a9262d00f4","530e5963049e75a9262d0180","530e5963049e75a9262d0202","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d02aa","530e5964049e75a9262d0304","530e5966049e75a9262d0418","530e5966049e75a9262d043c","530e5966049e75a9262d04ba","530e5967049e75a9262d059e","530e5968049e75a9262d05e9","530e5968049e75a9262d061f"],"subject":"arts
|
1251
1263
|
and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b0f"},"uri":"/v1.1/sections/530e597a049e75a9262d0b0f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b06"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f"}]}'
|
1252
1264
|
http_version:
|
1253
|
-
recorded_at:
|
1265
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1254
1266
|
- request:
|
1255
1267
|
method: get
|
1256
|
-
uri: https://
|
1268
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f
|
1257
1269
|
body:
|
1258
1270
|
encoding: US-ASCII
|
1259
1271
|
string: ''
|
@@ -1262,6 +1274,8 @@ http_interactions:
|
|
1262
1274
|
- ! '*/*; q=0.5, application/xml'
|
1263
1275
|
Accept-Encoding:
|
1264
1276
|
- gzip, deflate
|
1277
|
+
Authorization:
|
1278
|
+
- Bearer DEMO_TOKEN
|
1265
1279
|
User-Agent:
|
1266
1280
|
- Ruby
|
1267
1281
|
response:
|
@@ -1278,7 +1292,7 @@ http_interactions:
|
|
1278
1292
|
Content-Type:
|
1279
1293
|
- application/json; charset=utf-8
|
1280
1294
|
Date:
|
1281
|
-
-
|
1295
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1282
1296
|
Etag:
|
1283
1297
|
- ! '"1252785622"'
|
1284
1298
|
Server:
|
@@ -1319,10 +1333,10 @@ http_interactions:
|
|
1319
1333
|
Music 12 - 004 - J. Coulton","period":"6","school":"530e595026403103360ff9fd","sis_id":"620","students":["530e5960049e75a9262cff6a","530e5961049e75a9262d002b","530e5961049e75a9262d0039","530e5961049e75a9262d005b","530e5962049e75a9262d0159","530e5963049e75a9262d0209","530e5963049e75a9262d020d","530e5963049e75a9262d021d","530e5963049e75a9262d0232","530e5966049e75a9262d03f3","530e5967049e75a9262d04fa","530e5967049e75a9262d0569","530e5967049e75a9262d058e","530e5967049e75a9262d0591","530e5967049e75a9262d05bd","530e5968049e75a9262d05dd","530e5968049e75a9262d05fa"],"subject":"arts
|
1320
1334
|
and music","teacher":"530e5955d50c310f36112c06","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b19"},"uri":"/v1.1/sections/530e597a049e75a9262d0b19"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19"}]}'
|
1321
1335
|
http_version:
|
1322
|
-
recorded_at:
|
1336
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1323
1337
|
- request:
|
1324
1338
|
method: get
|
1325
|
-
uri: https://
|
1339
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19
|
1326
1340
|
body:
|
1327
1341
|
encoding: US-ASCII
|
1328
1342
|
string: ''
|
@@ -1331,6 +1345,8 @@ http_interactions:
|
|
1331
1345
|
- ! '*/*; q=0.5, application/xml'
|
1332
1346
|
Accept-Encoding:
|
1333
1347
|
- gzip, deflate
|
1348
|
+
Authorization:
|
1349
|
+
- Bearer DEMO_TOKEN
|
1334
1350
|
User-Agent:
|
1335
1351
|
- Ruby
|
1336
1352
|
response:
|
@@ -1347,7 +1363,7 @@ http_interactions:
|
|
1347
1363
|
Content-Type:
|
1348
1364
|
- application/json; charset=utf-8
|
1349
1365
|
Date:
|
1350
|
-
-
|
1366
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1351
1367
|
Etag:
|
1352
1368
|
- ! '"-323231899"'
|
1353
1369
|
Server:
|
@@ -1388,10 +1404,10 @@ http_interactions:
|
|
1388
1404
|
Dance Elective","course_number":"616","created":"2014-02-26T21:15:38.142Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.144Z","name":"Latin
|
1389
1405
|
Dance Elective - 616 - C. Gleichner","period":"6","school":"530e595026403103360ff9ff","sis_id":"630","students":["530e5960049e75a9262cff22","530e5960049e75a9262cff59","530e5961049e75a9262cffeb","530e5961049e75a9262d001c","530e5962049e75a9262d00e5","530e5962049e75a9262d0164","530e5963049e75a9262d0228","530e5964049e75a9262d0266","530e5964049e75a9262d02b8","530e5965049e75a9262d0321","530e5965049e75a9262d0323","530e5965049e75a9262d034c","530e5965049e75a9262d0354","530e5965049e75a9262d03a0","530e5965049e75a9262d03dd","530e5966049e75a9262d0414","530e5967049e75a9262d056d","530e5968049e75a9262d061d","530e5968049e75a9262d0629","530e5968049e75a9262d0637"],"subject":"language","teacher":"530e5955d50c310f36112be9","term":{"name":"S2","start_date":"2012-12-02T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b23"},"uri":"/v1.1/sections/530e597a049e75a9262d0b23"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b1a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23"}]}'
|
1390
1406
|
http_version:
|
1391
|
-
recorded_at:
|
1407
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1392
1408
|
- request:
|
1393
1409
|
method: get
|
1394
|
-
uri: https://
|
1410
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23
|
1395
1411
|
body:
|
1396
1412
|
encoding: US-ASCII
|
1397
1413
|
string: ''
|
@@ -1400,6 +1416,8 @@ http_interactions:
|
|
1400
1416
|
- ! '*/*; q=0.5, application/xml'
|
1401
1417
|
Accept-Encoding:
|
1402
1418
|
- gzip, deflate
|
1419
|
+
Authorization:
|
1420
|
+
- Bearer DEMO_TOKEN
|
1403
1421
|
User-Agent:
|
1404
1422
|
- Ruby
|
1405
1423
|
response:
|
@@ -1416,7 +1434,7 @@ http_interactions:
|
|
1416
1434
|
Content-Type:
|
1417
1435
|
- application/json; charset=utf-8
|
1418
1436
|
Date:
|
1419
|
-
-
|
1437
|
+
- Sat, 13 Sep 2014 00:05:18 GMT
|
1420
1438
|
Etag:
|
1421
1439
|
- ! '"1633650518"'
|
1422
1440
|
Server:
|
@@ -1455,10 +1473,10 @@ http_interactions:
|
|
1455
1473
|
to Web Design - 005 - T. Schultz","period":"3","school":"530e595026403103360ff9fd","sis_id":"640","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff23","530e5960049e75a9262cff27","530e5960049e75a9262cff4b","530e5960049e75a9262cff7a","530e5961049e75a9262cfffb","530e5961049e75a9262d007d","530e5963049e75a9262d022f","530e5965049e75a9262d036c","530e5966049e75a9262d03f8","530e5966049e75a9262d048d","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0575","530e5967049e75a9262d05b7","530e5968049e75a9262d0614","530e5968049e75a9262d0646"],"subject":"technology
|
1456
1474
|
and engineering","teacher":"530e5955d50c310f36112bee","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b2d"},"uri":"/v1.1/sections/530e597a049e75a9262d0b2d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b24"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d"}]}'
|
1457
1475
|
http_version:
|
1458
|
-
recorded_at:
|
1476
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1459
1477
|
- request:
|
1460
1478
|
method: get
|
1461
|
-
uri: https://
|
1479
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d
|
1462
1480
|
body:
|
1463
1481
|
encoding: US-ASCII
|
1464
1482
|
string: ''
|
@@ -1467,6 +1485,8 @@ http_interactions:
|
|
1467
1485
|
- ! '*/*; q=0.5, application/xml'
|
1468
1486
|
Accept-Encoding:
|
1469
1487
|
- gzip, deflate
|
1488
|
+
Authorization:
|
1489
|
+
- Bearer DEMO_TOKEN
|
1470
1490
|
User-Agent:
|
1471
1491
|
- Ruby
|
1472
1492
|
response:
|
@@ -1483,7 +1503,7 @@ http_interactions:
|
|
1483
1503
|
Content-Type:
|
1484
1504
|
- application/json; charset=utf-8
|
1485
1505
|
Date:
|
1486
|
-
-
|
1506
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1487
1507
|
Etag:
|
1488
1508
|
- ! '"-1866821540"'
|
1489
1509
|
Server:
|
@@ -1527,10 +1547,10 @@ http_interactions:
|
|
1527
1547
|
English Language and Composition - 304 - S. Trantow","period":"6","school":"530e595026403103360ff9fd","sis_id":"650","students":["530e5960049e75a9262cff2f","530e5960049e75a9262cff51","530e5961049e75a9262d002e","530e5962049e75a9262d00bf","530e5962049e75a9262d00c3","530e5963049e75a9262d01a1","530e5963049e75a9262d01a7","530e5963049e75a9262d01d2","530e5963049e75a9262d0205","530e5964049e75a9262d0281","530e5964049e75a9262d02b1","530e5964049e75a9262d02d9","530e5965049e75a9262d0328","530e5966049e75a9262d044e","530e5966049e75a9262d047e","530e5968049e75a9262d05db","530e5968049e75a9262d0627","530e5968049e75a9262d062b","530e5968049e75a9262d0633","530e5968049e75a9262d0639"],"subject":"english/language
|
1528
1548
|
arts","teacher":"530e5955d50c310f36112bf0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b37"},"uri":"/v1.1/sections/530e597a049e75a9262d0b37"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b2e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37"}]}'
|
1529
1549
|
http_version:
|
1530
|
-
recorded_at:
|
1550
|
+
recorded_at: Sat, 13 Sep 2014 00:05:18 GMT
|
1531
1551
|
- request:
|
1532
1552
|
method: get
|
1533
|
-
uri: https://
|
1553
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37
|
1534
1554
|
body:
|
1535
1555
|
encoding: US-ASCII
|
1536
1556
|
string: ''
|
@@ -1539,6 +1559,8 @@ http_interactions:
|
|
1539
1559
|
- ! '*/*; q=0.5, application/xml'
|
1540
1560
|
Accept-Encoding:
|
1541
1561
|
- gzip, deflate
|
1562
|
+
Authorization:
|
1563
|
+
- Bearer DEMO_TOKEN
|
1542
1564
|
User-Agent:
|
1543
1565
|
- Ruby
|
1544
1566
|
response:
|
@@ -1555,7 +1577,7 @@ http_interactions:
|
|
1555
1577
|
Content-Type:
|
1556
1578
|
- application/json; charset=utf-8
|
1557
1579
|
Date:
|
1558
|
-
-
|
1580
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1559
1581
|
Etag:
|
1560
1582
|
- ! '"1867079356"'
|
1561
1583
|
Server:
|
@@ -1599,10 +1621,10 @@ http_interactions:
|
|
1599
1621
|
Class 701 - 701 - Z. Hand (Section 1)","period":"2","school":"530e595026403103360ff9ff","sis_id":"661","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"english/language
|
1600
1622
|
arts","teacher":"530e5955d50c310f36112bdd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b41"},"uri":"/v1.1/sections/530e597a049e75a9262d0b41"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b38"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41"}]}'
|
1601
1623
|
http_version:
|
1602
|
-
recorded_at:
|
1624
|
+
recorded_at: Sat, 13 Sep 2014 00:05:19 GMT
|
1603
1625
|
- request:
|
1604
1626
|
method: get
|
1605
|
-
uri: https://
|
1627
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41
|
1606
1628
|
body:
|
1607
1629
|
encoding: US-ASCII
|
1608
1630
|
string: ''
|
@@ -1611,6 +1633,8 @@ http_interactions:
|
|
1611
1633
|
- ! '*/*; q=0.5, application/xml'
|
1612
1634
|
Accept-Encoding:
|
1613
1635
|
- gzip, deflate
|
1636
|
+
Authorization:
|
1637
|
+
- Bearer DEMO_TOKEN
|
1614
1638
|
User-Agent:
|
1615
1639
|
- Ruby
|
1616
1640
|
response:
|
@@ -1627,7 +1651,7 @@ http_interactions:
|
|
1627
1651
|
Content-Type:
|
1628
1652
|
- application/json; charset=utf-8
|
1629
1653
|
Date:
|
1630
|
-
-
|
1654
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1631
1655
|
Etag:
|
1632
1656
|
- ! '"-348636803"'
|
1633
1657
|
Server:
|
@@ -1671,10 +1695,10 @@ http_interactions:
|
|
1671
1695
|
Remediation, Grade 9 - 105 - B. Daniel","period":"9","school":"530e595026403103360ff9fd","sis_id":"671","students":["530e5960049e75a9262cff3c","530e5960049e75a9262cff58","530e5960049e75a9262cff5b","530e5960049e75a9262cffa2","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00ba","530e5962049e75a9262d00ff","530e5962049e75a9262d0127","530e5963049e75a9262d019f","530e5963049e75a9262d020f","530e5966049e75a9262d046a","530e5966049e75a9262d04a5","530e5968049e75a9262d063c"],"subject":"english/language
|
1672
1696
|
arts","teacher":"530e5955d50c310f36112be7","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b4b"},"uri":"/v1.1/sections/530e597a049e75a9262d0b4b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b42"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b"}]}'
|
1673
1697
|
http_version:
|
1674
|
-
recorded_at:
|
1698
|
+
recorded_at: Sat, 13 Sep 2014 00:05:19 GMT
|
1675
1699
|
- request:
|
1676
1700
|
method: get
|
1677
|
-
uri: https://
|
1701
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b
|
1678
1702
|
body:
|
1679
1703
|
encoding: US-ASCII
|
1680
1704
|
string: ''
|
@@ -1683,6 +1707,8 @@ http_interactions:
|
|
1683
1707
|
- ! '*/*; q=0.5, application/xml'
|
1684
1708
|
Accept-Encoding:
|
1685
1709
|
- gzip, deflate
|
1710
|
+
Authorization:
|
1711
|
+
- Bearer DEMO_TOKEN
|
1686
1712
|
User-Agent:
|
1687
1713
|
- Ruby
|
1688
1714
|
response:
|
@@ -1699,7 +1725,7 @@ http_interactions:
|
|
1699
1725
|
Content-Type:
|
1700
1726
|
- application/json; charset=utf-8
|
1701
1727
|
Date:
|
1702
|
-
-
|
1728
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1703
1729
|
Etag:
|
1704
1730
|
- ! '"-1951933124"'
|
1705
1731
|
Server:
|
@@ -1739,10 +1765,10 @@ http_interactions:
|
|
1739
1765
|
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
|
1740
1766
|
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"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b4c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55"}]}'
|
1741
1767
|
http_version:
|
1742
|
-
recorded_at:
|
1768
|
+
recorded_at: Sat, 13 Sep 2014 00:05:19 GMT
|
1743
1769
|
- request:
|
1744
1770
|
method: get
|
1745
|
-
uri: https://
|
1771
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55
|
1746
1772
|
body:
|
1747
1773
|
encoding: US-ASCII
|
1748
1774
|
string: ''
|
@@ -1751,6 +1777,8 @@ http_interactions:
|
|
1751
1777
|
- ! '*/*; q=0.5, application/xml'
|
1752
1778
|
Accept-Encoding:
|
1753
1779
|
- gzip, deflate
|
1780
|
+
Authorization:
|
1781
|
+
- Bearer DEMO_TOKEN
|
1754
1782
|
User-Agent:
|
1755
1783
|
- Ruby
|
1756
1784
|
response:
|
@@ -1767,7 +1795,7 @@ http_interactions:
|
|
1767
1795
|
Content-Type:
|
1768
1796
|
- application/json; charset=utf-8
|
1769
1797
|
Date:
|
1770
|
-
-
|
1798
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1771
1799
|
Etag:
|
1772
1800
|
- ! '"1591368645"'
|
1773
1801
|
Server:
|
@@ -1806,10 +1834,10 @@ http_interactions:
|
|
1806
1834
|
History, Honors - 202 - J. Doyle","period":"5","school":"530e595026403103360ff9fd","sis_id":"691","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff48","530e5960049e75a9262cff4f","530e5961049e75a9262d0027","530e5961049e75a9262d004e","530e5961049e75a9262d0056","530e5961049e75a9262d0082","530e5961049e75a9262d008d","530e5962049e75a9262d012b","530e5963049e75a9262d01cc","530e5963049e75a9262d0207","530e5964049e75a9262d0288","530e5964049e75a9262d02aa","530e5965049e75a9262d0381","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5966049e75a9262d040c","530e5966049e75a9262d041c","530e5967049e75a9262d0577","530e5967049e75a9262d058b","530e5967049e75a9262d0594","530e5967049e75a9262d05b3","530e5967049e75a9262d05bf","530e5968049e75a9262d05f7","530e5968049e75a9262d0603"],"subject":"social
|
1807
1835
|
studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b5f"},"uri":"/v1.1/sections/530e597a049e75a9262d0b5f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b56"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f"}]}'
|
1808
1836
|
http_version:
|
1809
|
-
recorded_at:
|
1837
|
+
recorded_at: Sat, 13 Sep 2014 00:05:19 GMT
|
1810
1838
|
- request:
|
1811
1839
|
method: get
|
1812
|
-
uri: https://
|
1840
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f
|
1813
1841
|
body:
|
1814
1842
|
encoding: US-ASCII
|
1815
1843
|
string: ''
|
@@ -1818,6 +1846,8 @@ http_interactions:
|
|
1818
1846
|
- ! '*/*; q=0.5, application/xml'
|
1819
1847
|
Accept-Encoding:
|
1820
1848
|
- gzip, deflate
|
1849
|
+
Authorization:
|
1850
|
+
- Bearer DEMO_TOKEN
|
1821
1851
|
User-Agent:
|
1822
1852
|
- Ruby
|
1823
1853
|
response:
|
@@ -1834,7 +1864,7 @@ http_interactions:
|
|
1834
1864
|
Content-Type:
|
1835
1865
|
- application/json; charset=utf-8
|
1836
1866
|
Date:
|
1837
|
-
-
|
1867
|
+
- Sat, 13 Sep 2014 00:05:19 GMT
|
1838
1868
|
Etag:
|
1839
1869
|
- ! '"363652445"'
|
1840
1870
|
Server:
|
@@ -1878,10 +1908,10 @@ http_interactions:
|
|
1878
1908
|
Government and Politics - 402 - J. Doyle","period":"5","school":"530e595026403103360ff9fd","sis_id":"701","students":["530e5960049e75a9262cff9f","530e5960049e75a9262cffa6","530e5961049e75a9262cffb7","530e5961049e75a9262d007b","530e5962049e75a9262d00f7","530e5962049e75a9262d0122","530e5963049e75a9262d0209","530e5963049e75a9262d020b","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02d4","530e5964049e75a9262d02fe","530e5965049e75a9262d0372","530e5966049e75a9262d03f3","530e5966049e75a9262d03f6","530e5966049e75a9262d043e","530e5967049e75a9262d0584","530e5967049e75a9262d0585","530e5967049e75a9262d058c","530e5967049e75a9262d05a6","530e5967049e75a9262d05bd","530e5968049e75a9262d05fa","530e5968049e75a9262d0602","530e5968049e75a9262d060c","530e5968049e75a9262d0622"],"subject":"social
|
1879
1909
|
studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b69"},"uri":"/v1.1/sections/530e597a049e75a9262d0b69"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b60"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69"}]}'
|
1880
1910
|
http_version:
|
1881
|
-
recorded_at:
|
1911
|
+
recorded_at: Sat, 13 Sep 2014 00:05:19 GMT
|
1882
1912
|
- request:
|
1883
1913
|
method: get
|
1884
|
-
uri: https://
|
1914
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69
|
1885
1915
|
body:
|
1886
1916
|
encoding: US-ASCII
|
1887
1917
|
string: ''
|
@@ -1890,6 +1920,8 @@ http_interactions:
|
|
1890
1920
|
- ! '*/*; q=0.5, application/xml'
|
1891
1921
|
Accept-Encoding:
|
1892
1922
|
- gzip, deflate
|
1923
|
+
Authorization:
|
1924
|
+
- Bearer DEMO_TOKEN
|
1893
1925
|
User-Agent:
|
1894
1926
|
- Ruby
|
1895
1927
|
response:
|
@@ -1906,7 +1938,7 @@ http_interactions:
|
|
1906
1938
|
Content-Type:
|
1907
1939
|
- application/json; charset=utf-8
|
1908
1940
|
Date:
|
1909
|
-
-
|
1941
|
+
- Sat, 13 Sep 2014 00:05:20 GMT
|
1910
1942
|
Etag:
|
1911
1943
|
- ! '"-1918875711"'
|
1912
1944
|
Server:
|
@@ -1946,10 +1978,10 @@ http_interactions:
|
|
1946
1978
|
101, Homeroom","course_number":"101","created":"2014-02-26T21:15:38.479Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.481Z","name":"Class
|
1947
1979
|
101, Homeroom - 101 - H. Hahn (Section 1)","period":"0","school":"530e595026403103360ff9fe","sis_id":"711","students":["530e5960049e75a9262cff2b","530e5960049e75a9262cff6e","530e5960049e75a9262cffa0","530e5960049e75a9262cffac","530e5961049e75a9262d0081","530e5961049e75a9262d0093","530e5963049e75a9262d0185","530e5963049e75a9262d01bd","530e5963049e75a9262d0216","530e5964049e75a9262d02c7","530e5965049e75a9262d0327","530e5965049e75a9262d0338","530e5965049e75a9262d034b","530e5965049e75a9262d03cb","530e5965049e75a9262d03ef","530e5966049e75a9262d046f","530e5966049e75a9262d049b","530e5967049e75a9262d050e","530e5967049e75a9262d051e","530e5967049e75a9262d0566"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bcb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b73"},"uri":"/v1.1/sections/530e597a049e75a9262d0b73"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b6a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73"}]}'
|
1948
1980
|
http_version:
|
1949
|
-
recorded_at:
|
1981
|
+
recorded_at: Sat, 13 Sep 2014 00:05:20 GMT
|
1950
1982
|
- request:
|
1951
1983
|
method: get
|
1952
|
-
uri: https://
|
1984
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73
|
1953
1985
|
body:
|
1954
1986
|
encoding: US-ASCII
|
1955
1987
|
string: ''
|
@@ -1958,6 +1990,8 @@ http_interactions:
|
|
1958
1990
|
- ! '*/*; q=0.5, application/xml'
|
1959
1991
|
Accept-Encoding:
|
1960
1992
|
- gzip, deflate
|
1993
|
+
Authorization:
|
1994
|
+
- Bearer DEMO_TOKEN
|
1961
1995
|
User-Agent:
|
1962
1996
|
- Ruby
|
1963
1997
|
response:
|
@@ -1974,7 +2008,7 @@ http_interactions:
|
|
1974
2008
|
Content-Type:
|
1975
2009
|
- application/json; charset=utf-8
|
1976
2010
|
Date:
|
1977
|
-
-
|
2011
|
+
- Sat, 13 Sep 2014 00:05:20 GMT
|
1978
2012
|
Etag:
|
1979
2013
|
- ! '"-1556313222"'
|
1980
2014
|
Server:
|
@@ -2008,10 +2042,10 @@ http_interactions:
|
|
2008
2042
|
123, Homeroom","course_number":"123","created":"2014-02-26T21:15:38.532Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.534Z","name":"Class
|
2009
2043
|
123, Homeroom - 123 - R. Will (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"721","students":["530e5960049e75a9262cff67","530e5960049e75a9262cff90","530e5961049e75a9262cffb7","530e5961049e75a9262d0002","530e5961049e75a9262d002b","530e5961049e75a9262d0039","530e5961049e75a9262d007b","530e5962049e75a9262d012c","530e5962049e75a9262d0159","530e5962049e75a9262d015b","530e5962049e75a9262d015d","530e5963049e75a9262d01d6","530e5963049e75a9262d0232","530e5964049e75a9262d02fe","530e5965049e75a9262d0324","530e5965049e75a9262d0332","530e5965049e75a9262d0363","530e5965049e75a9262d0379","530e5965049e75a9262d037f","530e5965049e75a9262d03cd","530e5966049e75a9262d03f6","530e5966049e75a9262d0447","530e5966049e75a9262d044c","530e5966049e75a9262d04a0","530e5967049e75a9262d0563","530e5967049e75a9262d0569","530e5967049e75a9262d0585","530e5967049e75a9262d05a6","530e5967049e75a9262d05b2","530e5967049e75a9262d05bc","530e5968049e75a9262d05c5","530e5968049e75a9262d05ec","530e5968049e75a9262d0607","530e5968049e75a9262d0648"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bfd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b7d"},"uri":"/v1.1/sections/530e597a049e75a9262d0b7d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b74"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d"}]}'
|
2010
2044
|
http_version:
|
2011
|
-
recorded_at:
|
2045
|
+
recorded_at: Sat, 13 Sep 2014 00:05:20 GMT
|
2012
2046
|
- request:
|
2013
2047
|
method: get
|
2014
|
-
uri: https://
|
2048
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d
|
2015
2049
|
body:
|
2016
2050
|
encoding: US-ASCII
|
2017
2051
|
string: ''
|
@@ -2020,6 +2054,8 @@ http_interactions:
|
|
2020
2054
|
- ! '*/*; q=0.5, application/xml'
|
2021
2055
|
Accept-Encoding:
|
2022
2056
|
- gzip, deflate
|
2057
|
+
Authorization:
|
2058
|
+
- Bearer DEMO_TOKEN
|
2023
2059
|
User-Agent:
|
2024
2060
|
- Ruby
|
2025
2061
|
response:
|
@@ -2036,7 +2072,7 @@ http_interactions:
|
|
2036
2072
|
Content-Type:
|
2037
2073
|
- application/json; charset=utf-8
|
2038
2074
|
Date:
|
2039
|
-
-
|
2075
|
+
- Sat, 13 Sep 2014 00:05:20 GMT
|
2040
2076
|
Etag:
|
2041
2077
|
- ! '"-1794020354"'
|
2042
2078
|
Server:
|
@@ -2070,10 +2106,10 @@ http_interactions:
|
|
2070
2106
|
403, Homeroom","course_number":"403","created":"2014-02-26T21:15:38.572Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:38.574Z","name":"Class
|
2071
2107
|
403, Homeroom - 403 - E. Oberbrunner","period":"0","school":"530e595026403103360ff9fe","sis_id":"731","students":["530e5961049e75a9262d0087","530e5962049e75a9262d00bb","530e5962049e75a9262d00ea","530e5962049e75a9262d0107","530e5962049e75a9262d014d","530e5963049e75a9262d0193","530e5963049e75a9262d01b3","530e5963049e75a9262d01ce","530e5963049e75a9262d01de","530e5963049e75a9262d01fe","530e5964049e75a9262d028b","530e5964049e75a9262d02c9","530e5965049e75a9262d0329","530e5965049e75a9262d032c","530e5966049e75a9262d03f4","530e5966049e75a9262d04da","530e5967049e75a9262d04f9","530e5967049e75a9262d0505","530e5967049e75a9262d0509","530e5967049e75a9262d0567","530e5968049e75a9262d05ef"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bd0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b87"},"uri":"/v1.1/sections/530e597a049e75a9262d0b87"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b7e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87"}]}'
|
2072
2108
|
http_version:
|
2073
|
-
recorded_at:
|
2109
|
+
recorded_at: Sat, 13 Sep 2014 00:05:20 GMT
|
2074
2110
|
- request:
|
2075
2111
|
method: get
|
2076
|
-
uri: https://
|
2112
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87
|
2077
2113
|
body:
|
2078
2114
|
encoding: US-ASCII
|
2079
2115
|
string: ''
|
@@ -2082,6 +2118,8 @@ http_interactions:
|
|
2082
2118
|
- ! '*/*; q=0.5, application/xml'
|
2083
2119
|
Accept-Encoding:
|
2084
2120
|
- gzip, deflate
|
2121
|
+
Authorization:
|
2122
|
+
- Bearer DEMO_TOKEN
|
2085
2123
|
User-Agent:
|
2086
2124
|
- Ruby
|
2087
2125
|
response:
|
@@ -2098,7 +2136,7 @@ http_interactions:
|
|
2098
2136
|
Content-Type:
|
2099
2137
|
- application/json; charset=utf-8
|
2100
2138
|
Date:
|
2101
|
-
-
|
2139
|
+
- Sat, 13 Sep 2014 00:05:20 GMT
|
2102
2140
|
Etag:
|
2103
2141
|
- ! '"733629802"'
|
2104
2142
|
Server:
|
@@ -2132,10 +2170,10 @@ http_interactions:
|
|
2132
2170
|
801, Homeroom","course_number":"801","created":"2014-02-26T21:15:38.612Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:38.614Z","name":"Class
|
2133
2171
|
801, Homeroom - 801 - J. Schneider","period":"0","school":"530e595026403103360ff9ff","sis_id":"741","students":["530e5960049e75a9262cff37","530e5960049e75a9262cff9e","530e5961049e75a9262d0011","530e5961049e75a9262d0014","530e5962049e75a9262d00e1","530e5963049e75a9262d01d0","530e5963049e75a9262d01d1","530e5963049e75a9262d01dc","530e5963049e75a9262d01ed","530e5963049e75a9262d0228","530e5963049e75a9262d0252","530e5964049e75a9262d0291","530e5964049e75a9262d02cb","530e5965049e75a9262d031d","530e5965049e75a9262d0395","530e5965049e75a9262d03b8","530e5965049e75a9262d03c2","530e5966049e75a9262d03f0","530e5967049e75a9262d0515","530e5967049e75a9262d053e","530e5967049e75a9262d0542","530e5967049e75a9262d0592","530e5967049e75a9262d05af","530e5968049e75a9262d05d8","530e5968049e75a9262d05da","530e5968049e75a9262d061d"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bdf","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b91"},"uri":"/v1.1/sections/530e597a049e75a9262d0b91"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b88"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91"}]}'
|
2134
2172
|
http_version:
|
2135
|
-
recorded_at:
|
2173
|
+
recorded_at: Sat, 13 Sep 2014 00:05:20 GMT
|
2136
2174
|
- request:
|
2137
2175
|
method: get
|
2138
|
-
uri: https://
|
2176
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91
|
2139
2177
|
body:
|
2140
2178
|
encoding: US-ASCII
|
2141
2179
|
string: ''
|
@@ -2144,6 +2182,8 @@ http_interactions:
|
|
2144
2182
|
- ! '*/*; q=0.5, application/xml'
|
2145
2183
|
Accept-Encoding:
|
2146
2184
|
- gzip, deflate
|
2185
|
+
Authorization:
|
2186
|
+
- Bearer DEMO_TOKEN
|
2147
2187
|
User-Agent:
|
2148
2188
|
- Ruby
|
2149
2189
|
response:
|
@@ -2160,7 +2200,7 @@ http_interactions:
|
|
2160
2200
|
Content-Type:
|
2161
2201
|
- application/json; charset=utf-8
|
2162
2202
|
Date:
|
2163
|
-
-
|
2203
|
+
- Sat, 13 Sep 2014 00:06:20 GMT
|
2164
2204
|
Etag:
|
2165
2205
|
- ! '"-1887313920"'
|
2166
2206
|
Server:
|
@@ -2192,10 +2232,10 @@ http_interactions:
|
|
2192
2232
|
- 201 - C. Bashirian (Section 1)","period":"6","school":"530e595026403103360ff9fd","sis_id":"750","students":["530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5960049e75a9262cff7b","530e5960049e75a9262cff96","530e5961049e75a9262d0082","530e5962049e75a9262d00b9","530e5963049e75a9262d0180","530e5963049e75a9262d01cc","530e5963049e75a9262d0202","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d028e","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d043c","530e5966049e75a9262d0455","530e5966049e75a9262d04ba","530e5966049e75a9262d04cc","530e5967049e75a9262d0586","530e5967049e75a9262d05c0","530e5968049e75a9262d05e8","530e5968049e75a9262d05f7","530e5968049e75a9262d0603","530e5968049e75a9262d0608"],"subject":"math","teacher":"530e5955d50c310f36112bfc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9a"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9a"},{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.652Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.654Z","name":"Geometry
|
2193
2233
|
- 201 - C. Bashirian (Section 2)","period":"6","school":"530e595026403103360ff9fd","sis_id":"751","students":["530e5960049e75a9262cff4f","530e5961049e75a9262d0020","530e5961049e75a9262d0027","530e5962049e75a9262d0102","530e5962049e75a9262d012b","530e5962049e75a9262d0156","530e5963049e75a9262d0207","530e5964049e75a9262d0297","530e5964049e75a9262d0302","530e5965049e75a9262d0381","530e5965049e75a9262d039e","530e5966049e75a9262d040c","530e5966049e75a9262d04b4","530e5967049e75a9262d0577","530e5967049e75a9262d058b","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05d5","530e5968049e75a9262d05fc","530e5968049e75a9262d060e","530e5968049e75a9262d0617","530e5968049e75a9262d061f","530e5968049e75a9262d0645","530e5968049e75a9262d0647"],"subject":"math","teacher":"530e5955d50c310f36112bfc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9b"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b92"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b"}]}'
|
2194
2234
|
http_version:
|
2195
|
-
recorded_at:
|
2235
|
+
recorded_at: Sat, 13 Sep 2014 00:06:20 GMT
|
2196
2236
|
- request:
|
2197
2237
|
method: get
|
2198
|
-
uri: https://
|
2238
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b
|
2199
2239
|
body:
|
2200
2240
|
encoding: US-ASCII
|
2201
2241
|
string: ''
|
@@ -2204,6 +2244,8 @@ http_interactions:
|
|
2204
2244
|
- ! '*/*; q=0.5, application/xml'
|
2205
2245
|
Accept-Encoding:
|
2206
2246
|
- gzip, deflate
|
2247
|
+
Authorization:
|
2248
|
+
- Bearer DEMO_TOKEN
|
2207
2249
|
User-Agent:
|
2208
2250
|
- Ruby
|
2209
2251
|
response:
|
@@ -2220,7 +2262,7 @@ http_interactions:
|
|
2220
2262
|
Content-Type:
|
2221
2263
|
- application/json; charset=utf-8
|
2222
2264
|
Date:
|
2223
|
-
-
|
2265
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2224
2266
|
Etag:
|
2225
2267
|
- ! '"-2017334850"'
|
2226
2268
|
Server:
|
@@ -2253,10 +2295,10 @@ http_interactions:
|
|
2253
2295
|
1 Math, Class 102","course_number":"102","created":"2014-02-26T21:15:38.691Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.692Z","name":"Grade
|
2254
2296
|
1 Math, Class 102 - 102 - E. Harris","period":"1","school":"530e595026403103360ff9fe","sis_id":"761","students":["530e5960049e75a9262cff9b","530e5961049e75a9262d001e","530e5961049e75a9262d004a","530e5961049e75a9262d008c","530e5962049e75a9262d00d6","530e5962049e75a9262d0112","530e5962049e75a9262d011d","530e5963049e75a9262d025c","530e5964049e75a9262d02af","530e5964049e75a9262d030c","530e5965049e75a9262d03be","530e5965049e75a9262d03ed","530e5966049e75a9262d0493","530e5966049e75a9262d049e","530e5967049e75a9262d04fb","530e5967049e75a9262d0512","530e5967049e75a9262d054d","530e5967049e75a9262d05b6","530e5968049e75a9262d05c6","530e5968049e75a9262d05d3","530e5968049e75a9262d05ed"],"subject":"math","teacher":"530e5955d50c310f36112bd5","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0ba5"},"uri":"/v1.1/sections/530e597a049e75a9262d0ba5"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b9c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5"}]}'
|
2255
2297
|
http_version:
|
2256
|
-
recorded_at:
|
2298
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2257
2299
|
- request:
|
2258
2300
|
method: get
|
2259
|
-
uri: https://
|
2301
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5
|
2260
2302
|
body:
|
2261
2303
|
encoding: US-ASCII
|
2262
2304
|
string: ''
|
@@ -2265,6 +2307,8 @@ http_interactions:
|
|
2265
2307
|
- ! '*/*; q=0.5, application/xml'
|
2266
2308
|
Accept-Encoding:
|
2267
2309
|
- gzip, deflate
|
2310
|
+
Authorization:
|
2311
|
+
- Bearer DEMO_TOKEN
|
2268
2312
|
User-Agent:
|
2269
2313
|
- Ruby
|
2270
2314
|
response:
|
@@ -2281,7 +2325,7 @@ http_interactions:
|
|
2281
2325
|
Content-Type:
|
2282
2326
|
- application/json; charset=utf-8
|
2283
2327
|
Date:
|
2284
|
-
-
|
2328
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2285
2329
|
Etag:
|
2286
2330
|
- ! '"-1868062864"'
|
2287
2331
|
Server:
|
@@ -2315,10 +2359,10 @@ http_interactions:
|
|
2315
2359
|
3 Math, Class 301","course_number":"301","created":"2014-02-26T21:15:38.738Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-08-28T18:01:01.461Z","name":"Grade
|
2316
2360
|
3 Math, Class 301 - 301 - S. Block","period":"5","school":"530e595026403103360ff9fe","sis_id":"771","students":["530e5962049e75a9262d00fb","530e5962049e75a9262d015a","530e5963049e75a9262d0219","530e5964049e75a9262d0270","530e5964049e75a9262d02cf","530e5964049e75a9262d02fc","530e5965049e75a9262d0341","530e5965049e75a9262d0343","530e5965049e75a9262d038d","530e5965049e75a9262d03a7","530e5966049e75a9262d0415","530e5966049e75a9262d0439","530e5966049e75a9262d0458","530e5966049e75a9262d04d5","530e5967049e75a9262d04f4","530e5967049e75a9262d051f"],"subject":"math","teacher":"530e5955d50c310f36112c15","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0baf"},"uri":"/v1.1/sections/530e597a049e75a9262d0baf"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0ba6"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf"}]}'
|
2317
2361
|
http_version:
|
2318
|
-
recorded_at:
|
2362
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2319
2363
|
- request:
|
2320
2364
|
method: get
|
2321
|
-
uri: https://
|
2365
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf
|
2322
2366
|
body:
|
2323
2367
|
encoding: US-ASCII
|
2324
2368
|
string: ''
|
@@ -2327,6 +2371,8 @@ http_interactions:
|
|
2327
2371
|
- ! '*/*; q=0.5, application/xml'
|
2328
2372
|
Accept-Encoding:
|
2329
2373
|
- gzip, deflate
|
2374
|
+
Authorization:
|
2375
|
+
- Bearer DEMO_TOKEN
|
2330
2376
|
User-Agent:
|
2331
2377
|
- Ruby
|
2332
2378
|
response:
|
@@ -2343,7 +2389,7 @@ http_interactions:
|
|
2343
2389
|
Content-Type:
|
2344
2390
|
- application/json; charset=utf-8
|
2345
2391
|
Date:
|
2346
|
-
-
|
2392
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2347
2393
|
Etag:
|
2348
2394
|
- ! '"1985239116"'
|
2349
2395
|
Server:
|
@@ -2377,10 +2423,10 @@ http_interactions:
|
|
2377
2423
|
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,
|
2378
2424
|
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?limit=10&starting_after=530e597a049e75a9262d0baf"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bb0"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9"}]}'
|
2379
2425
|
http_version:
|
2380
|
-
recorded_at:
|
2426
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2381
2427
|
- request:
|
2382
2428
|
method: get
|
2383
|
-
uri: https://
|
2429
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9
|
2384
2430
|
body:
|
2385
2431
|
encoding: US-ASCII
|
2386
2432
|
string: ''
|
@@ -2389,6 +2435,8 @@ http_interactions:
|
|
2389
2435
|
- ! '*/*; q=0.5, application/xml'
|
2390
2436
|
Accept-Encoding:
|
2391
2437
|
- gzip, deflate
|
2438
|
+
Authorization:
|
2439
|
+
- Bearer DEMO_TOKEN
|
2392
2440
|
User-Agent:
|
2393
2441
|
- Ruby
|
2394
2442
|
response:
|
@@ -2405,7 +2453,7 @@ http_interactions:
|
|
2405
2453
|
Content-Type:
|
2406
2454
|
- application/json; charset=utf-8
|
2407
2455
|
Date:
|
2408
|
-
-
|
2456
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2409
2457
|
Etag:
|
2410
2458
|
- ! '"770347773"'
|
2411
2459
|
Server:
|
@@ -2439,10 +2487,10 @@ http_interactions:
|
|
2439
2487
|
Algebra","course_number":"101","created":"2014-02-26T21:15:38.823Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.824Z","name":"Integrated
|
2440
2488
|
Algebra - 101 - G. Christiansen (Section 3)","period":"4","school":"530e595026403103360ff9fd","sis_id":"791","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff42","530e5960049e75a9262cff4b","530e5961049e75a9262d007d","530e5961049e75a9262d0089","530e5961049e75a9262d008f","530e5962049e75a9262d00b7","530e5962049e75a9262d00e6","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5962049e75a9262d0174","530e5963049e75a9262d0181","530e5963049e75a9262d01a2","530e5963049e75a9262d021b","530e5964049e75a9262d02b6","530e5965049e75a9262d0325","530e5965049e75a9262d038f","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d05a8","530e5967049e75a9262d05be","530e5968049e75a9262d05e2","530e5968049e75a9262d0605","530e5968049e75a9262d063c","530e5968049e75a9262d0640"],"subject":"math","teacher":"530e5955d50c310f36112bfb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bc3"},"uri":"/v1.1/sections/530e597a049e75a9262d0bc3"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bba"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3"}]}'
|
2441
2489
|
http_version:
|
2442
|
-
recorded_at:
|
2490
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2443
2491
|
- request:
|
2444
2492
|
method: get
|
2445
|
-
uri: https://
|
2493
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3
|
2446
2494
|
body:
|
2447
2495
|
encoding: US-ASCII
|
2448
2496
|
string: ''
|
@@ -2451,6 +2499,8 @@ http_interactions:
|
|
2451
2499
|
- ! '*/*; q=0.5, application/xml'
|
2452
2500
|
Accept-Encoding:
|
2453
2501
|
- gzip, deflate
|
2502
|
+
Authorization:
|
2503
|
+
- Bearer DEMO_TOKEN
|
2454
2504
|
User-Agent:
|
2455
2505
|
- Ruby
|
2456
2506
|
response:
|
@@ -2467,7 +2517,7 @@ http_interactions:
|
|
2467
2517
|
Content-Type:
|
2468
2518
|
- application/json; charset=utf-8
|
2469
2519
|
Date:
|
2470
|
-
-
|
2520
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2471
2521
|
Etag:
|
2472
2522
|
- ! '"-1848888890"'
|
2473
2523
|
Server:
|
@@ -2508,10 +2558,10 @@ http_interactions:
|
|
2508
2558
|
Arts, Class 702 - 702 - V. Konopelski","period":"9","school":"530e595026403103360ff9ff","sis_id":"801","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffe3","530e5961049e75a9262cffea","530e5961049e75a9262d0015","530e5961049e75a9262d006e","530e5962049e75a9262d00b2","530e5962049e75a9262d010c","530e5962049e75a9262d0164","530e5963049e75a9262d0206","530e5963049e75a9262d0233","530e5964049e75a9262d0269","530e5964049e75a9262d029f","530e5964049e75a9262d02e9","530e5964049e75a9262d02fb","530e5965049e75a9262d0347","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03df","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5966049e75a9262d04db","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5968049e75a9262d0620"],"subject":"arts
|
2509
2559
|
and music","teacher":"530e5955d50c310f36112bed","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bcd"},"uri":"/v1.1/sections/530e597a049e75a9262d0bcd"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bc4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd"}]}'
|
2510
2560
|
http_version:
|
2511
|
-
recorded_at:
|
2561
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2512
2562
|
- request:
|
2513
2563
|
method: get
|
2514
|
-
uri: https://
|
2564
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd
|
2515
2565
|
body:
|
2516
2566
|
encoding: US-ASCII
|
2517
2567
|
string: ''
|
@@ -2520,6 +2570,8 @@ http_interactions:
|
|
2520
2570
|
- ! '*/*; q=0.5, application/xml'
|
2521
2571
|
Accept-Encoding:
|
2522
2572
|
- gzip, deflate
|
2573
|
+
Authorization:
|
2574
|
+
- Bearer DEMO_TOKEN
|
2523
2575
|
User-Agent:
|
2524
2576
|
- Ruby
|
2525
2577
|
response:
|
@@ -2536,7 +2588,7 @@ http_interactions:
|
|
2536
2588
|
Content-Type:
|
2537
2589
|
- application/json; charset=utf-8
|
2538
2590
|
Date:
|
2539
|
-
-
|
2591
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2540
2592
|
Etag:
|
2541
2593
|
- ! '"-657078363"'
|
2542
2594
|
Server:
|
@@ -2579,10 +2631,10 @@ http_interactions:
|
|
2579
2631
|
Production","course_number":"401","created":"2014-02-26T21:15:38.912Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.916Z","name":"Audio
|
2580
2632
|
Production - 401 - J. Coulton (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"811","students":["530e5960049e75a9262cffa6","530e5962049e75a9262d00be","530e5962049e75a9262d00ec","530e5962049e75a9262d00f7","530e5962049e75a9262d012c","530e5962049e75a9262d015d","530e5963049e75a9262d018b","530e5963049e75a9262d020d","530e5963049e75a9262d024a","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d038b","530e5966049e75a9262d040f","530e5966049e75a9262d0447","530e5966049e75a9262d04b8","530e5967049e75a9262d050c","530e5967049e75a9262d0585","530e5967049e75a9262d058e","530e5968049e75a9262d0613","530e5968049e75a9262d0648"],"subject":"other","teacher":"530e5955d50c310f36112c06","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bd7"},"uri":"/v1.1/sections/530e597a049e75a9262d0bd7"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bce"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7"}]}'
|
2581
2633
|
http_version:
|
2582
|
-
recorded_at:
|
2634
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2583
2635
|
- request:
|
2584
2636
|
method: get
|
2585
|
-
uri: https://
|
2637
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7
|
2586
2638
|
body:
|
2587
2639
|
encoding: US-ASCII
|
2588
2640
|
string: ''
|
@@ -2591,6 +2643,8 @@ http_interactions:
|
|
2591
2643
|
- ! '*/*; q=0.5, application/xml'
|
2592
2644
|
Accept-Encoding:
|
2593
2645
|
- gzip, deflate
|
2646
|
+
Authorization:
|
2647
|
+
- Bearer DEMO_TOKEN
|
2594
2648
|
User-Agent:
|
2595
2649
|
- Ruby
|
2596
2650
|
response:
|
@@ -2607,7 +2661,7 @@ http_interactions:
|
|
2607
2661
|
Content-Type:
|
2608
2662
|
- application/json; charset=utf-8
|
2609
2663
|
Date:
|
2610
|
-
-
|
2664
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2611
2665
|
Etag:
|
2612
2666
|
- ! '"931822657"'
|
2613
2667
|
Server:
|
@@ -2651,10 +2705,10 @@ http_interactions:
|
|
2651
2705
|
4 Music, Class 403 - 403 - E. Oberbrunner","period":"1","school":"530e595026403103360ff9fe","sis_id":"821","students":["530e5961049e75a9262d0087","530e5962049e75a9262d00bb","530e5962049e75a9262d00ea","530e5962049e75a9262d0107","530e5962049e75a9262d014d","530e5963049e75a9262d0193","530e5963049e75a9262d01b3","530e5963049e75a9262d01ce","530e5963049e75a9262d01de","530e5963049e75a9262d01fe","530e5964049e75a9262d028b","530e5964049e75a9262d02c9","530e5965049e75a9262d0329","530e5965049e75a9262d032c","530e5966049e75a9262d03f4","530e5966049e75a9262d04da","530e5967049e75a9262d04f9","530e5967049e75a9262d0505","530e5967049e75a9262d0509","530e5967049e75a9262d0567","530e5968049e75a9262d05ef"],"subject":"arts
|
2652
2706
|
and music","teacher":"530e5955d50c310f36112bd0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0be1"},"uri":"/v1.1/sections/530e597a049e75a9262d0be1"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bd8"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1"}]}'
|
2653
2707
|
http_version:
|
2654
|
-
recorded_at:
|
2708
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2655
2709
|
- request:
|
2656
2710
|
method: get
|
2657
|
-
uri: https://
|
2711
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1
|
2658
2712
|
body:
|
2659
2713
|
encoding: US-ASCII
|
2660
2714
|
string: ''
|
@@ -2663,6 +2717,8 @@ http_interactions:
|
|
2663
2717
|
- ! '*/*; q=0.5, application/xml'
|
2664
2718
|
Accept-Encoding:
|
2665
2719
|
- gzip, deflate
|
2720
|
+
Authorization:
|
2721
|
+
- Bearer DEMO_TOKEN
|
2666
2722
|
User-Agent:
|
2667
2723
|
- Ruby
|
2668
2724
|
response:
|
@@ -2679,7 +2735,7 @@ http_interactions:
|
|
2679
2735
|
Content-Type:
|
2680
2736
|
- application/json; charset=utf-8
|
2681
2737
|
Date:
|
2682
|
-
-
|
2738
|
+
- Sat, 13 Sep 2014 00:06:21 GMT
|
2683
2739
|
Etag:
|
2684
2740
|
- ! '"-1471869131"'
|
2685
2741
|
Server:
|
@@ -2723,10 +2779,10 @@ http_interactions:
|
|
2723
2779
|
Education, Group 12B - 402 - P. McCartney","period":"7","school":"530e595026403103360ff9fd","sis_id":"831","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff54","530e5960049e75a9262cff6a","530e5960049e75a9262cffa6","530e5961049e75a9262cffaf","530e5961049e75a9262cffb7","530e5961049e75a9262d000d","530e5961049e75a9262d0039","530e5961049e75a9262d007b","530e5962049e75a9262d00ec","530e5962049e75a9262d012c","530e5962049e75a9262d015b","530e5962049e75a9262d015d","530e5963049e75a9262d01a6","530e5963049e75a9262d0209","530e5963049e75a9262d020b","530e5963049e75a9262d021d","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02ee","530e5964049e75a9262d02f8","530e5964049e75a9262d02fe","530e5964049e75a9262d0301","530e5965049e75a9262d0372","530e5965049e75a9262d03cd","530e5965049e75a9262d03ee","530e5966049e75a9262d03f3","530e5966049e75a9262d043e","530e5966049e75a9262d044c","530e5966049e75a9262d0467","530e5966049e75a9262d048b","530e5966049e75a9262d0492","530e5966049e75a9262d04a0","530e5966049e75a9262d04b8","530e5967049e75a9262d04f7","530e5967049e75a9262d04fe","530e5967049e75a9262d0563","530e5967049e75a9262d0569","530e5967049e75a9262d0584","530e5967049e75a9262d0585","530e5967049e75a9262d0591","530e5967049e75a9262d05a6","530e5968049e75a9262d05c5","530e5968049e75a9262d05dd","530e5968049e75a9262d05fa","530e5968049e75a9262d0607","530e5968049e75a9262d0622","530e5968049e75a9262d062a","530e5968049e75a9262d063b","530e5968049e75a9262d0648"],"subject":"PE
|
2724
2780
|
and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0beb"},"uri":"/v1.1/sections/530e597a049e75a9262d0beb"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0be2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb"}]}'
|
2725
2781
|
http_version:
|
2726
|
-
recorded_at:
|
2782
|
+
recorded_at: Sat, 13 Sep 2014 00:06:21 GMT
|
2727
2783
|
- request:
|
2728
2784
|
method: get
|
2729
|
-
uri: https://
|
2785
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb
|
2730
2786
|
body:
|
2731
2787
|
encoding: US-ASCII
|
2732
2788
|
string: ''
|
@@ -2735,6 +2791,8 @@ http_interactions:
|
|
2735
2791
|
- ! '*/*; q=0.5, application/xml'
|
2736
2792
|
Accept-Encoding:
|
2737
2793
|
- gzip, deflate
|
2794
|
+
Authorization:
|
2795
|
+
- Bearer DEMO_TOKEN
|
2738
2796
|
User-Agent:
|
2739
2797
|
- Ruby
|
2740
2798
|
response:
|
@@ -2751,7 +2809,7 @@ http_interactions:
|
|
2751
2809
|
Content-Type:
|
2752
2810
|
- application/json; charset=utf-8
|
2753
2811
|
Date:
|
2754
|
-
-
|
2812
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
2755
2813
|
Etag:
|
2756
2814
|
- ! '"-1621127"'
|
2757
2815
|
Server:
|
@@ -2795,10 +2853,10 @@ http_interactions:
|
|
2795
2853
|
Education, Group 9A - 101 - P. McCartney","period":"8","school":"530e595026403103360ff9fd","sis_id":"841","students":["530e5960049e75a9262cff27","530e5960049e75a9262cff42","530e5960049e75a9262cff4b","530e5960049e75a9262cffa2","530e5961049e75a9262cfffb","530e5961049e75a9262d000c","530e5961049e75a9262d001a","530e5961049e75a9262d0034","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0070","530e5961049e75a9262d007f","530e5961049e75a9262d0085","530e5962049e75a9262d00b7","530e5962049e75a9262d015f","530e5963049e75a9262d019f","530e5963049e75a9262d01a4","530e5963049e75a9262d01db","530e5963049e75a9262d01f8","530e5963049e75a9262d0203","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d02d3","530e5964049e75a9262d02f3","530e5964049e75a9262d0309","530e5965049e75a9262d0325","530e5965049e75a9262d033c","530e5965049e75a9262d033f","530e5965049e75a9262d036c","530e5965049e75a9262d038e","530e5965049e75a9262d03a2","530e5965049e75a9262d03a5","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d048d","530e5966049e75a9262d0495","530e5966049e75a9262d04a5","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d057e","530e5967049e75a9262d05a8","530e5967049e75a9262d05b7","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1","530e5968049e75a9262d05d4","530e5968049e75a9262d05e3","530e5968049e75a9262d0640"],"subject":"PE
|
2796
2854
|
and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0bf5"},"uri":"/v1.1/sections/530e597b049e75a9262d0bf5"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bec"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5"}]}'
|
2797
2855
|
http_version:
|
2798
|
-
recorded_at:
|
2856
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
2799
2857
|
- request:
|
2800
2858
|
method: get
|
2801
|
-
uri: https://
|
2859
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5
|
2802
2860
|
body:
|
2803
2861
|
encoding: US-ASCII
|
2804
2862
|
string: ''
|
@@ -2807,6 +2865,8 @@ http_interactions:
|
|
2807
2865
|
- ! '*/*; q=0.5, application/xml'
|
2808
2866
|
Accept-Encoding:
|
2809
2867
|
- gzip, deflate
|
2868
|
+
Authorization:
|
2869
|
+
- Bearer DEMO_TOKEN
|
2810
2870
|
User-Agent:
|
2811
2871
|
- Ruby
|
2812
2872
|
response:
|
@@ -2823,7 +2883,7 @@ http_interactions:
|
|
2823
2883
|
Content-Type:
|
2824
2884
|
- application/json; charset=utf-8
|
2825
2885
|
Date:
|
2826
|
-
-
|
2886
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
2827
2887
|
Etag:
|
2828
2888
|
- ! '"707540498"'
|
2829
2889
|
Server:
|
@@ -2867,10 +2927,10 @@ http_interactions:
|
|
2867
2927
|
2 Reading, Class 203 - 203 - M. Jakubowski","period":"4","school":"530e595026403103360ff9fe","sis_id":"851","students":["530e5960049e75a9262cff4a","530e5960049e75a9262cff72","530e5962049e75a9262d00bc","530e5962049e75a9262d010a","530e5962049e75a9262d0138","530e5962049e75a9262d016a","530e5963049e75a9262d0201","530e5963049e75a9262d022a","530e5963049e75a9262d0251","530e5964049e75a9262d027b","530e5964049e75a9262d02f9","530e5965049e75a9262d0318","530e5965049e75a9262d034d","530e5965049e75a9262d0369","530e5966049e75a9262d0423","530e5966049e75a9262d0436","530e5966049e75a9262d045a","530e5966049e75a9262d0486","530e5967049e75a9262d0521","530e5967049e75a9262d0525","530e5967049e75a9262d05c3"],"subject":"english/language
|
2868
2928
|
arts","teacher":"530e5955d50c310f36112c04","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0bff"},"uri":"/v1.1/sections/530e597b049e75a9262d0bff"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0bf6"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff"}]}'
|
2869
2929
|
http_version:
|
2870
|
-
recorded_at:
|
2930
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
2871
2931
|
- request:
|
2872
2932
|
method: get
|
2873
|
-
uri: https://
|
2933
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff
|
2874
2934
|
body:
|
2875
2935
|
encoding: US-ASCII
|
2876
2936
|
string: ''
|
@@ -2879,6 +2939,8 @@ http_interactions:
|
|
2879
2939
|
- ! '*/*; q=0.5, application/xml'
|
2880
2940
|
Accept-Encoding:
|
2881
2941
|
- gzip, deflate
|
2942
|
+
Authorization:
|
2943
|
+
- Bearer DEMO_TOKEN
|
2882
2944
|
User-Agent:
|
2883
2945
|
- Ruby
|
2884
2946
|
response:
|
@@ -2895,7 +2957,7 @@ http_interactions:
|
|
2895
2957
|
Content-Type:
|
2896
2958
|
- application/json; charset=utf-8
|
2897
2959
|
Date:
|
2898
|
-
-
|
2960
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
2899
2961
|
Etag:
|
2900
2962
|
- ! '"1311156402"'
|
2901
2963
|
Server:
|
@@ -2933,10 +2995,10 @@ http_interactions:
|
|
2933
2995
|
5 Reading, Class 502 - 502 - M. Walsh","period":"5","school":"530e595026403103360ff9fe","sis_id":"859","students":["530e5960049e75a9262cff33","530e5960049e75a9262cff6c","530e5961049e75a9262cffe4","530e5961049e75a9262d003b","530e5962049e75a9262d0096","530e5962049e75a9262d00ac","530e5962049e75a9262d00ca","530e5962049e75a9262d0104","530e5963049e75a9262d01cb","530e5964049e75a9262d0277","530e5964049e75a9262d02b4","530e5965049e75a9262d0322","530e5965049e75a9262d0386","530e5965049e75a9262d0399","530e5966049e75a9262d0442","530e5966049e75a9262d0470","530e5966049e75a9262d04bb","530e5967049e75a9262d04f0","530e5968049e75a9262d05e5","530e5968049e75a9262d05f8","530e5968049e75a9262d060a"],"subject":"english/language
|
2934
2996
|
arts","teacher":"530e5955d50c310f36112bd3","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c09"},"uri":"/v1.1/sections/530e597b049e75a9262d0c09"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c00"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09"}]}'
|
2935
2997
|
http_version:
|
2936
|
-
recorded_at:
|
2998
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
2937
2999
|
- request:
|
2938
3000
|
method: get
|
2939
|
-
uri: https://
|
3001
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09
|
2940
3002
|
body:
|
2941
3003
|
encoding: US-ASCII
|
2942
3004
|
string: ''
|
@@ -2945,6 +3007,8 @@ http_interactions:
|
|
2945
3007
|
- ! '*/*; q=0.5, application/xml'
|
2946
3008
|
Accept-Encoding:
|
2947
3009
|
- gzip, deflate
|
3010
|
+
Authorization:
|
3011
|
+
- Bearer DEMO_TOKEN
|
2948
3012
|
User-Agent:
|
2949
3013
|
- Ruby
|
2950
3014
|
response:
|
@@ -2961,7 +3025,7 @@ http_interactions:
|
|
2961
3025
|
Content-Type:
|
2962
3026
|
- application/json; charset=utf-8
|
2963
3027
|
Date:
|
2964
|
-
-
|
3028
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
2965
3029
|
Etag:
|
2966
3030
|
- ! '"813776824"'
|
2967
3031
|
Server:
|
@@ -2997,10 +3061,10 @@ http_interactions:
|
|
2997
3061
|
Remediation, Grade 10","course_number":"205","created":"2014-02-26T21:15:39.196Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.197Z","name":"Science
|
2998
3062
|
Remediation, Grade 10 - 205 - R. Wyman","period":"9","school":"530e595026403103360ff9fd","sis_id":"871","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff96","530e5961049e75a9262d0010","530e5962049e75a9262d0133","530e5962049e75a9262d0158","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d01cc","530e5963049e75a9262d0253","530e5964049e75a9262d0286","530e5964049e75a9262d02aa","530e5965049e75a9262d0383","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d04ba","530e5968049e75a9262d05e8","530e5968049e75a9262d0608","530e5968049e75a9262d060e","530e5968049e75a9262d0617"],"subject":"science","teacher":"530e5955d50c310f36112bd1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c13"},"uri":"/v1.1/sections/530e597b049e75a9262d0c13"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c0a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13"}]}'
|
2999
3063
|
http_version:
|
3000
|
-
recorded_at:
|
3064
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
3001
3065
|
- request:
|
3002
3066
|
method: get
|
3003
|
-
uri: https://
|
3067
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13
|
3004
3068
|
body:
|
3005
3069
|
encoding: US-ASCII
|
3006
3070
|
string: ''
|
@@ -3009,6 +3073,8 @@ http_interactions:
|
|
3009
3073
|
- ! '*/*; q=0.5, application/xml'
|
3010
3074
|
Accept-Encoding:
|
3011
3075
|
- gzip, deflate
|
3076
|
+
Authorization:
|
3077
|
+
- Bearer DEMO_TOKEN
|
3012
3078
|
User-Agent:
|
3013
3079
|
- Ruby
|
3014
3080
|
response:
|
@@ -3025,7 +3091,7 @@ http_interactions:
|
|
3025
3091
|
Content-Type:
|
3026
3092
|
- application/json; charset=utf-8
|
3027
3093
|
Date:
|
3028
|
-
-
|
3094
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
3029
3095
|
Etag:
|
3030
3096
|
- ! '"-1614059195"'
|
3031
3097
|
Server:
|
@@ -3056,10 +3122,10 @@ http_interactions:
|
|
3056
3122
|
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
|
3057
3123
|
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?limit=10&starting_after=530e597b049e75a9262d0c13"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c14"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d"}]}'
|
3058
3124
|
http_version:
|
3059
|
-
recorded_at:
|
3125
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
3060
3126
|
- request:
|
3061
3127
|
method: get
|
3062
|
-
uri: https://
|
3128
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d
|
3063
3129
|
body:
|
3064
3130
|
encoding: US-ASCII
|
3065
3131
|
string: ''
|
@@ -3068,6 +3134,8 @@ http_interactions:
|
|
3068
3134
|
- ! '*/*; q=0.5, application/xml'
|
3069
3135
|
Accept-Encoding:
|
3070
3136
|
- gzip, deflate
|
3137
|
+
Authorization:
|
3138
|
+
- Bearer DEMO_TOKEN
|
3071
3139
|
User-Agent:
|
3072
3140
|
- Ruby
|
3073
3141
|
response:
|
@@ -3084,7 +3152,7 @@ http_interactions:
|
|
3084
3152
|
Content-Type:
|
3085
3153
|
- application/json; charset=utf-8
|
3086
3154
|
Date:
|
3087
|
-
-
|
3155
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
3088
3156
|
Etag:
|
3089
3157
|
- ! '"125113949"'
|
3090
3158
|
Server:
|
@@ -3117,10 +3185,10 @@ http_interactions:
|
|
3117
3185
|
3 Science, Class 303","course_number":"303","created":"2014-02-26T21:15:39.270Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:39.272Z","name":"Grade
|
3118
3186
|
3 Science, Class 303 - 303 - L. Spinka","period":"2","school":"530e595026403103360ff9fe","sis_id":"891","students":["530e5960049e75a9262cff3e","530e5961049e75a9262d0067","530e5962049e75a9262d00a2","530e5962049e75a9262d00b0","530e5962049e75a9262d00f0","530e5962049e75a9262d0117","530e5962049e75a9262d0131","530e5963049e75a9262d0188","530e5963049e75a9262d01c3","530e5964049e75a9262d02b0","530e5964049e75a9262d02d7","530e5964049e75a9262d02f1","530e5965049e75a9262d03c1","530e5965049e75a9262d03c4","530e5966049e75a9262d0445","530e5967049e75a9262d0541","530e5967049e75a9262d05c2","530e5968049e75a9262d05fd","530e5968049e75a9262d0624","530e5968049e75a9262d063d","530e5968049e75a9262d063e"],"subject":"science","teacher":"509fbd7ec474fab64a8e9d53","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c27"},"uri":"/v1.1/sections/530e597b049e75a9262d0c27"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c1e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27"}]}'
|
3119
3187
|
http_version:
|
3120
|
-
recorded_at:
|
3188
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
3121
3189
|
- request:
|
3122
3190
|
method: get
|
3123
|
-
uri: https://
|
3191
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27
|
3124
3192
|
body:
|
3125
3193
|
encoding: US-ASCII
|
3126
3194
|
string: ''
|
@@ -3129,6 +3197,8 @@ http_interactions:
|
|
3129
3197
|
- ! '*/*; q=0.5, application/xml'
|
3130
3198
|
Accept-Encoding:
|
3131
3199
|
- gzip, deflate
|
3200
|
+
Authorization:
|
3201
|
+
- Bearer DEMO_TOKEN
|
3132
3202
|
User-Agent:
|
3133
3203
|
- Ruby
|
3134
3204
|
response:
|
@@ -3145,7 +3215,7 @@ http_interactions:
|
|
3145
3215
|
Content-Type:
|
3146
3216
|
- application/json; charset=utf-8
|
3147
3217
|
Date:
|
3148
|
-
-
|
3218
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
3149
3219
|
Etag:
|
3150
3220
|
- ! '"974836690"'
|
3151
3221
|
Server:
|
@@ -3179,10 +3249,10 @@ http_interactions:
|
|
3179
3249
|
Class 701","course_number":"701","created":"2014-02-26T21:15:39.323Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:39.325Z","name":"Science,
|
3180
3250
|
Class 701 - 701 - C. Ankunding","period":"4","school":"530e595026403103360ff9ff","sis_id":"901","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"science","teacher":"530e5955d50c310f36112be8","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c31"},"uri":"/v1.1/sections/530e597b049e75a9262d0c31"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c28"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31"}]}'
|
3181
3251
|
http_version:
|
3182
|
-
recorded_at:
|
3252
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
3183
3253
|
- request:
|
3184
3254
|
method: get
|
3185
|
-
uri: https://
|
3255
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31
|
3186
3256
|
body:
|
3187
3257
|
encoding: US-ASCII
|
3188
3258
|
string: ''
|
@@ -3191,6 +3261,8 @@ http_interactions:
|
|
3191
3261
|
- ! '*/*; q=0.5, application/xml'
|
3192
3262
|
Accept-Encoding:
|
3193
3263
|
- gzip, deflate
|
3264
|
+
Authorization:
|
3265
|
+
- Bearer DEMO_TOKEN
|
3194
3266
|
User-Agent:
|
3195
3267
|
- Ruby
|
3196
3268
|
response:
|
@@ -3207,7 +3279,7 @@ http_interactions:
|
|
3207
3279
|
Content-Type:
|
3208
3280
|
- application/json; charset=utf-8
|
3209
3281
|
Date:
|
3210
|
-
-
|
3282
|
+
- Sat, 13 Sep 2014 00:06:22 GMT
|
3211
3283
|
Etag:
|
3212
3284
|
- ! '"504345345"'
|
3213
3285
|
Server:
|
@@ -3241,10 +3313,10 @@ http_interactions:
|
|
3241
3313
|
Remediation, Grade 9","course_number":"105","created":"2014-02-26T21:15:39.354Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.356Z","name":"Science
|
3242
3314
|
Remediation, Grade 9 - 105 - R. Wyman","period":"9","school":"530e595026403103360ff9fd","sis_id":"911","students":["530e5960049e75a9262cff42","530e5960049e75a9262cff58","530e5960049e75a9262cff7a","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5962049e75a9262d00b7","530e5962049e75a9262d00ba","530e5962049e75a9262d0110","530e5962049e75a9262d015f","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5966049e75a9262d046c","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d05be","530e5968049e75a9262d0605","530e5968049e75a9262d0614"],"subject":"science","teacher":"530e5955d50c310f36112bd1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c3b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c3b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c32"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b"}]}'
|
3243
3315
|
http_version:
|
3244
|
-
recorded_at:
|
3316
|
+
recorded_at: Sat, 13 Sep 2014 00:06:22 GMT
|
3245
3317
|
- request:
|
3246
3318
|
method: get
|
3247
|
-
uri: https://
|
3319
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b
|
3248
3320
|
body:
|
3249
3321
|
encoding: US-ASCII
|
3250
3322
|
string: ''
|
@@ -3253,6 +3325,8 @@ http_interactions:
|
|
3253
3325
|
- ! '*/*; q=0.5, application/xml'
|
3254
3326
|
Accept-Encoding:
|
3255
3327
|
- gzip, deflate
|
3328
|
+
Authorization:
|
3329
|
+
- Bearer DEMO_TOKEN
|
3256
3330
|
User-Agent:
|
3257
3331
|
- Ruby
|
3258
3332
|
response:
|
@@ -3269,7 +3343,7 @@ http_interactions:
|
|
3269
3343
|
Content-Type:
|
3270
3344
|
- application/json; charset=utf-8
|
3271
3345
|
Date:
|
3272
|
-
-
|
3346
|
+
- Sat, 13 Sep 2014 00:06:23 GMT
|
3273
3347
|
Etag:
|
3274
3348
|
- ! '"1018050984"'
|
3275
3349
|
Server:
|
@@ -3312,10 +3386,10 @@ http_interactions:
|
|
3312
3386
|
2 Social Studies, Class 202 - 202 - A. Jones","period":"3","school":"530e595026403103360ff9fe","sis_id":"921","students":["530e5960049e75a9262cff9c","530e5960049e75a9262cff9d","530e5960049e75a9262cffa9","530e5961049e75a9262cffbf","530e5961049e75a9262d0029","530e5961049e75a9262d0052","530e5962049e75a9262d00e2","530e5963049e75a9262d01b9","530e5963049e75a9262d0235","530e5964049e75a9262d0274","530e5965049e75a9262d0367","530e5965049e75a9262d036d","530e5966049e75a9262d03f1","530e5966049e75a9262d0427","530e5966049e75a9262d0440","530e5967049e75a9262d0557","530e5968049e75a9262d05f1","530e5968049e75a9262d05f5","530e5968049e75a9262d0616","530e5968049e75a9262d0625","530e5968049e75a9262d0642"],"subject":"social
|
3313
3387
|
studies","teacher":"530e5955d50c310f36112bfa","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c45"},"uri":"/v1.1/sections/530e597b049e75a9262d0c45"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c3c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45"}]}'
|
3314
3388
|
http_version:
|
3315
|
-
recorded_at:
|
3389
|
+
recorded_at: Sat, 13 Sep 2014 00:06:23 GMT
|
3316
3390
|
- request:
|
3317
3391
|
method: get
|
3318
|
-
uri: https://
|
3392
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45
|
3319
3393
|
body:
|
3320
3394
|
encoding: US-ASCII
|
3321
3395
|
string: ''
|
@@ -3324,6 +3398,8 @@ http_interactions:
|
|
3324
3398
|
- ! '*/*; q=0.5, application/xml'
|
3325
3399
|
Accept-Encoding:
|
3326
3400
|
- gzip, deflate
|
3401
|
+
Authorization:
|
3402
|
+
- Bearer DEMO_TOKEN
|
3327
3403
|
User-Agent:
|
3328
3404
|
- Ruby
|
3329
3405
|
response:
|
@@ -3340,7 +3416,7 @@ http_interactions:
|
|
3340
3416
|
Content-Type:
|
3341
3417
|
- application/json; charset=utf-8
|
3342
3418
|
Date:
|
3343
|
-
-
|
3419
|
+
- Sat, 13 Sep 2014 00:06:23 GMT
|
3344
3420
|
Etag:
|
3345
3421
|
- ! '"159029288"'
|
3346
3422
|
Server:
|
@@ -3384,10 +3460,10 @@ http_interactions:
|
|
3384
3460
|
5 Social Studies, Class 503","period":"2","school":"530e595026403103360ff9fe","sis_id":"931","students":["530e5961049e75a9262d005f","530e5961049e75a9262d0065","530e5962049e75a9262d00af","530e5962049e75a9262d00fd","530e5962049e75a9262d012f","530e5962049e75a9262d015c","530e5962049e75a9262d017e","530e5963049e75a9262d01a5","530e5963049e75a9262d01d4","530e5964049e75a9262d0279","530e5964049e75a9262d02a4","530e5965049e75a9262d033a","530e5965049e75a9262d036a","530e5966049e75a9262d041d","530e5966049e75a9262d0490","530e5967049e75a9262d05b1","530e5968049e75a9262d05e6","530e5968049e75a9262d0604","530e5968049e75a9262d0609","530e5968049e75a9262d062c","530e5968049e75a9262d0638"],"subject":"social
|
3385
3461
|
studies","teacher":"530e5955d50c310f36112bd4","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c4f"},"uri":"/v1.1/sections/530e597b049e75a9262d0c4f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c46"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f"}]}'
|
3386
3462
|
http_version:
|
3387
|
-
recorded_at:
|
3463
|
+
recorded_at: Sat, 13 Sep 2014 00:06:23 GMT
|
3388
3464
|
- request:
|
3389
3465
|
method: get
|
3390
|
-
uri: https://
|
3466
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f
|
3391
3467
|
body:
|
3392
3468
|
encoding: US-ASCII
|
3393
3469
|
string: ''
|
@@ -3396,6 +3472,8 @@ http_interactions:
|
|
3396
3472
|
- ! '*/*; q=0.5, application/xml'
|
3397
3473
|
Accept-Encoding:
|
3398
3474
|
- gzip, deflate
|
3475
|
+
Authorization:
|
3476
|
+
- Bearer DEMO_TOKEN
|
3399
3477
|
User-Agent:
|
3400
3478
|
- Ruby
|
3401
3479
|
response:
|
@@ -3412,7 +3490,7 @@ http_interactions:
|
|
3412
3490
|
Content-Type:
|
3413
3491
|
- application/json; charset=utf-8
|
3414
3492
|
Date:
|
3415
|
-
-
|
3493
|
+
- Sat, 13 Sep 2014 00:06:23 GMT
|
3416
3494
|
Etag:
|
3417
3495
|
- ! '"-570791926"'
|
3418
3496
|
Server:
|
@@ -3455,10 +3533,10 @@ http_interactions:
|
|
3455
3533
|
II","course_number":"201","created":"2014-02-26T21:15:39.456Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.458Z","name":"Spanish
|
3456
3534
|
II - 201 - L. Jacobs (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"941","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffd9","530e5961049e75a9262d0080","530e5961049e75a9262d0082","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d0172","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d0202","530e5963049e75a9262d0253","530e5964049e75a9262d0288","530e5964049e75a9262d0300","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d041c","530e5966049e75a9262d0455","530e5966049e75a9262d0475","530e5966049e75a9262d04ba","530e5967049e75a9262d0544","530e5967049e75a9262d0586","530e5967049e75a9262d058b","530e5967049e75a9262d0596","530e5967049e75a9262d05bf","530e5968049e75a9262d061f","530e5968049e75a9262d0645"],"subject":"language","teacher":"530e5955d50c310f36112bf8","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c59"},"uri":"/v1.1/sections/530e597b049e75a9262d0c59"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c50"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59"}]}'
|
3457
3535
|
http_version:
|
3458
|
-
recorded_at:
|
3536
|
+
recorded_at: Sat, 13 Sep 2014 00:06:23 GMT
|
3459
3537
|
- request:
|
3460
3538
|
method: get
|
3461
|
-
uri: https://
|
3539
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59
|
3462
3540
|
body:
|
3463
3541
|
encoding: US-ASCII
|
3464
3542
|
string: ''
|
@@ -3467,6 +3545,8 @@ http_interactions:
|
|
3467
3545
|
- ! '*/*; q=0.5, application/xml'
|
3468
3546
|
Accept-Encoding:
|
3469
3547
|
- gzip, deflate
|
3548
|
+
Authorization:
|
3549
|
+
- Bearer DEMO_TOKEN
|
3470
3550
|
User-Agent:
|
3471
3551
|
- Ruby
|
3472
3552
|
response:
|
@@ -3483,7 +3563,7 @@ http_interactions:
|
|
3483
3563
|
Content-Type:
|
3484
3564
|
- application/json; charset=utf-8
|
3485
3565
|
Date:
|
3486
|
-
-
|
3566
|
+
- Sat, 13 Sep 2014 00:06:23 GMT
|
3487
3567
|
Etag:
|
3488
3568
|
- ! '"-522155333"'
|
3489
3569
|
Server:
|
@@ -3519,10 +3599,10 @@ http_interactions:
|
|
3519
3599
|
Programming - 300 - L. Corwin","period":"7","school":"530e595026403103360ff9fd","sis_id":"951","students":["530e5960049e75a9262cff4d","530e5960049e75a9262cff53","530e5961049e75a9262cffe1","530e5962049e75a9262d010e","530e5963049e75a9262d019d","530e5963049e75a9262d01cd","530e5963049e75a9262d01d2","530e5963049e75a9262d01fc","530e5963049e75a9262d01fd","530e5963049e75a9262d0255","530e5964049e75a9262d0281","530e5964049e75a9262d02eb","530e5965049e75a9262d037c","530e5966049e75a9262d0408","530e5966049e75a9262d0420","530e5966049e75a9262d048f","530e5967049e75a9262d05a1","530e5968049e75a9262d05eb","530e5968049e75a9262d0633","530e5968049e75a9262d0639"],"subject":"technology
|
3520
3600
|
and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c63"},"uri":"/v1.1/sections/530e597b049e75a9262d0c63"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c5a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63"}]}'
|
3521
3601
|
http_version:
|
3522
|
-
recorded_at:
|
3602
|
+
recorded_at: Sat, 13 Sep 2014 00:06:23 GMT
|
3523
3603
|
- request:
|
3524
3604
|
method: get
|
3525
|
-
uri: https://
|
3605
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63
|
3526
3606
|
body:
|
3527
3607
|
encoding: US-ASCII
|
3528
3608
|
string: ''
|
@@ -3531,6 +3611,8 @@ http_interactions:
|
|
3531
3611
|
- ! '*/*; q=0.5, application/xml'
|
3532
3612
|
Accept-Encoding:
|
3533
3613
|
- gzip, deflate
|
3614
|
+
Authorization:
|
3615
|
+
- Bearer DEMO_TOKEN
|
3534
3616
|
User-Agent:
|
3535
3617
|
- Ruby
|
3536
3618
|
response:
|
@@ -3547,7 +3629,7 @@ http_interactions:
|
|
3547
3629
|
Content-Type:
|
3548
3630
|
- application/json; charset=utf-8
|
3549
3631
|
Date:
|
3550
|
-
-
|
3632
|
+
- Sat, 13 Sep 2014 00:06:23 GMT
|
3551
3633
|
Etag:
|
3552
3634
|
- ! '"322596726"'
|
3553
3635
|
Server:
|
@@ -3588,5 +3670,5 @@ http_interactions:
|
|
3588
3670
|
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
|
3589
3671
|
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?limit=10&starting_after=530e597b049e75a9262d0c63"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c64"}]}'
|
3590
3672
|
http_version:
|
3591
|
-
recorded_at:
|
3592
|
-
recorded_with: VCR 2.
|
3673
|
+
recorded_at: Sat, 13 Sep 2014 00:06:23 GMT
|
3674
|
+
recorded_with: VCR 2.9.3
|