clever-ruby 0.6.2 → 0.7.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 +5 -0
 - data/lib/clever-ruby.rb +3 -0
 - data/lib/clever-ruby/api_operations/nested_list.rb +46 -0
 - data/lib/clever-ruby/api_resource.rb +67 -27
 - data/lib/clever-ruby/clever_object.rb +8 -2
 - data/lib/clever-ruby/district.rb +25 -11
 - data/lib/clever-ruby/event.rb +1 -1
 - data/lib/clever-ruby/nested_resource.rb +40 -0
 - data/lib/clever-ruby/school.rb +1 -1
 - data/lib/clever-ruby/section.rb +1 -1
 - data/lib/clever-ruby/student.rb +13 -1
 - data/lib/clever-ruby/teacher.rb +1 -1
 - data/lib/clever-ruby/util.rb +16 -17
 - data/lib/clever-ruby/version.rb +1 -1
 - data/test/data/vcr_cassettes/district_count.yml +6 -6
 - data/test/data/vcr_cassettes/{districts_events.yml → district_events.yml} +29 -164
 - data/test/data/vcr_cassettes/district_find_by_page.yml +12 -12
 - data/test/data/vcr_cassettes/district_find_multiple.yml +12 -12
 - data/test/data/vcr_cassettes/district_find_one.yml +12 -12
 - data/test/data/vcr_cassettes/{districts_schools.yml → district_schools.yml} +25 -148
 - data/test/data/vcr_cassettes/district_sections.yml +2289 -0
 - data/test/data/vcr_cassettes/district_students.yml +2339 -0
 - data/test/data/vcr_cassettes/{districts_teachers.yml → district_teachers.yml} +25 -148
 - data/test/data/vcr_cassettes/districts.yml +12 -12
 - data/test/data/vcr_cassettes/districts_event_pages.yml +76 -469
 - data/test/data/vcr_cassettes/districts_school_pages.yml +31 -154
 - data/test/data/vcr_cassettes/districts_section_pages.yml +284 -407
 - data/test/data/vcr_cassettes/districts_student_pages.yml +165 -288
 - data/test/data/vcr_cassettes/districts_teacher_pages.yml +81 -204
 - data/test/data/vcr_cassettes/error_handling.yml +17 -58
 - data/test/data/vcr_cassettes/event_count.yml +7 -7
 - data/test/data/vcr_cassettes/event_find_by_page.yml +16 -22
 - data/test/data/vcr_cassettes/event_find_multiple.yml +19 -28
 - data/test/data/vcr_cassettes/event_find_one.yml +16 -22
 - data/test/data/vcr_cassettes/events.yml +16 -22
 - data/test/data/vcr_cassettes/school_count.yml +6 -6
 - data/test/data/vcr_cassettes/school_district.yml +140 -0
 - data/test/data/vcr_cassettes/school_events.yml +181 -0
 - data/test/data/vcr_cassettes/school_find_by_page.yml +13 -13
 - data/test/data/vcr_cassettes/school_find_multiple.yml +14 -14
 - data/test/data/vcr_cassettes/school_find_one.yml +13 -13
 - data/test/data/vcr_cassettes/school_sections.yml +1119 -0
 - data/test/data/vcr_cassettes/school_students.yml +1033 -0
 - data/test/data/vcr_cassettes/school_teachers.yml +257 -0
 - data/test/data/vcr_cassettes/schools.yml +13 -13
 - data/test/data/vcr_cassettes/schools_optional_attributes.yml +7 -7
 - data/test/data/vcr_cassettes/section_count.yml +6 -6
 - data/test/data/vcr_cassettes/section_district.yml +393 -0
 - data/test/data/vcr_cassettes/section_events.yml +434 -0
 - data/test/data/vcr_cassettes/section_find_by_page.yml +34 -34
 - data/test/data/vcr_cassettes/section_find_multiple.yml +14 -14
 - data/test/data/vcr_cassettes/section_find_one.yml +14 -14
 - data/test/data/vcr_cassettes/section_school.yml +396 -0
 - data/test/data/vcr_cassettes/section_students.yml +456 -0
 - data/test/data/vcr_cassettes/section_teacher.yml +394 -0
 - data/test/data/vcr_cassettes/sections.yml +34 -34
 - data/test/data/vcr_cassettes/student_count.yml +6 -6
 - data/test/data/vcr_cassettes/student_district.yml +202 -0
 - data/test/data/vcr_cassettes/student_events.yml +243 -0
 - data/test/data/vcr_cassettes/student_find_by_page.yml +83 -83
 - data/test/data/vcr_cassettes/student_find_multiple.yml +14 -14
 - data/test/data/vcr_cassettes/student_find_one.yml +14 -14
 - data/test/data/vcr_cassettes/student_school.yml +205 -0
 - data/test/data/vcr_cassettes/student_sections.yml +269 -0
 - data/test/data/vcr_cassettes/student_teacher.yml +161 -0
 - data/test/data/vcr_cassettes/student_teachers.yml +245 -0
 - data/test/data/vcr_cassettes/students.yml +83 -83
 - data/test/data/vcr_cassettes/teacher_count.yml +6 -6
 - data/test/data/vcr_cassettes/teacher_district.yml +218 -0
 - data/test/data/vcr_cassettes/teacher_events.yml +259 -0
 - data/test/data/vcr_cassettes/teacher_find_by_page.yml +13 -13
 - data/test/data/vcr_cassettes/teacher_find_multiple.yml +14 -14
 - data/test/data/vcr_cassettes/teacher_find_one.yml +13 -13
 - data/test/data/vcr_cassettes/teacher_school.yml +221 -0
 - data/test/data/vcr_cassettes/teacher_sections.yml +291 -0
 - data/test/data/vcr_cassettes/teacher_students.yml +293 -0
 - data/test/data/vcr_cassettes/teachers.yml +13 -13
 - data/test/integration/api_operations/list_test.rb +1 -1
 - data/test/integration/district_test.rb +17 -49
 - data/test/integration/error_handling_test.rb +1 -1
 - data/test/integration/nested_resource_test.rb +27 -0
 - data/test/unit/api_resource_test.rb +32 -0
 - data/test/unit/optional_attributes_test.rb +7 -13
 - metadata +60 -14
 - data/test/data/vcr_cassettes/districts_sections.yml +0 -818
 - data/test/data/vcr_cassettes/districts_students.yml +0 -436
 - data/test/data/vcr_cassettes/districts_students_filtered.yml +0 -170
 
| 
         @@ -8,7 +8,7 @@ http_interactions: 
     | 
|
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  Accept:
         
     | 
| 
       11 
     | 
    
         
            -
                  -  
     | 
| 
      
 11 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       14 
14 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -23,11 +23,11 @@ http_interactions: 
     | 
|
| 
       23 
23 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       24 
24 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       26 
     | 
    
         
            -
                  -  
     | 
| 
      
 26 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       27 
27 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       29 
29 
     | 
    
         
             
                  Date:
         
     | 
| 
       30 
     | 
    
         
            -
                  -  
     | 
| 
      
 30 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:53 GMT
         
     | 
| 
       31 
31 
     | 
    
         
             
                  Server:
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       33 
33 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -36,52 +36,11 @@ http_interactions: 
     | 
|
| 
       36 
36 
     | 
    
         
             
                  - '217'
         
     | 
| 
       37 
37 
     | 
    
         
             
                  Connection:
         
     | 
| 
       38 
38 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       39 
     | 
    
         
            -
                body:
         
     | 
| 
       40 
     | 
    
         
            -
                  encoding: UTF-8
         
     | 
| 
       41 
     | 
    
         
            -
                  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 
     | 
    
         
            -
                http_version: 
         
     | 
| 
       43 
     | 
    
         
            -
              recorded_at: Tue, 09 Sep 2014 21:48:28 GMT
         
     | 
| 
       44 
     | 
    
         
            -
            - request:
         
     | 
| 
       45 
     | 
    
         
            -
                method: get
         
     | 
| 
       46 
     | 
    
         
            -
                uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
         
     | 
| 
       47 
39 
     | 
    
         
             
                body:
         
     | 
| 
       48 
40 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       49 
     | 
    
         
            -
                  string: ''
         
     | 
| 
       50 
     | 
    
         
            -
                headers:
         
     | 
| 
       51 
     | 
    
         
            -
                  Accept:
         
     | 
| 
       52 
     | 
    
         
            -
                  - "*/*; q=0.5, application/xml"
         
     | 
| 
       53 
     | 
    
         
            -
                  Accept-Encoding:
         
     | 
| 
       54 
     | 
    
         
            -
                  - gzip, deflate
         
     | 
| 
       55 
     | 
    
         
            -
                  User-Agent:
         
     | 
| 
       56 
     | 
    
         
            -
                  - Ruby
         
     | 
| 
       57 
     | 
    
         
            -
              response:
         
     | 
| 
       58 
     | 
    
         
            -
                status:
         
     | 
| 
       59 
     | 
    
         
            -
                  code: 200
         
     | 
| 
       60 
     | 
    
         
            -
                  message: OK
         
     | 
| 
       61 
     | 
    
         
            -
                headers:
         
     | 
| 
       62 
     | 
    
         
            -
                  Access-Control-Allow-Headers:
         
     | 
| 
       63 
     | 
    
         
            -
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
       64 
     | 
    
         
            -
                  Access-Control-Allow-Methods:
         
     | 
| 
       65 
     | 
    
         
            -
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       66 
     | 
    
         
            -
                  Access-Control-Allow-Origin:
         
     | 
| 
       67 
     | 
    
         
            -
                  - "*"
         
     | 
| 
       68 
     | 
    
         
            -
                  Content-Type:
         
     | 
| 
       69 
     | 
    
         
            -
                  - application/json; charset=utf-8
         
     | 
| 
       70 
     | 
    
         
            -
                  Date:
         
     | 
| 
       71 
     | 
    
         
            -
                  - Tue, 09 Sep 2014 21:48:28 GMT
         
     | 
| 
       72 
     | 
    
         
            -
                  Server:
         
     | 
| 
       73 
     | 
    
         
            -
                  - nginx/1.4.7
         
     | 
| 
       74 
     | 
    
         
            -
                  X-Powered-By:
         
     | 
| 
       75 
     | 
    
         
            -
                  - Express
         
     | 
| 
       76 
     | 
    
         
            -
                  Content-Length:
         
     | 
| 
       77 
     | 
    
         
            -
                  - '518'
         
     | 
| 
       78 
     | 
    
         
            -
                  Connection:
         
     | 
| 
       79 
     | 
    
         
            -
                  - keep-alive
         
     | 
| 
       80 
     | 
    
         
            -
                body:
         
     | 
| 
       81 
     | 
    
         
            -
                  encoding: UTF-8
         
     | 
| 
       82 
     | 
    
         
            -
                  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"}]}'
         
     | 
| 
      
 41 
     | 
    
         
            +
                  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"}]}'
         
     | 
| 
       83 
42 
     | 
    
         
             
                http_version: 
         
     | 
| 
       84 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 43 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:53 GMT
         
     | 
| 
       85 
44 
     | 
    
         
             
            - request:
         
     | 
| 
       86 
45 
     | 
    
         
             
                method: get
         
     | 
| 
       87 
46 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
         
     | 
| 
         @@ -90,7 +49,7 @@ http_interactions: 
     | 
|
| 
       90 
49 
     | 
    
         
             
                  string: ''
         
     | 
| 
       91 
50 
     | 
    
         
             
                headers:
         
     | 
| 
       92 
51 
     | 
    
         
             
                  Accept:
         
     | 
| 
       93 
     | 
    
         
            -
                  -  
     | 
| 
      
 52 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       94 
53 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       95 
54 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       96 
55 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -105,11 +64,11 @@ http_interactions: 
     | 
|
| 
       105 
64 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       106 
65 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       107 
66 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       108 
     | 
    
         
            -
                  -  
     | 
| 
      
 67 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       109 
68 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       110 
69 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       111 
70 
     | 
    
         
             
                  Date:
         
     | 
| 
       112 
     | 
    
         
            -
                  -  
     | 
| 
      
 71 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:53 GMT
         
     | 
| 
       113 
72 
     | 
    
         
             
                  Server:
         
     | 
| 
       114 
73 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       115 
74 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -119,10 +78,10 @@ http_interactions: 
     | 
|
| 
       119 
78 
     | 
    
         
             
                  Connection:
         
     | 
| 
       120 
79 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       121 
80 
     | 
    
         
             
                body:
         
     | 
| 
       122 
     | 
    
         
            -
                  encoding:  
     | 
| 
       123 
     | 
    
         
            -
                  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"}]}'
         
     | 
| 
      
 81 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 82 
     | 
    
         
            +
                  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"}]}'
         
     | 
| 
       124 
83 
     | 
    
         
             
                http_version: 
         
     | 
| 
       125 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 84 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:53 GMT
         
     | 
| 
       126 
85 
     | 
    
         
             
            - request:
         
     | 
| 
       127 
86 
     | 
    
         
             
                method: get
         
     | 
| 
       128 
87 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=100000
         
     | 
| 
         @@ -131,7 +90,7 @@ http_interactions: 
     | 
|
| 
       131 
90 
     | 
    
         
             
                  string: ''
         
     | 
| 
       132 
91 
     | 
    
         
             
                headers:
         
     | 
| 
       133 
92 
     | 
    
         
             
                  Accept:
         
     | 
| 
       134 
     | 
    
         
            -
                  -  
     | 
| 
      
 93 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       135 
94 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       136 
95 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       137 
96 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -146,13 +105,13 @@ http_interactions: 
     | 
|
| 
       146 
105 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       147 
106 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       148 
107 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       149 
     | 
    
         
            -
                  -  
     | 
| 
      
 108 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       150 
109 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       151 
110 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       152 
111 
     | 
    
         
             
                  Date:
         
     | 
| 
       153 
     | 
    
         
            -
                  -  
     | 
| 
      
 112 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:54 GMT
         
     | 
| 
       154 
113 
     | 
    
         
             
                  Etag:
         
     | 
| 
       155 
     | 
    
         
            -
                  - '"-1260498667"'
         
     | 
| 
      
 114 
     | 
    
         
            +
                  - ! '"-1260498667"'
         
     | 
| 
       156 
115 
     | 
    
         
             
                  Server:
         
     | 
| 
       157 
116 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       158 
117 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -162,8 +121,8 @@ http_interactions: 
     | 
|
| 
       162 
121 
     | 
    
         
             
                  Connection:
         
     | 
| 
       163 
122 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       164 
123 
     | 
    
         
             
                body:
         
     | 
| 
       165 
     | 
    
         
            -
                  encoding:  
     | 
| 
       166 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
         
     | 
| 
      
 124 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 125 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
         
     | 
| 
       167 
126 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
         
     | 
| 
       168 
127 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
         
     | 
| 
       169 
128 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
         
     | 
| 
         @@ -819,89 +778,7 @@ http_interactions: 
     | 
|
| 
       819 
778 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"998414435","state_id":"134063200","student_number":"998414435","id":"530e5968049e75a9262d064a"},"uri":"/v1.1/students/530e5968049e75a9262d064a"},{"data":{"created":"2014-02-26T21:15:20.623Z","credentials":{"district_username":"markr17","district_password":"yo0ohYo6ro"},"district":"4fd43cc56d11340000000005","dob":"8/24/1996","ell_status":"N","email":"r_mark@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.750Z","location":{"zip":"10034"},"name":{"first":"Mark","middle":"S","last":"Reilly"},"race":"American
         
     | 
| 
       820 
779 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fd","sis_id":"999447617","state_id":"651135073","student_number":"999447617","id":"530e5968049e75a9262d064b"},"uri":"/v1.1/students/530e5968049e75a9262d064b"}],"paging":{"current":1,"total":1,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=100000"}]}'
         
     | 
| 
       821 
780 
     | 
    
         
             
                http_version: 
         
     | 
| 
       822 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       823 
     | 
    
         
            -
            - request:
         
     | 
| 
       824 
     | 
    
         
            -
                method: get
         
     | 
| 
       825 
     | 
    
         
            -
                uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
         
     | 
| 
       826 
     | 
    
         
            -
                body:
         
     | 
| 
       827 
     | 
    
         
            -
                  encoding: US-ASCII
         
     | 
| 
       828 
     | 
    
         
            -
                  string: ''
         
     | 
| 
       829 
     | 
    
         
            -
                headers:
         
     | 
| 
       830 
     | 
    
         
            -
                  Accept:
         
     | 
| 
       831 
     | 
    
         
            -
                  - "*/*; q=0.5, application/xml"
         
     | 
| 
       832 
     | 
    
         
            -
                  Accept-Encoding:
         
     | 
| 
       833 
     | 
    
         
            -
                  - gzip, deflate
         
     | 
| 
       834 
     | 
    
         
            -
                  User-Agent:
         
     | 
| 
       835 
     | 
    
         
            -
                  - Ruby
         
     | 
| 
       836 
     | 
    
         
            -
              response:
         
     | 
| 
       837 
     | 
    
         
            -
                status:
         
     | 
| 
       838 
     | 
    
         
            -
                  code: 200
         
     | 
| 
       839 
     | 
    
         
            -
                  message: OK
         
     | 
| 
       840 
     | 
    
         
            -
                headers:
         
     | 
| 
       841 
     | 
    
         
            -
                  Access-Control-Allow-Headers:
         
     | 
| 
       842 
     | 
    
         
            -
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
       843 
     | 
    
         
            -
                  Access-Control-Allow-Methods:
         
     | 
| 
       844 
     | 
    
         
            -
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       845 
     | 
    
         
            -
                  Access-Control-Allow-Origin:
         
     | 
| 
       846 
     | 
    
         
            -
                  - "*"
         
     | 
| 
       847 
     | 
    
         
            -
                  Content-Type:
         
     | 
| 
       848 
     | 
    
         
            -
                  - application/json; charset=utf-8
         
     | 
| 
       849 
     | 
    
         
            -
                  Date:
         
     | 
| 
       850 
     | 
    
         
            -
                  - Tue, 09 Sep 2014 21:48:30 GMT
         
     | 
| 
       851 
     | 
    
         
            -
                  Server:
         
     | 
| 
       852 
     | 
    
         
            -
                  - nginx/1.4.7
         
     | 
| 
       853 
     | 
    
         
            -
                  X-Powered-By:
         
     | 
| 
       854 
     | 
    
         
            -
                  - Express
         
     | 
| 
       855 
     | 
    
         
            -
                  Content-Length:
         
     | 
| 
       856 
     | 
    
         
            -
                  - '518'
         
     | 
| 
       857 
     | 
    
         
            -
                  Connection:
         
     | 
| 
       858 
     | 
    
         
            -
                  - keep-alive
         
     | 
| 
       859 
     | 
    
         
            -
                body:
         
     | 
| 
       860 
     | 
    
         
            -
                  encoding: UTF-8
         
     | 
| 
       861 
     | 
    
         
            -
                  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"}]}'
         
     | 
| 
       862 
     | 
    
         
            -
                http_version: 
         
     | 
| 
       863 
     | 
    
         
            -
              recorded_at: Tue, 09 Sep 2014 21:48:30 GMT
         
     | 
| 
       864 
     | 
    
         
            -
            - request:
         
     | 
| 
       865 
     | 
    
         
            -
                method: get
         
     | 
| 
       866 
     | 
    
         
            -
                uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
         
     | 
| 
       867 
     | 
    
         
            -
                body:
         
     | 
| 
       868 
     | 
    
         
            -
                  encoding: US-ASCII
         
     | 
| 
       869 
     | 
    
         
            -
                  string: ''
         
     | 
| 
       870 
     | 
    
         
            -
                headers:
         
     | 
| 
       871 
     | 
    
         
            -
                  Accept:
         
     | 
| 
       872 
     | 
    
         
            -
                  - "*/*; q=0.5, application/xml"
         
     | 
| 
       873 
     | 
    
         
            -
                  Accept-Encoding:
         
     | 
| 
       874 
     | 
    
         
            -
                  - gzip, deflate
         
     | 
| 
       875 
     | 
    
         
            -
                  User-Agent:
         
     | 
| 
       876 
     | 
    
         
            -
                  - Ruby
         
     | 
| 
       877 
     | 
    
         
            -
              response:
         
     | 
| 
       878 
     | 
    
         
            -
                status:
         
     | 
| 
       879 
     | 
    
         
            -
                  code: 200
         
     | 
| 
       880 
     | 
    
         
            -
                  message: OK
         
     | 
| 
       881 
     | 
    
         
            -
                headers:
         
     | 
| 
       882 
     | 
    
         
            -
                  Access-Control-Allow-Headers:
         
     | 
| 
       883 
     | 
    
         
            -
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
       884 
     | 
    
         
            -
                  Access-Control-Allow-Methods:
         
     | 
| 
       885 
     | 
    
         
            -
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       886 
     | 
    
         
            -
                  Access-Control-Allow-Origin:
         
     | 
| 
       887 
     | 
    
         
            -
                  - "*"
         
     | 
| 
       888 
     | 
    
         
            -
                  Content-Type:
         
     | 
| 
       889 
     | 
    
         
            -
                  - application/json; charset=utf-8
         
     | 
| 
       890 
     | 
    
         
            -
                  Date:
         
     | 
| 
       891 
     | 
    
         
            -
                  - Tue, 09 Sep 2014 21:48:30 GMT
         
     | 
| 
       892 
     | 
    
         
            -
                  Server:
         
     | 
| 
       893 
     | 
    
         
            -
                  - nginx/1.4.7
         
     | 
| 
       894 
     | 
    
         
            -
                  X-Powered-By:
         
     | 
| 
       895 
     | 
    
         
            -
                  - Express
         
     | 
| 
       896 
     | 
    
         
            -
                  Content-Length:
         
     | 
| 
       897 
     | 
    
         
            -
                  - '518'
         
     | 
| 
       898 
     | 
    
         
            -
                  Connection:
         
     | 
| 
       899 
     | 
    
         
            -
                  - keep-alive
         
     | 
| 
       900 
     | 
    
         
            -
                body:
         
     | 
| 
       901 
     | 
    
         
            -
                  encoding: UTF-8
         
     | 
| 
       902 
     | 
    
         
            -
                  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"}]}'
         
     | 
| 
       903 
     | 
    
         
            -
                http_version: 
         
     | 
| 
       904 
     | 
    
         
            -
              recorded_at: Tue, 09 Sep 2014 21:48:30 GMT
         
     | 
| 
      
 781 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:55 GMT
         
     | 
| 
       905 
782 
     | 
    
         
             
            - request:
         
     | 
| 
       906 
783 
     | 
    
         
             
                method: get
         
     | 
| 
       907 
784 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50
         
     | 
| 
         @@ -910,7 +787,7 @@ http_interactions: 
     | 
|
| 
       910 
787 
     | 
    
         
             
                  string: ''
         
     | 
| 
       911 
788 
     | 
    
         
             
                headers:
         
     | 
| 
       912 
789 
     | 
    
         
             
                  Accept:
         
     | 
| 
       913 
     | 
    
         
            -
                  -  
     | 
| 
      
 790 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       914 
791 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       915 
792 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       916 
793 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -925,13 +802,13 @@ http_interactions: 
     | 
|
| 
       925 
802 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       926 
803 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       927 
804 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       928 
     | 
    
         
            -
                  -  
     | 
| 
      
 805 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       929 
806 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       930 
807 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       931 
808 
     | 
    
         
             
                  Date:
         
     | 
| 
       932 
     | 
    
         
            -
                  -  
     | 
| 
      
 809 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:58 GMT
         
     | 
| 
       933 
810 
     | 
    
         
             
                  Etag:
         
     | 
| 
       934 
     | 
    
         
            -
                  - '"-222331548"'
         
     | 
| 
      
 811 
     | 
    
         
            +
                  - ! '"-222331548"'
         
     | 
| 
       935 
812 
     | 
    
         
             
                  Server:
         
     | 
| 
       936 
813 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       937 
814 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -941,8 +818,8 @@ http_interactions: 
     | 
|
| 
       941 
818 
     | 
    
         
             
                  Connection:
         
     | 
| 
       942 
819 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       943 
820 
     | 
    
         
             
                body:
         
     | 
| 
       944 
     | 
    
         
            -
                  encoding:  
     | 
| 
       945 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
         
     | 
| 
      
 821 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 822 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
         
     | 
| 
       946 
823 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
         
     | 
| 
       947 
824 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
         
     | 
| 
       948 
825 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
         
     | 
| 
         @@ -976,7 +853,7 @@ http_interactions: 
     | 
|
| 
       976 
853 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fd","sis_id":"135635226","state_id":"568110703","student_number":"135635226","id":"530e5960049e75a9262cff67"},"uri":"/v1.1/students/530e5960049e75a9262cff67"},{"data":{"created":"2014-02-26T21:15:12.697Z","credentials":{"district_username":"clarettas30","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1995","ell_status":"Y","email":"s_claretta@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.851Z","location":{"zip":"11361"},"name":{"first":"Claretta","middle":"C","last":"Steuber"},"race":"Black
         
     | 
| 
       977 
854 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"136380730","state_id":"307304843","student_number":"136380730","id":"530e5960049e75a9262cff6a"},"uri":"/v1.1/students/530e5960049e75a9262cff6a"},{"data":{"created":"2014-02-26T21:15:12.713Z","credentials":{"district_username":"lisab30","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"9/12/2002","ell_status":"N","email":"b_lisa@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.855Z","location":{"zip":"11370"},"name":{"first":"Lisa","middle":"B","last":"Botsford"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"136422830","state_id":"258401272","student_number":"136422830","id":"530e5960049e75a9262cff6c"},"uri":"/v1.1/students/530e5960049e75a9262cff6c"},{"data":{"created":"2014-02-26T21:15:12.721Z","credentials":{"district_username":"amberw60","district_password":"Tu5sahdoh"},"district":"4fd43cc56d11340000000005","dob":"2/26/2006","ell_status":"N","email":"amber_w@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.860Z","location":{"zip":"11429"},"name":{"first":"Amber","middle":"J","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137019560","state_id":"650349892","student_number":"137019560","id":"530e5960049e75a9262cff6e"},"uri":"/v1.1/students/530e5960049e75a9262cff6e"},{"data":{"created":"2014-02-26T21:15:12.734Z","credentials":{"district_username":"lloydc63","district_password":"ohChah5t"},"district":"4fd43cc56d11340000000005","dob":"11/21/2005","ell_status":"N","email":"c.lloyd@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.864Z","location":{"zip":"10014"},"name":{"first":"Lloyd","middle":"P","last":"Collier"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137569863","state_id":"997363437","student_number":"137569863","id":"530e5960049e75a9262cff72"},"uri":"/v1.1/students/530e5960049e75a9262cff72"}],"paging":{"current":1,"total":21,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72"}]}'
         
     | 
| 
       978 
855 
     | 
    
         
             
                http_version: 
         
     | 
| 
       979 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 856 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:58 GMT
         
     | 
| 
       980 
857 
     | 
    
         
             
            - request:
         
     | 
| 
       981 
858 
     | 
    
         
             
                method: get
         
     | 
| 
       982 
859 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72
         
     | 
| 
         @@ -985,7 +862,7 @@ http_interactions: 
     | 
|
| 
       985 
862 
     | 
    
         
             
                  string: ''
         
     | 
| 
       986 
863 
     | 
    
         
             
                headers:
         
     | 
| 
       987 
864 
     | 
    
         
             
                  Accept:
         
     | 
| 
       988 
     | 
    
         
            -
                  -  
     | 
| 
      
 865 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       989 
866 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       990 
867 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       991 
868 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1000,13 +877,13 @@ http_interactions: 
     | 
|
| 
       1000 
877 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1001 
878 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1002 
879 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1003 
     | 
    
         
            -
                  -  
     | 
| 
      
 880 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1004 
881 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1005 
882 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1006 
883 
     | 
    
         
             
                  Date:
         
     | 
| 
       1007 
     | 
    
         
            -
                  -  
     | 
| 
      
 884 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:58 GMT
         
     | 
| 
       1008 
885 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1009 
     | 
    
         
            -
                  - '"-1095771344"'
         
     | 
| 
      
 886 
     | 
    
         
            +
                  - ! '"-1095771344"'
         
     | 
| 
       1010 
887 
     | 
    
         
             
                  Server:
         
     | 
| 
       1011 
888 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1012 
889 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1016,8 +893,8 @@ http_interactions: 
     | 
|
| 
       1016 
893 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1017 
894 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1018 
895 
     | 
    
         
             
                body:
         
     | 
| 
       1019 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1020 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.746Z","credentials":{"district_username":"serenab06","district_password":"shu9shiNich"},"district":"4fd43cc56d11340000000005","dob":"4/10/2007","ell_status":"N","email":"b_serena@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.867Z","location":{"zip":"11216"},"name":{"first":"Serena","middle":"E","last":"Beer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"138030806","state_id":"298722069","student_number":"138030806","id":"530e5960049e75a9262cff76"},"uri":"/v1.1/students/530e5960049e75a9262cff76"},{"data":{"created":"2014-02-26T21:15:12.762Z","credentials":{"district_username":"vincenzoc30","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"5/31/2004","ell_status":"N","email":"vincenzo_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.870Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Cronin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"142650130","state_id":"595801763","student_number":"142650130","id":"530e5960049e75a9262cff78"},"uri":"/v1.1/students/530e5960049e75a9262cff78"},{"data":{"created":"2014-02-26T21:15:12.769Z","credentials":{"district_username":"kathyk90","district_password":"eeD2Zei8yoL"},"district":"4fd43cc56d11340000000005","dob":"4/21/1999","ell_status":"N","email":"kathy_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.875Z","location":{"zip":"10474"},"name":{"first":"Kathy","middle":"J","last":"Keeling"},"race":"Black
         
     | 
| 
      
 896 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 897 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.746Z","credentials":{"district_username":"serenab06","district_password":"shu9shiNich"},"district":"4fd43cc56d11340000000005","dob":"4/10/2007","ell_status":"N","email":"b_serena@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.867Z","location":{"zip":"11216"},"name":{"first":"Serena","middle":"E","last":"Beer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"138030806","state_id":"298722069","student_number":"138030806","id":"530e5960049e75a9262cff76"},"uri":"/v1.1/students/530e5960049e75a9262cff76"},{"data":{"created":"2014-02-26T21:15:12.762Z","credentials":{"district_username":"vincenzoc30","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"5/31/2004","ell_status":"N","email":"vincenzo_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.870Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Cronin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"142650130","state_id":"595801763","student_number":"142650130","id":"530e5960049e75a9262cff78"},"uri":"/v1.1/students/530e5960049e75a9262cff78"},{"data":{"created":"2014-02-26T21:15:12.769Z","credentials":{"district_username":"kathyk90","district_password":"eeD2Zei8yoL"},"district":"4fd43cc56d11340000000005","dob":"4/21/1999","ell_status":"N","email":"kathy_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.875Z","location":{"zip":"10474"},"name":{"first":"Kathy","middle":"J","last":"Keeling"},"race":"Black
         
     | 
| 
       1021 
898 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"142858690","state_id":"397018257","student_number":"142858690","id":"530e5960049e75a9262cff79"},"uri":"/v1.1/students/530e5960049e75a9262cff79"},{"data":{"created":"2014-02-26T21:15:12.774Z","credentials":{"district_username":"jeffreyk79","district_password":"tohgaK5zoo"},"district":"4fd43cc56d11340000000005","dob":"9/17/1998","ell_status":"Y","email":"k_jeffrey@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.879Z","location":{"zip":"11357"},"name":{"first":"Jeffrey","middle":"M","last":"Kuphal"},"race":"Two
         
     | 
| 
       1022 
899 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"143899679","state_id":"381712167","student_number":"143899679","id":"530e5960049e75a9262cff7a"},"uri":"/v1.1/students/530e5960049e75a9262cff7a"},{"data":{"created":"2014-02-26T21:15:12.781Z","credentials":{"district_username":"rebar71","district_password":"Zahboi4ji8"},"district":"4fd43cc56d11340000000005","dob":"10/31/1997","ell_status":"N","email":"r.reba@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.882Z","location":{"zip":"11220"},"name":{"first":"Reba","middle":"J","last":"Reynolds"},"race":"Black
         
     | 
| 
       1023 
900 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"146278371","state_id":"619403122","student_number":"146278371","id":"530e5960049e75a9262cff7b"},"uri":"/v1.1/students/530e5960049e75a9262cff7b"},{"data":{"created":"2014-02-26T21:15:12.787Z","credentials":{"district_username":"keithp41","district_password":"Jiehaez7Ai"},"district":"4fd43cc56d11340000000005","dob":"6/2/1996","ell_status":"N","email":"keith_p@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.886Z","location":{"zip":"10308"},"name":{"first":"Keith","middle":"A","last":"Prohaska"},"race":"American
         
     | 
| 
         @@ -1058,7 +935,7 @@ http_interactions: 
     | 
|
| 
       1058 
935 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"189422359","state_id":"949395711","student_number":"189422359","id":"530e5961049e75a9262cffe3"},"uri":"/v1.1/students/530e5961049e75a9262cffe3"},{"data":{"created":"2014-02-26T21:15:13.206Z","credentials":{"district_username":"mial61","district_password":"uka5Hixae"},"district":"4fd43cc56d11340000000005","dob":"11/10/2002","ell_status":"N","email":"l_mia@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.072Z","location":{"zip":"10002"},"name":{"first":"Mia","middle":"J","last":"Lindgren"},"race":"Black
         
     | 
| 
       1059 
936 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5960049e75a9262cff72"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5960049e75a9262cff76"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4"}]}'
         
     | 
| 
       1060 
937 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1061 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 938 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:58 GMT
         
     | 
| 
       1062 
939 
     | 
    
         
             
            - request:
         
     | 
| 
       1063 
940 
     | 
    
         
             
                method: get
         
     | 
| 
       1064 
941 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4
         
     | 
| 
         @@ -1067,7 +944,7 @@ http_interactions: 
     | 
|
| 
       1067 
944 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1068 
945 
     | 
    
         
             
                headers:
         
     | 
| 
       1069 
946 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1070 
     | 
    
         
            -
                  -  
     | 
| 
      
 947 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1071 
948 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1072 
949 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1073 
950 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1082,13 +959,13 @@ http_interactions: 
     | 
|
| 
       1082 
959 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1083 
960 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1084 
961 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1085 
     | 
    
         
            -
                  -  
     | 
| 
      
 962 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1086 
963 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1087 
964 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1088 
965 
     | 
    
         
             
                  Date:
         
     | 
| 
       1089 
     | 
    
         
            -
                  -  
     | 
| 
      
 966 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1090 
967 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1091 
     | 
    
         
            -
                  - '"125239207"'
         
     | 
| 
      
 968 
     | 
    
         
            +
                  - ! '"125239207"'
         
     | 
| 
       1092 
969 
     | 
    
         
             
                  Server:
         
     | 
| 
       1093 
970 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1094 
971 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1098,8 +975,8 @@ http_interactions: 
     | 
|
| 
       1098 
975 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1099 
976 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1100 
977 
     | 
    
         
             
                body:
         
     | 
| 
       1101 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1102 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:13.212Z","credentials":{"district_username":"amandaj51","district_password":"roh1Feiphah"},"district":"4fd43cc56d11340000000005","dob":"10/18/1999","ell_status":"Y","email":"amanda_j@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.077Z","location":{"zip":"11435"},"name":{"first":"Amanda","middle":"G","last":"Jewess"},"race":"Black
         
     | 
| 
      
 978 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 979 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:13.212Z","credentials":{"district_username":"amandaj51","district_password":"roh1Feiphah"},"district":"4fd43cc56d11340000000005","dob":"10/18/1999","ell_status":"Y","email":"amanda_j@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.077Z","location":{"zip":"11435"},"name":{"first":"Amanda","middle":"G","last":"Jewess"},"race":"Black
         
     | 
| 
       1103 
980 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"189563051","state_id":"652845522","student_number":"189563051","id":"530e5961049e75a9262cffe5"},"uri":"/v1.1/students/530e5961049e75a9262cffe5"},{"data":{"created":"2014-02-26T21:15:13.222Z","credentials":{"district_username":"dennise32","district_password":"do4iuS3aib"},"district":"4fd43cc56d11340000000005","dob":"10/27/2001","ell_status":"Y","email":"dennis.e@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.082Z","location":{"zip":"11434"},"name":{"first":"Dennis","middle":"S","last":"Ebert"},"race":"Two
         
     | 
| 
       1104 
981 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"191990532","state_id":"863066778","student_number":"191990532","id":"530e5961049e75a9262cffe6"},"uri":"/v1.1/students/530e5961049e75a9262cffe6"},{"data":{"created":"2014-02-26T21:15:13.228Z","credentials":{"district_username":"anab65","district_password":"rieM4thub0e"},"district":"4fd43cc56d11340000000005","dob":"8/16/2001","ell_status":"N","email":"b_ana@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.086Z","location":{"zip":"11211"},"name":{"first":"Ana","middle":"J","last":"Barton"},"race":"Two
         
     | 
| 
       1105 
982 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"192513965","state_id":"961608338","student_number":"192513965","id":"530e5961049e75a9262cffe7"},"uri":"/v1.1/students/530e5961049e75a9262cffe7"},{"data":{"created":"2014-02-26T21:15:13.232Z","credentials":{"district_username":"emilyr17","district_password":"aiCheeke3qu"},"district":"4fd43cc56d11340000000005","dob":"9/22/2002","ell_status":"N","email":"emily_r@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.098Z","location":{"zip":"11220"},"name":{"first":"Emily","middle":"C","last":"Raynor"},"race":"Black
         
     | 
| 
         @@ -1139,7 +1016,7 @@ http_interactions: 
     | 
|
| 
       1139 
1016 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"239116519","state_id":"471948035","student_number":"239116519","id":"530e5961049e75a9262d003c"},"uri":"/v1.1/students/530e5961049e75a9262d003c"},{"data":{"created":"2014-02-26T21:15:13.628Z","credentials":{"district_username":"rebeccac35","district_password":"ooCheo3Ahdee"},"district":"4fd43cc56d11340000000005","dob":"4/11/2003","ell_status":"N","email":"rebecca.c@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.273Z","location":{"zip":"11209"},"name":{"first":"Rebecca","middle":"R","last":"Considine"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"239458535","state_id":"902039938","student_number":"239458535","id":"530e5961049e75a9262d003f"},"uri":"/v1.1/students/530e5961049e75a9262d003f"},{"data":{"created":"2014-02-26T21:15:13.653Z","credentials":{"district_username":"jeromes74","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"7/31/1998","ell_status":"N","email":"jerome.s@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.277Z","location":{"zip":"11231"},"name":{"first":"Jerome","middle":"C","last":"Schowalter"},"race":"Two
         
     | 
| 
       1140 
1017 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"243330474","state_id":"536202212","student_number":"243330474","id":"530e5961049e75a9262d0048"},"uri":"/v1.1/students/530e5961049e75a9262d0048"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048"}]}'
         
     | 
| 
       1141 
1018 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1142 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1019 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1143 
1020 
     | 
    
         
             
            - request:
         
     | 
| 
       1144 
1021 
     | 
    
         
             
                method: get
         
     | 
| 
       1145 
1022 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048
         
     | 
| 
         @@ -1148,7 +1025,7 @@ http_interactions: 
     | 
|
| 
       1148 
1025 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1149 
1026 
     | 
    
         
             
                headers:
         
     | 
| 
       1150 
1027 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1151 
     | 
    
         
            -
                  -  
     | 
| 
      
 1028 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1152 
1029 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1153 
1030 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1154 
1031 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1163,13 +1040,13 @@ http_interactions: 
     | 
|
| 
       1163 
1040 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1164 
1041 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1165 
1042 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1166 
     | 
    
         
            -
                  -  
     | 
| 
      
 1043 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1167 
1044 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1168 
1045 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1169 
1046 
     | 
    
         
             
                  Date:
         
     | 
| 
       1170 
     | 
    
         
            -
                  -  
     | 
| 
      
 1047 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1171 
1048 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1172 
     | 
    
         
            -
                  - '"958448407"'
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  - ! '"958448407"'
         
     | 
| 
       1173 
1050 
     | 
    
         
             
                  Server:
         
     | 
| 
       1174 
1051 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1175 
1052 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1179,8 +1056,8 @@ http_interactions: 
     | 
|
| 
       1179 
1056 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1180 
1057 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1181 
1058 
     | 
    
         
             
                body:
         
     | 
| 
       1182 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1183 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:13.659Z","credentials":{"district_username":"johna77","district_password":"Chei3ohnae"},"district":"4fd43cc56d11340000000005","dob":"10/25/2006","ell_status":"Y","email":"john.a@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.290Z","location":{"zip":"10473"},"name":{"first":"John","middle":"L","last":"Anderson"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"243615677","state_id":"438969260","student_number":"243615677","id":"530e5961049e75a9262d004a"},"uri":"/v1.1/students/530e5961049e75a9262d004a"},{"data":{"created":"2014-02-26T21:15:13.665Z","credentials":{"district_username":"stanleys28","district_password":"baeZ7Daibis"},"district":"4fd43cc56d11340000000005","dob":"1/17/1996","ell_status":"N","email":"stanley_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.294Z","location":{"zip":"10019"},"name":{"first":"Stanley","middle":"J","last":"Sauer"},"race":"American
         
     | 
| 
      
 1059 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:13.659Z","credentials":{"district_username":"johna77","district_password":"Chei3ohnae"},"district":"4fd43cc56d11340000000005","dob":"10/25/2006","ell_status":"Y","email":"john.a@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.290Z","location":{"zip":"10473"},"name":{"first":"John","middle":"L","last":"Anderson"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"243615677","state_id":"438969260","student_number":"243615677","id":"530e5961049e75a9262d004a"},"uri":"/v1.1/students/530e5961049e75a9262d004a"},{"data":{"created":"2014-02-26T21:15:13.665Z","credentials":{"district_username":"stanleys28","district_password":"baeZ7Daibis"},"district":"4fd43cc56d11340000000005","dob":"1/17/1996","ell_status":"N","email":"stanley_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.294Z","location":{"zip":"10019"},"name":{"first":"Stanley","middle":"J","last":"Sauer"},"race":"American
         
     | 
| 
       1184 
1061 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fd","sis_id":"243806128","state_id":"893672743","student_number":"243806128","id":"530e5961049e75a9262d004c"},"uri":"/v1.1/students/530e5961049e75a9262d004c"},{"data":{"created":"2014-02-26T21:15:13.672Z","credentials":{"district_username":"douglasg71","district_password":"AhxahR7Th"},"district":"4fd43cc56d11340000000005","dob":"10/24/1997","ell_status":"Y","email":"g_douglas@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.296Z","location":{"zip":"10468"},"name":{"first":"Douglas","middle":"M","last":"Gusikowski"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"243865571","state_id":"621454258","student_number":"243865571","id":"530e5961049e75a9262d004e"},"uri":"/v1.1/students/530e5961049e75a9262d004e"},{"data":{"created":"2014-02-26T21:15:13.678Z","credentials":{"district_username":"crystalp39","district_password":"eingeeri4R"},"district":"4fd43cc56d11340000000005","dob":"6/21/2005","ell_status":"N","email":"p_crystal@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.301Z","location":{"zip":"10314"},"name":{"first":"Crystal","middle":"R","last":"Padberg"},"race":"Black
         
     | 
| 
       1185 
1062 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"244037639","state_id":"768824156","student_number":"244037639","id":"530e5961049e75a9262d0050"},"uri":"/v1.1/students/530e5961049e75a9262d0050"},{"data":{"created":"2014-02-26T21:15:13.684Z","credentials":{"district_username":"briand07","district_password":"Nibul8or"},"district":"4fd43cc56d11340000000005","dob":"11/1/2005","ell_status":"N","email":"brian.d@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.304Z","location":{"zip":"10033"},"name":{"first":"Brian","middle":"W","last":"Dietrich"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"244182707","state_id":"642729891","student_number":"244182707","id":"530e5961049e75a9262d0052"},"uri":"/v1.1/students/530e5961049e75a9262d0052"},{"data":{"created":"2014-02-26T21:15:13.689Z","credentials":{"district_username":"marjorieg75","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"11/23/2005","ell_status":"N","email":"marjorie_g@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.308Z","location":{"zip":"10024"},"name":{"first":"Marjorie","middle":"J","last":"Gutmann"},"race":"Two
         
     | 
| 
       1186 
1063 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"244796975","state_id":"449599506","student_number":"244796975","id":"530e5961049e75a9262d0054"},"uri":"/v1.1/students/530e5961049e75a9262d0054"},{"data":{"created":"2014-02-26T21:15:13.695Z","credentials":{"district_username":"spencers00","district_password":"Aiwoo8Uong"},"district":"4fd43cc56d11340000000005","dob":"3/3/1997","ell_status":"Y","email":"s_spencer@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.313Z","location":{"zip":"11370"},"name":{"first":"Spencer","middle":"N","last":"Schulist"},"race":"Black
         
     | 
| 
         @@ -1208,7 +1085,7 @@ http_interactions: 
     | 
|
| 
       1208 
1085 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"281506967","state_id":"783233963","student_number":"281506967","id":"530e5962049e75a9262d00a0"},"uri":"/v1.1/students/530e5962049e75a9262d00a0"},{"data":{"created":"2014-02-26T21:15:14.041Z","credentials":{"district_username":"ethans60","district_password":"iv5ooga4Ie"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"s_ethan@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.470Z","location":{"zip":"10465"},"name":{"first":"Ethan","middle":"S","last":"Stokes"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"281770560","state_id":"424914041","student_number":"281770560","id":"530e5962049e75a9262d00a2"},"uri":"/v1.1/students/530e5962049e75a9262d00a2"},{"data":{"created":"2014-02-26T21:15:14.049Z","credentials":{"district_username":"kimberlyt62","district_password":"Ue7oevee"},"district":"4fd43cc56d11340000000005","dob":"12/24/1997","ell_status":"N","email":"t.kimberly@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.482Z","location":{"zip":"11695"},"name":{"first":"Kimberly","middle":"J","last":"Torphy"},"race":"Black
         
     | 
| 
       1209 
1086 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"282491062","state_id":"918036457","student_number":"282491062","id":"530e5962049e75a9262d00a5"},"uri":"/v1.1/students/530e5962049e75a9262d00a5"},{"data":{"created":"2014-02-26T21:15:14.060Z","credentials":{"district_username":"alexp21","district_password":"la8ohShee"},"district":"4fd43cc56d11340000000005","dob":"9/24/2003","ell_status":"N","email":"p.alex@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.486Z","location":{"zip":"10018"},"name":{"first":"Alex","middle":"M","last":"Pacocha"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283207621","state_id":"729866081","student_number":"283207621","id":"530e5962049e75a9262d00a9"},"uri":"/v1.1/students/530e5962049e75a9262d00a9"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5961049e75a9262d0048"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5961049e75a9262d004a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9"}]}'
         
     | 
| 
       1210 
1087 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1211 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1088 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1212 
1089 
     | 
    
         
             
            - request:
         
     | 
| 
       1213 
1090 
     | 
    
         
             
                method: get
         
     | 
| 
       1214 
1091 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9
         
     | 
| 
         @@ -1217,7 +1094,7 @@ http_interactions: 
     | 
|
| 
       1217 
1094 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1218 
1095 
     | 
    
         
             
                headers:
         
     | 
| 
       1219 
1096 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1220 
     | 
    
         
            -
                  -  
     | 
| 
      
 1097 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1221 
1098 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1222 
1099 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1223 
1100 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1232,13 +1109,13 @@ http_interactions: 
     | 
|
| 
       1232 
1109 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1233 
1110 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1234 
1111 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1235 
     | 
    
         
            -
                  -  
     | 
| 
      
 1112 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1236 
1113 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1237 
1114 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1238 
1115 
     | 
    
         
             
                  Date:
         
     | 
| 
       1239 
     | 
    
         
            -
                  -  
     | 
| 
      
 1116 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1240 
1117 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1241 
     | 
    
         
            -
                  - '"773509148"'
         
     | 
| 
      
 1118 
     | 
    
         
            +
                  - ! '"773509148"'
         
     | 
| 
       1242 
1119 
     | 
    
         
             
                  Server:
         
     | 
| 
       1243 
1120 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1244 
1121 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1248,8 +1125,8 @@ http_interactions: 
     | 
|
| 
       1248 
1125 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1249 
1126 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1250 
1127 
     | 
    
         
             
                body:
         
     | 
| 
       1251 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1252 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.068Z","credentials":{"district_username":"lanaw95","district_password":"aeghiaH0no"},"district":"4fd43cc56d11340000000005","dob":"8/30/2002","ell_status":"Y","email":"lana_w@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.489Z","location":{"zip":"10004"},"name":{"first":"Lana","middle":"A","last":"Wisozk"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283689395","state_id":"658074450","student_number":"283689395","id":"530e5962049e75a9262d00ac"},"uri":"/v1.1/students/530e5962049e75a9262d00ac"},{"data":{"created":"2014-02-26T21:15:14.073Z","credentials":{"district_username":"shannonk65","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"9/14/1996","ell_status":"Y","email":"shannon_k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.492Z","location":{"zip":"11206"},"name":{"first":"Shannon","middle":"C","last":"Kunde"},"race":"Two
         
     | 
| 
      
 1128 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1129 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.068Z","credentials":{"district_username":"lanaw95","district_password":"aeghiaH0no"},"district":"4fd43cc56d11340000000005","dob":"8/30/2002","ell_status":"Y","email":"lana_w@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.489Z","location":{"zip":"10004"},"name":{"first":"Lana","middle":"A","last":"Wisozk"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283689395","state_id":"658074450","student_number":"283689395","id":"530e5962049e75a9262d00ac"},"uri":"/v1.1/students/530e5962049e75a9262d00ac"},{"data":{"created":"2014-02-26T21:15:14.073Z","credentials":{"district_username":"shannonk65","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"9/14/1996","ell_status":"Y","email":"shannon_k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.492Z","location":{"zip":"11206"},"name":{"first":"Shannon","middle":"C","last":"Kunde"},"race":"Two
         
     | 
| 
       1253 
1130 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"283755065","state_id":"535830084","student_number":"283755065","id":"530e5962049e75a9262d00ae"},"uri":"/v1.1/students/530e5962049e75a9262d00ae"},{"data":{"created":"2014-02-26T21:15:14.078Z","credentials":{"district_username":"williamn86","district_password":"unauMe0sh"},"district":"4fd43cc56d11340000000005","dob":"9/9/2002","ell_status":"Y","email":"n_william@example.net","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.497Z","location":{"zip":"11423"},"name":{"first":"William","middle":"C","last":"Nicolas"},"race":"American
         
     | 
| 
       1254 
1131 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fe","sis_id":"283813686","state_id":"243049132","student_number":"283813686","id":"530e5962049e75a9262d00af"},"uri":"/v1.1/students/530e5962049e75a9262d00af"},{"data":{"created":"2014-02-26T21:15:14.082Z","credentials":{"district_username":"margaretk42","district_password":"hem6rie4Xa"},"district":"4fd43cc56d11340000000005","dob":"6/2/2004","ell_status":"Y","email":"margaret_k@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.501Z","location":{"zip":"11103"},"name":{"first":"Margaret","middle":"W","last":"Klocko"},"race":"Black
         
     | 
| 
       1255 
1132 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"284028642","state_id":"373519047","student_number":"284028642","id":"530e5962049e75a9262d00b0"},"uri":"/v1.1/students/530e5962049e75a9262d00b0"},{"data":{"created":"2014-02-26T21:15:14.086Z","credentials":{"district_username":"jeffl04","district_password":"eghu2aij6Oh"},"district":"4fd43cc56d11340000000005","dob":"5/1/2001","ell_status":"N","email":"jeff.l@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.504Z","location":{"zip":"10473"},"name":{"first":"Jeff","middle":"K","last":"Labadie"},"race":"Two
         
     | 
| 
         @@ -1287,7 +1164,7 @@ http_interactions: 
     | 
|
| 
       1287 
1164 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"320645862","state_id":"871144833","student_number":"320645862","id":"530e5962049e75a9262d0104"},"uri":"/v1.1/students/530e5962049e75a9262d0104"},{"data":{"created":"2014-02-26T21:15:14.454Z","credentials":{"district_username":"nancyb33","district_password":"quiVu5aen"},"district":"4fd43cc56d11340000000005","dob":"9/26/1996","ell_status":"N","email":"b_nancy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.684Z","location":{"zip":"10021"},"name":{"first":"Nancy","middle":"P","last":"Borer"},"race":"Two
         
     | 
| 
       1288 
1165 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"321540033","state_id":"170613526","student_number":"321540033","id":"530e5962049e75a9262d0106"},"uri":"/v1.1/students/530e5962049e75a9262d0106"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106"}]}'
         
     | 
| 
       1289 
1166 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1290 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1167 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1291 
1168 
     | 
    
         
             
            - request:
         
     | 
| 
       1292 
1169 
     | 
    
         
             
                method: get
         
     | 
| 
       1293 
1170 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106
         
     | 
| 
         @@ -1296,7 +1173,7 @@ http_interactions: 
     | 
|
| 
       1296 
1173 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1297 
1174 
     | 
    
         
             
                headers:
         
     | 
| 
       1298 
1175 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1299 
     | 
    
         
            -
                  -  
     | 
| 
      
 1176 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1300 
1177 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1301 
1178 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1302 
1179 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1311,13 +1188,13 @@ http_interactions: 
     | 
|
| 
       1311 
1188 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1312 
1189 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1313 
1190 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1314 
     | 
    
         
            -
                  -  
     | 
| 
      
 1191 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1315 
1192 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1316 
1193 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1317 
1194 
     | 
    
         
             
                  Date:
         
     | 
| 
       1318 
     | 
    
         
            -
                  -  
     | 
| 
      
 1195 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1319 
1196 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1320 
     | 
    
         
            -
                  - '"1086824720"'
         
     | 
| 
      
 1197 
     | 
    
         
            +
                  - ! '"1086824720"'
         
     | 
| 
       1321 
1198 
     | 
    
         
             
                  Server:
         
     | 
| 
       1322 
1199 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1323 
1200 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1327,8 +1204,8 @@ http_interactions: 
     | 
|
| 
       1327 
1204 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1328 
1205 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1329 
1206 
     | 
    
         
             
                body:
         
     | 
| 
       1330 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1331 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.462Z","credentials":{"district_username":"lancem71","district_password":"iem0saiPe"},"district":"4fd43cc56d11340000000005","dob":"6/8/2003","ell_status":"N","email":"lance_m@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.689Z","location":{"zip":"11104"},"name":{"first":"Lance","middle":"C","last":"Murphy"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"322065571","state_id":"869478576","student_number":"322065571","id":"530e5962049e75a9262d0107"},"uri":"/v1.1/students/530e5962049e75a9262d0107"},{"data":{"created":"2014-02-26T21:15:14.469Z","credentials":{"district_username":"sandrau27","district_password":"Ath5iug2moh"},"district":"4fd43cc56d11340000000005","dob":"1/13/1999","ell_status":"N","email":"sandra_u@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.694Z","location":{"zip":"11436"},"name":{"first":"Sandra","middle":"K","last":"Upton"},"race":"Two
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.462Z","credentials":{"district_username":"lancem71","district_password":"iem0saiPe"},"district":"4fd43cc56d11340000000005","dob":"6/8/2003","ell_status":"N","email":"lance_m@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.689Z","location":{"zip":"11104"},"name":{"first":"Lance","middle":"C","last":"Murphy"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"322065571","state_id":"869478576","student_number":"322065571","id":"530e5962049e75a9262d0107"},"uri":"/v1.1/students/530e5962049e75a9262d0107"},{"data":{"created":"2014-02-26T21:15:14.469Z","credentials":{"district_username":"sandrau27","district_password":"Ath5iug2moh"},"district":"4fd43cc56d11340000000005","dob":"1/13/1999","ell_status":"N","email":"sandra_u@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.694Z","location":{"zip":"11436"},"name":{"first":"Sandra","middle":"K","last":"Upton"},"race":"Two
         
     | 
| 
       1332 
1209 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"322519127","state_id":"223472126","student_number":"322519127","id":"530e5962049e75a9262d0108"},"uri":"/v1.1/students/530e5962049e75a9262d0108"},{"data":{"created":"2014-02-26T21:15:14.473Z","credentials":{"district_username":"abbies03","district_password":"noonugh4Oi8"},"district":"4fd43cc56d11340000000005","dob":"9/30/2003","ell_status":"N","email":"abbie_s@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.697Z","location":{"zip":"11372"},"name":{"first":"Abbie","middle":"R","last":"Schneider"},"race":"Black
         
     | 
| 
       1333 
1210 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"322901503","state_id":"749882990","student_number":"322901503","id":"530e5962049e75a9262d0109"},"uri":"/v1.1/students/530e5962049e75a9262d0109"},{"data":{"created":"2014-02-26T21:15:14.479Z","credentials":{"district_username":"pennys16","district_password":"xuo5neeHah"},"district":"4fd43cc56d11340000000005","dob":"3/29/2005","ell_status":"N","email":"penny.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.701Z","location":{"zip":"10040"},"name":{"first":"Penny","middle":"D","last":"Schiller"},"race":"American
         
     | 
| 
       1334 
1211 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fe","sis_id":"323437416","state_id":"707037262","student_number":"323437416","id":"530e5962049e75a9262d010a"},"uri":"/v1.1/students/530e5962049e75a9262d010a"},{"data":{"created":"2014-02-26T21:15:14.491Z","credentials":{"district_username":"aliciar88","district_password":"Su4eikue5ao"},"district":"4fd43cc56d11340000000005","dob":"5/13/2001","ell_status":"Y","email":"alicia.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.707Z","location":{"zip":"11239"},"name":{"first":"Alicia","middle":"J","last":"Rodriguez"},"race":"Two
         
     | 
| 
         @@ -1362,7 +1239,7 @@ http_interactions: 
     | 
|
| 
       1362 
1239 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"365272887","state_id":"700708728","student_number":"365272887","id":"530e5962049e75a9262d015f"},"uri":"/v1.1/students/530e5962049e75a9262d015f"},{"data":{"created":"2014-02-26T21:15:14.870Z","credentials":{"district_username":"virgiem43","district_password":"Lein8oop"},"district":"4fd43cc56d11340000000005","dob":"1/20/2005","ell_status":"N","email":"m_virgie@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.888Z","location":{"zip":"10465"},"name":{"first":"Virgie","middle":"J","last":"Mueller"},"race":"Black
         
     | 
| 
       1363 
1240 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"365316343","state_id":"857518638","student_number":"365316343","id":"530e5962049e75a9262d0160"},"uri":"/v1.1/students/530e5962049e75a9262d0160"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0106"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d0107"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160"}]}'
         
     | 
| 
       1364 
1241 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1365 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1242 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:59 GMT
         
     | 
| 
       1366 
1243 
     | 
    
         
             
            - request:
         
     | 
| 
       1367 
1244 
     | 
    
         
             
                method: get
         
     | 
| 
       1368 
1245 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160
         
     | 
| 
         @@ -1371,7 +1248,7 @@ http_interactions: 
     | 
|
| 
       1371 
1248 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1372 
1249 
     | 
    
         
             
                headers:
         
     | 
| 
       1373 
1250 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1374 
     | 
    
         
            -
                  -  
     | 
| 
      
 1251 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1375 
1252 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1376 
1253 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1377 
1254 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1386,13 +1263,13 @@ http_interactions: 
     | 
|
| 
       1386 
1263 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1387 
1264 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1388 
1265 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1389 
     | 
    
         
            -
                  -  
     | 
| 
      
 1266 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1390 
1267 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1391 
1268 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1392 
1269 
     | 
    
         
             
                  Date:
         
     | 
| 
       1393 
     | 
    
         
            -
                  -  
     | 
| 
      
 1270 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:00 GMT
         
     | 
| 
       1394 
1271 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1395 
     | 
    
         
            -
                  - '"1341594749"'
         
     | 
| 
      
 1272 
     | 
    
         
            +
                  - ! '"1341594749"'
         
     | 
| 
       1396 
1273 
     | 
    
         
             
                  Server:
         
     | 
| 
       1397 
1274 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1398 
1275 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1402,8 +1279,8 @@ http_interactions: 
     | 
|
| 
       1402 
1279 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1403 
1280 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1404 
1281 
     | 
    
         
             
                body:
         
     | 
| 
       1405 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1406 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.874Z","credentials":{"district_username":"daneh67","district_password":"ahNap8Th"},"district":"4fd43cc56d11340000000005","dob":"8/24/2005","ell_status":"N","email":"h.dane@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.891Z","location":{"zip":"11356"},"name":{"first":"Dane","middle":"D","last":"Hackett"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"366931967","state_id":"450640906","student_number":"366931967","id":"530e5962049e75a9262d0161"},"uri":"/v1.1/students/530e5962049e75a9262d0161"},{"data":{"created":"2014-02-26T21:15:14.879Z","credentials":{"district_username":"paulk00","district_password":"uNgeh4Aeph"},"district":"4fd43cc56d11340000000005","dob":"10/24/2007","ell_status":"N","email":"paul_k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.894Z","location":{"zip":"10456"},"name":{"first":"Paul","middle":"B","last":"Kuvalis"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"367181500","state_id":"261028079","student_number":"367181500","id":"530e5962049e75a9262d0162"},"uri":"/v1.1/students/530e5962049e75a9262d0162"},{"data":{"created":"2014-02-26T21:15:14.887Z","credentials":{"district_username":"michaels05","district_password":"teez9Aegaij"},"district":"4fd43cc56d11340000000005","dob":"2/11/2000","ell_status":"Y","email":"michael_s@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.899Z","location":{"zip":"10467"},"name":{"first":"Michael","middle":"R","last":"Schroeder"},"race":"Black
         
     | 
| 
      
 1282 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1283 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.874Z","credentials":{"district_username":"daneh67","district_password":"ahNap8Th"},"district":"4fd43cc56d11340000000005","dob":"8/24/2005","ell_status":"N","email":"h.dane@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.891Z","location":{"zip":"11356"},"name":{"first":"Dane","middle":"D","last":"Hackett"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"366931967","state_id":"450640906","student_number":"366931967","id":"530e5962049e75a9262d0161"},"uri":"/v1.1/students/530e5962049e75a9262d0161"},{"data":{"created":"2014-02-26T21:15:14.879Z","credentials":{"district_username":"paulk00","district_password":"uNgeh4Aeph"},"district":"4fd43cc56d11340000000005","dob":"10/24/2007","ell_status":"N","email":"paul_k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.894Z","location":{"zip":"10456"},"name":{"first":"Paul","middle":"B","last":"Kuvalis"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"367181500","state_id":"261028079","student_number":"367181500","id":"530e5962049e75a9262d0162"},"uri":"/v1.1/students/530e5962049e75a9262d0162"},{"data":{"created":"2014-02-26T21:15:14.887Z","credentials":{"district_username":"michaels05","district_password":"teez9Aegaij"},"district":"4fd43cc56d11340000000005","dob":"2/11/2000","ell_status":"Y","email":"michael_s@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.899Z","location":{"zip":"10467"},"name":{"first":"Michael","middle":"R","last":"Schroeder"},"race":"Black
         
     | 
| 
       1407 
1284 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"367842305","state_id":"703845011","student_number":"367842305","id":"530e5962049e75a9262d0164"},"uri":"/v1.1/students/530e5962049e75a9262d0164"},{"data":{"created":"2014-02-26T21:15:14.898Z","credentials":{"district_username":"raymondk80","district_password":"Fuzae9tee"},"district":"4fd43cc56d11340000000005","dob":"5/17/2001","ell_status":"Y","email":"raymond_k@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.903Z","location":{"zip":"11366"},"name":{"first":"Raymond","middle":"J","last":"Koelpin"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"368203180","state_id":"697001925","student_number":"368203180","id":"530e5962049e75a9262d0168"},"uri":"/v1.1/students/530e5962049e75a9262d0168"},{"data":{"created":"2014-02-26T21:15:14.904Z","credentials":{"district_username":"catherined47","district_password":"liezae4aeRei"},"district":"4fd43cc56d11340000000005","dob":"12/26/2005","ell_status":"N","email":"d.catherine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.906Z","location":{"zip":"11377"},"name":{"first":"Catherine","middle":"J","last":"Dicki"},"race":"Black
         
     | 
| 
       1408 
1285 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"368912647","state_id":"246138918","student_number":"368912647","id":"530e5962049e75a9262d016a"},"uri":"/v1.1/students/530e5962049e75a9262d016a"},{"data":{"created":"2014-02-26T21:15:14.932Z","credentials":{"district_username":"danielp37","district_password":"aing5Shohqu"},"district":"4fd43cc56d11340000000005","dob":"8/25/1997","ell_status":"N","email":"p.daniel@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.910Z","location":{"zip":"11420"},"name":{"first":"Daniel","middle":"R","last":"Parisian"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"371718137","state_id":"842682232","student_number":"371718137","id":"530e5962049e75a9262d0172"},"uri":"/v1.1/students/530e5962049e75a9262d0172"},{"data":{"created":"2014-02-26T21:15:14.937Z","credentials":{"district_username":"marcusr72","district_password":"ooTutheul9ch"},"district":"4fd43cc56d11340000000005","dob":"8/7/1998","ell_status":"N","email":"marcus_r@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.915Z","location":{"zip":"10040"},"name":{"first":"Marcus","middle":"A","last":"Rohan"},"race":"Two
         
     | 
| 
       1409 
1286 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"371916672","state_id":"698928572","student_number":"371916672","id":"530e5962049e75a9262d0174"},"uri":"/v1.1/students/530e5962049e75a9262d0174"},{"data":{"created":"2014-02-26T21:15:14.943Z","credentials":{"district_username":"patriciab28","district_password":"see4Voosh3m"},"district":"4fd43cc56d11340000000005","dob":"7/13/1996","ell_status":"N","email":"patricia_b@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.919Z","location":{"zip":"11225"},"name":{"first":"Patricia","middle":"A","last":"Blick"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"373009928","state_id":"701151126","student_number":"373009928","id":"530e5962049e75a9262d0176"},"uri":"/v1.1/students/530e5962049e75a9262d0176"},{"data":{"created":"2014-02-26T21:15:14.967Z","credentials":{"district_username":"donnaw12","district_password":"xueb4Usaen"},"district":"4fd43cc56d11340000000005","dob":"1/10/1999","ell_status":"N","email":"donna_w@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.921Z","location":{"zip":"11367"},"name":{"first":"Donna","middle":"M","last":"Waelchi"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"375683812","state_id":"579726835","student_number":"375683812","id":"530e5962049e75a9262d017c"},"uri":"/v1.1/students/530e5962049e75a9262d017c"},{"data":{"created":"2014-02-26T21:15:14.989Z","credentials":{"district_username":"lisak17","district_password":"Nei5AhvieXee"},"district":"4fd43cc56d11340000000005","dob":"7/7/2002","ell_status":"N","email":"k.lisa@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.925Z","location":{"zip":"11413"},"name":{"first":"Lisa","middle":"B","last":"Kovacek"},"race":"Black
         
     | 
| 
         @@ -1440,7 +1317,7 @@ http_interactions: 
     | 
|
| 
       1440 
1317 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"406647418","state_id":"144054889","student_number":"406647418","id":"530e5963049e75a9262d01cd"},"uri":"/v1.1/students/530e5963049e75a9262d01cd"},{"data":{"created":"2014-02-26T21:15:15.301Z","credentials":{"district_username":"davidt49","district_password":"ahc5Ahmi4j"},"district":"4fd43cc56d11340000000005","dob":"10/10/2003","ell_status":"N","email":"t_david@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.091Z","location":{"zip":"10458"},"name":{"first":"David","middle":"P","last":"Treutel"},"race":"Two
         
     | 
| 
       1441 
1318 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"407098749","state_id":"250275588","student_number":"407098749","id":"530e5963049e75a9262d01ce"},"uri":"/v1.1/students/530e5963049e75a9262d01ce"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce"}]}'
         
     | 
| 
       1442 
1319 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1443 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1320 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:00 GMT
         
     | 
| 
       1444 
1321 
     | 
    
         
             
            - request:
         
     | 
| 
       1445 
1322 
     | 
    
         
             
                method: get
         
     | 
| 
       1446 
1323 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce
         
     | 
| 
         @@ -1449,7 +1326,7 @@ http_interactions: 
     | 
|
| 
       1449 
1326 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1450 
1327 
     | 
    
         
             
                headers:
         
     | 
| 
       1451 
1328 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1452 
     | 
    
         
            -
                  -  
     | 
| 
      
 1329 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1453 
1330 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1454 
1331 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1455 
1332 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1464,13 +1341,13 @@ http_interactions: 
     | 
|
| 
       1464 
1341 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1465 
1342 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1466 
1343 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1467 
     | 
    
         
            -
                  -  
     | 
| 
      
 1344 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1468 
1345 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1469 
1346 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1470 
1347 
     | 
    
         
             
                  Date:
         
     | 
| 
       1471 
     | 
    
         
            -
                  -  
     | 
| 
      
 1348 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:00 GMT
         
     | 
| 
       1472 
1349 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1473 
     | 
    
         
            -
                  - '"553412241"'
         
     | 
| 
      
 1350 
     | 
    
         
            +
                  - ! '"553412241"'
         
     | 
| 
       1474 
1351 
     | 
    
         
             
                  Server:
         
     | 
| 
       1475 
1352 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1476 
1353 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1480,8 +1357,8 @@ http_interactions: 
     | 
|
| 
       1480 
1357 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1481 
1358 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1482 
1359 
     | 
    
         
             
                body:
         
     | 
| 
       1483 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1484 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:15.306Z","credentials":{"district_username":"charlesm02","district_password":"ohTahchoo3ei"},"district":"4fd43cc56d11340000000005","dob":"9/8/2004","ell_status":"N","email":"m_charles@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.096Z","location":{"zip":"11413"},"name":{"first":"Charles","middle":"S","last":"Moen"},"race":"Black
         
     | 
| 
      
 1360 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1361 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:15.306Z","credentials":{"district_username":"charlesm02","district_password":"ohTahchoo3ei"},"district":"4fd43cc56d11340000000005","dob":"9/8/2004","ell_status":"N","email":"m_charles@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.096Z","location":{"zip":"11413"},"name":{"first":"Charles","middle":"S","last":"Moen"},"race":"Black
         
     | 
| 
       1485 
1362 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"407503302","state_id":"483822881","student_number":"407503302","id":"530e5963049e75a9262d01cf"},"uri":"/v1.1/students/530e5963049e75a9262d01cf"},{"data":{"created":"2014-02-26T21:15:15.310Z","credentials":{"district_username":"francesg36","district_password":"uic2shuZohbi"},"district":"4fd43cc56d11340000000005","dob":"2/26/1999","ell_status":"Y","email":"g_frances@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.100Z","location":{"zip":"10467"},"name":{"first":"Frances","middle":"J","last":"Gulgowski"},"race":"Black
         
     | 
| 
       1486 
1363 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"407607136","state_id":"254952218","student_number":"407607136","id":"530e5963049e75a9262d01d0"},"uri":"/v1.1/students/530e5963049e75a9262d01d0"},{"data":{"created":"2014-02-26T21:15:15.314Z","credentials":{"district_username":"patriciak82","district_password":"Ahng1geep0"},"district":"4fd43cc56d11340000000005","dob":"9/28/1999","ell_status":"N","email":"patricia_k@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.102Z","location":{"zip":"10027"},"name":{"first":"Patricia","middle":"E","last":"Kovacek"},"race":"Black
         
     | 
| 
       1487 
1364 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"407671682","state_id":"982748337","student_number":"407671682","id":"530e5963049e75a9262d01d1"},"uri":"/v1.1/students/530e5963049e75a9262d01d1"},{"data":{"created":"2014-02-26T21:15:15.318Z","credentials":{"district_username":"lynnq07","district_password":"ye8Iepech3"},"district":"4fd43cc56d11340000000005","dob":"11/8/1996","ell_status":"N","email":"lynn_q@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.106Z","location":{"zip":"11208"},"name":{"first":"Lynn","middle":"A","last":"Quigley"},"race":"Black
         
     | 
| 
         @@ -1517,7 +1394,7 @@ http_interactions: 
     | 
|
| 
       1517 
1394 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"443841431","state_id":"888501124","student_number":"443841431","id":"530e5963049e75a9262d0220"},"uri":"/v1.1/students/530e5963049e75a9262d0220"},{"data":{"created":"2014-02-26T21:15:15.683Z","credentials":{"district_username":"myrnaw92","district_password":"si7fuD3oh"},"district":"4fd43cc56d11340000000005","dob":"12/19/2006","ell_status":"Y","email":"w.myrna@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.288Z","location":{"zip":"10007"},"name":{"first":"Myrna","middle":"J","last":"Wilkinson"},"race":"Black
         
     | 
| 
       1518 
1395 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"447837192","state_id":"100034975","student_number":"447837192","id":"530e5963049e75a9262d0225"},"uri":"/v1.1/students/530e5963049e75a9262d0225"},{"data":{"created":"2014-02-26T21:15:15.691Z","credentials":{"district_username":"sharons28","district_password":"uo2eoL3aiZ"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"Y","email":"s_sharon@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.293Z","location":{"zip":"10309"},"name":{"first":"Sharon","middle":"R","last":"Schamberger"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"449269728","state_id":"870415736","student_number":"449269728","id":"530e5963049e75a9262d0227"},"uri":"/v1.1/students/530e5963049e75a9262d0227"},{"data":{"created":"2014-02-26T21:15:15.696Z","credentials":{"district_username":"christineh14","district_password":"aeWaib2ahs6"},"district":"4fd43cc56d11340000000005","dob":"11/13/1999","ell_status":"N","email":"christine.h@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.297Z","location":{"zip":"10466"},"name":{"first":"Christine","middle":"K","last":"Hoppe"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"450147614","state_id":"823859002","student_number":"450147614","id":"530e5963049e75a9262d0228"},"uri":"/v1.1/students/530e5963049e75a9262d0228"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d01ce"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5963049e75a9262d01cf"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228"}]}'
         
     | 
| 
       1519 
1396 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1520 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1397 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:00 GMT
         
     | 
| 
       1521 
1398 
     | 
    
         
             
            - request:
         
     | 
| 
       1522 
1399 
     | 
    
         
             
                method: get
         
     | 
| 
       1523 
1400 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228
         
     | 
| 
         @@ -1526,7 +1403,7 @@ http_interactions: 
     | 
|
| 
       1526 
1403 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1527 
1404 
     | 
    
         
             
                headers:
         
     | 
| 
       1528 
1405 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1529 
     | 
    
         
            -
                  -  
     | 
| 
      
 1406 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1530 
1407 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1531 
1408 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1532 
1409 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1541,13 +1418,13 @@ http_interactions: 
     | 
|
| 
       1541 
1418 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1542 
1419 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1543 
1420 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1544 
     | 
    
         
            -
                  -  
     | 
| 
      
 1421 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1545 
1422 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1546 
1423 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1547 
1424 
     | 
    
         
             
                  Date:
         
     | 
| 
       1548 
     | 
    
         
            -
                  -  
     | 
| 
      
 1425 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:01 GMT
         
     | 
| 
       1549 
1426 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1550 
     | 
    
         
            -
                  - '"2018449721"'
         
     | 
| 
      
 1427 
     | 
    
         
            +
                  - ! '"2018449721"'
         
     | 
| 
       1551 
1428 
     | 
    
         
             
                  Server:
         
     | 
| 
       1552 
1429 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1553 
1430 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1557,8 +1434,8 @@ http_interactions: 
     | 
|
| 
       1557 
1434 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1558 
1435 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1559 
1436 
     | 
    
         
             
                body:
         
     | 
| 
       1560 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1561 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:15.702Z","credentials":{"district_username":"williamc73","district_password":"zoo3wohX4oh"},"district":"4fd43cc56d11340000000005","dob":"7/9/1998","ell_status":"N","email":"c_william@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.299Z","location":{"zip":"10457"},"name":{"first":"William","middle":"S","last":"Collier"},"race":"Black
         
     | 
| 
      
 1437 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1438 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:15.702Z","credentials":{"district_username":"williamc73","district_password":"zoo3wohX4oh"},"district":"4fd43cc56d11340000000005","dob":"7/9/1998","ell_status":"N","email":"c_william@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.299Z","location":{"zip":"10457"},"name":{"first":"William","middle":"S","last":"Collier"},"race":"Black
         
     | 
| 
       1562 
1439 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"451126673","state_id":"926832658","student_number":"451126673","id":"530e5963049e75a9262d0229"},"uri":"/v1.1/students/530e5963049e75a9262d0229"},{"data":{"created":"2014-02-26T21:15:15.711Z","credentials":{"district_username":"paulm67","district_password":"ay8Oow9s"},"district":"4fd43cc56d11340000000005","dob":"3/11/2005","ell_status":"N","email":"paul.m@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.303Z","location":{"zip":"11230"},"name":{"first":"Paul","middle":"S","last":"Mante"},"race":"Black
         
     | 
| 
       1563 
1440 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"452145667","state_id":"525742133","student_number":"452145667","id":"530e5963049e75a9262d022a"},"uri":"/v1.1/students/530e5963049e75a9262d022a"},{"data":{"created":"2014-02-26T21:15:15.716Z","credentials":{"district_username":"julieb31","district_password":"kouVeiy3ie"},"district":"4fd43cc56d11340000000005","dob":"9/3/2002","ell_status":"N","email":"b.julie@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.308Z","location":{"zip":"11436"},"name":{"first":"Julie","middle":"B","last":"Bauch"},"race":"Black
         
     | 
| 
       1564 
1441 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"452734331","state_id":"253238572","student_number":"452734331","id":"530e5963049e75a9262d022b"},"uri":"/v1.1/students/530e5963049e75a9262d022b"},{"data":{"created":"2014-02-26T21:15:15.721Z","credentials":{"district_username":"theresak22","district_password":"rohNgoGe2"},"district":"4fd43cc56d11340000000005","dob":"3/6/1996","ell_status":"N","email":"theresa.k@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.312Z","location":{"zip":"10040"},"name":{"first":"Theresa","middle":"G","last":"Koch"},"race":"Black
         
     | 
| 
         @@ -1593,7 +1470,7 @@ http_interactions: 
     | 
|
| 
       1593 
1470 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"497063121","state_id":"572625208","student_number":"497063121","id":"530e5964049e75a9262d0280"},"uri":"/v1.1/students/530e5964049e75a9262d0280"},{"data":{"created":"2014-02-26T21:15:16.189Z","credentials":{"district_username":"patriciau09","district_password":"xeexie9Ah"},"district":"4fd43cc56d11340000000005","dob":"12/8/1996","ell_status":"N","email":"patricia.u@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.495Z","location":{"zip":"11233"},"name":{"first":"Patricia","middle":"D","last":"Upton"},"race":"Black
         
     | 
| 
       1594 
1471 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"497546809","state_id":"248483929","student_number":"497546809","id":"530e5964049e75a9262d0281"},"uri":"/v1.1/students/530e5964049e75a9262d0281"},{"data":{"created":"2014-02-26T21:15:16.195Z","credentials":{"district_username":"franklind35","district_password":"Otu6Geinah"},"district":"4fd43cc56d11340000000005","dob":"8/2/1997","ell_status":"N","email":"d_franklin@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.498Z","location":{"zip":"11693"},"name":{"first":"Franklin","middle":"D","last":"Daugherty"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"497595735","state_id":"904175015","student_number":"497595735","id":"530e5964049e75a9262d0282"},"uri":"/v1.1/students/530e5964049e75a9262d0282"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282"}]}'
         
     | 
| 
       1595 
1472 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1596 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1473 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:01 GMT
         
     | 
| 
       1597 
1474 
     | 
    
         
             
            - request:
         
     | 
| 
       1598 
1475 
     | 
    
         
             
                method: get
         
     | 
| 
       1599 
1476 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282
         
     | 
| 
         @@ -1602,7 +1479,7 @@ http_interactions: 
     | 
|
| 
       1602 
1479 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1603 
1480 
     | 
    
         
             
                headers:
         
     | 
| 
       1604 
1481 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1605 
     | 
    
         
            -
                  -  
     | 
| 
      
 1482 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1606 
1483 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1607 
1484 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1608 
1485 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1617,13 +1494,13 @@ http_interactions: 
     | 
|
| 
       1617 
1494 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1618 
1495 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1619 
1496 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1620 
     | 
    
         
            -
                  -  
     | 
| 
      
 1497 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1621 
1498 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1622 
1499 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1623 
1500 
     | 
    
         
             
                  Date:
         
     | 
| 
       1624 
     | 
    
         
            -
                  -  
     | 
| 
      
 1501 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:01 GMT
         
     | 
| 
       1625 
1502 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1626 
     | 
    
         
            -
                  - '"-217056092"'
         
     | 
| 
      
 1503 
     | 
    
         
            +
                  - ! '"-217056092"'
         
     | 
| 
       1627 
1504 
     | 
    
         
             
                  Server:
         
     | 
| 
       1628 
1505 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1629 
1506 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1633,8 +1510,8 @@ http_interactions: 
     | 
|
| 
       1633 
1510 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1634 
1511 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1635 
1512 
     | 
    
         
             
                body:
         
     | 
| 
       1636 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1637 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:16.205Z","credentials":{"district_username":"josephj58","district_password":"Ahseigae3"},"district":"4fd43cc56d11340000000005","dob":"12/15/1998","ell_status":"N","email":"j_joseph@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.502Z","location":{"zip":"10033"},"name":{"first":"Joseph","middle":"C","last":"Jerde"},"race":"American
         
     | 
| 
      
 1513 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1514 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:16.205Z","credentials":{"district_username":"josephj58","district_password":"Ahseigae3"},"district":"4fd43cc56d11340000000005","dob":"12/15/1998","ell_status":"N","email":"j_joseph@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.502Z","location":{"zip":"10033"},"name":{"first":"Joseph","middle":"C","last":"Jerde"},"race":"American
         
     | 
| 
       1638 
1515 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fd","sis_id":"499024258","state_id":"218641560","student_number":"499024258","id":"530e5964049e75a9262d0284"},"uri":"/v1.1/students/530e5964049e75a9262d0284"},{"data":{"created":"2014-02-26T21:15:16.213Z","credentials":{"district_username":"ericr51","district_password":"eeXohb9fee"},"district":"4fd43cc56d11340000000005","dob":"2/23/1997","ell_status":"N","email":"eric_r@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.507Z","location":{"zip":"11354"},"name":{"first":"Eric","middle":"A","last":"Rosenbaum"},"race":"Black
         
     | 
| 
       1639 
1516 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"499616051","state_id":"343682724","student_number":"499616051","id":"530e5964049e75a9262d0286"},"uri":"/v1.1/students/530e5964049e75a9262d0286"},{"data":{"created":"2014-02-26T21:15:16.220Z","credentials":{"district_username":"robertb47","district_password":"Hoh0fooXees"},"district":"4fd43cc56d11340000000005","dob":"5/15/1997","ell_status":"N","email":"b_robert@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.510Z","location":{"zip":"11208"},"name":{"first":"Robert","middle":"P","last":"Bartell"},"race":"Black
         
     | 
| 
       1640 
1517 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"499813947","state_id":"642575026","student_number":"499813947","id":"530e5964049e75a9262d0288"},"uri":"/v1.1/students/530e5964049e75a9262d0288"},{"data":{"created":"2014-02-26T21:15:16.232Z","credentials":{"district_username":"jonahw13","district_password":"Jien0ut0Pi1"},"district":"4fd43cc56d11340000000005","dob":"3/27/2003","ell_status":"N","email":"w_jonah@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.513Z","location":{"zip":"10464"},"name":{"first":"Jonah","middle":"P","last":"Welch"},"race":"Two
         
     | 
| 
         @@ -1669,7 +1546,7 @@ http_interactions: 
     | 
|
| 
       1669 
1546 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"534675808","state_id":"651155420","student_number":"534675808","id":"530e5964049e75a9262d02d9"},"uri":"/v1.1/students/530e5964049e75a9262d02d9"},{"data":{"created":"2014-02-26T21:15:16.705Z","credentials":{"district_username":"vivians08","district_password":"Quieze4sh"},"district":"4fd43cc56d11340000000005","dob":"2/27/2000","ell_status":"N","email":"s_vivian@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.690Z","location":{"zip":"11355"},"name":{"first":"Vivian","middle":"K","last":"Schaefer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"538539808","state_id":"195542681","student_number":"538539808","id":"530e5964049e75a9262d02de"},"uri":"/v1.1/students/530e5964049e75a9262d02de"},{"data":{"created":"2014-02-26T21:15:16.713Z","credentials":{"district_username":"williamf53","district_password":"ahng4Ceeth"},"district":"4fd43cc56d11340000000005","dob":"7/21/2003","ell_status":"Y","email":"william_f@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.694Z","location":{"zip":"11217"},"name":{"first":"William","middle":"M","last":"Franecki"},"race":"Two
         
     | 
| 
       1670 
1547 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"538754153","state_id":"287289543","student_number":"538754153","id":"530e5964049e75a9262d02e1"},"uri":"/v1.1/students/530e5964049e75a9262d02e1"},{"data":{"created":"2014-02-26T21:15:16.740Z","credentials":{"district_username":"dianen73","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"6/16/1996","ell_status":"N","email":"n_diane@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.697Z","location":{"zip":"11691"},"name":{"first":"Diane","middle":"J","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"541253373","state_id":"817987559","student_number":"541253373","id":"530e5964049e75a9262d02e7"},"uri":"/v1.1/students/530e5964049e75a9262d02e7"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d0282"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5964049e75a9262d0284"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7"}]}'
         
     | 
| 
       1671 
1548 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1672 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1549 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:01 GMT
         
     | 
| 
       1673 
1550 
     | 
    
         
             
            - request:
         
     | 
| 
       1674 
1551 
     | 
    
         
             
                method: get
         
     | 
| 
       1675 
1552 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7
         
     | 
| 
         @@ -1678,7 +1555,7 @@ http_interactions: 
     | 
|
| 
       1678 
1555 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1679 
1556 
     | 
    
         
             
                headers:
         
     | 
| 
       1680 
1557 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1681 
     | 
    
         
            -
                  -  
     | 
| 
      
 1558 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1682 
1559 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1683 
1560 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1684 
1561 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1693,13 +1570,13 @@ http_interactions: 
     | 
|
| 
       1693 
1570 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1694 
1571 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1695 
1572 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1696 
     | 
    
         
            -
                  -  
     | 
| 
      
 1573 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1697 
1574 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1698 
1575 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1699 
1576 
     | 
    
         
             
                  Date:
         
     | 
| 
       1700 
     | 
    
         
            -
                  -  
     | 
| 
      
 1577 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:02 GMT
         
     | 
| 
       1701 
1578 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1702 
     | 
    
         
            -
                  - '"54877912"'
         
     | 
| 
      
 1579 
     | 
    
         
            +
                  - ! '"54877912"'
         
     | 
| 
       1703 
1580 
     | 
    
         
             
                  Server:
         
     | 
| 
       1704 
1581 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1705 
1582 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1709,8 +1586,8 @@ http_interactions: 
     | 
|
| 
       1709 
1586 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1710 
1587 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1711 
1588 
     | 
    
         
             
                body:
         
     | 
| 
       1712 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1713 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:16.748Z","credentials":{"district_username":"alishal22","district_password":"oW6zahweMa"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"Y","email":"l_alisha@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.701Z","location":{"zip":"11211"},"name":{"first":"Alisha","middle":"M","last":"Lebsack"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"541697322","state_id":"163505690","student_number":"541697322","id":"530e5964049e75a9262d02e9"},"uri":"/v1.1/students/530e5964049e75a9262d02e9"},{"data":{"created":"2014-02-26T21:15:16.755Z","credentials":{"district_username":"nolad22","district_password":"veL3queiNg4k"},"district":"4fd43cc56d11340000000005","dob":"8/1/1996","ell_status":"N","email":"nola_d@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.706Z","location":{"zip":"10011"},"name":{"first":"Nola","middle":"D","last":"Douglas"},"race":"Two
         
     | 
| 
      
 1589 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1590 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:16.748Z","credentials":{"district_username":"alishal22","district_password":"oW6zahweMa"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"Y","email":"l_alisha@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.701Z","location":{"zip":"11211"},"name":{"first":"Alisha","middle":"M","last":"Lebsack"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"541697322","state_id":"163505690","student_number":"541697322","id":"530e5964049e75a9262d02e9"},"uri":"/v1.1/students/530e5964049e75a9262d02e9"},{"data":{"created":"2014-02-26T21:15:16.755Z","credentials":{"district_username":"nolad22","district_password":"veL3queiNg4k"},"district":"4fd43cc56d11340000000005","dob":"8/1/1996","ell_status":"N","email":"nola_d@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.706Z","location":{"zip":"10011"},"name":{"first":"Nola","middle":"D","last":"Douglas"},"race":"Two
         
     | 
| 
       1714 
1591 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"543793622","state_id":"634967954","student_number":"543793622","id":"530e5964049e75a9262d02eb"},"uri":"/v1.1/students/530e5964049e75a9262d02eb"},{"data":{"created":"2014-02-26T21:15:16.771Z","credentials":{"district_username":"weng93","district_password":"kiephee6Va"},"district":"4fd43cc56d11340000000005","dob":"2/11/1995","ell_status":"N","email":"wen_g@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.710Z","location":{"zip":"10020"},"name":{"first":"Wen","middle":"T","last":"Greenholt"},"race":"Two
         
     | 
| 
       1715 
1592 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"544765793","state_id":"771260413","student_number":"544765793","id":"530e5964049e75a9262d02ee"},"uri":"/v1.1/students/530e5964049e75a9262d02ee"},{"data":{"created":"2014-02-26T21:15:16.785Z","credentials":{"district_username":"kevinj39","district_password":"OoCo1oodoo"},"district":"4fd43cc56d11340000000005","dob":"3/5/2004","ell_status":"N","email":"j_kevin@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.712Z","location":{"zip":"11416"},"name":{"first":"Kevin","middle":"B","last":"Jast"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"545439039","state_id":"875008902","student_number":"545439039","id":"530e5964049e75a9262d02f1"},"uri":"/v1.1/students/530e5964049e75a9262d02f1"},{"data":{"created":"2014-02-26T21:15:16.794Z","credentials":{"district_username":"edithr77","district_password":"VoK1eBodoequ"},"district":"4fd43cc56d11340000000005","dob":"6/19/1998","ell_status":"N","email":"edith.r@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.716Z","location":{"zip":"10464"},"name":{"first":"Edith","middle":"D","last":"Rippin"},"race":"Two
         
     | 
| 
       1716 
1593 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"545463377","state_id":"460250108","student_number":"545463377","id":"530e5964049e75a9262d02f3"},"uri":"/v1.1/students/530e5964049e75a9262d02f3"},{"data":{"created":"2014-02-26T21:15:16.804Z","credentials":{"district_username":"patriciaf90","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","dob":"10/9/2001","ell_status":"N","email":"f_patricia@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.721Z","location":{"zip":"10017"},"name":{"first":"Patricia","middle":"B","last":"Fisher"},"race":"Two
         
     | 
| 
         @@ -1743,7 +1620,7 @@ http_interactions: 
     | 
|
| 
       1743 
1620 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9ff","sis_id":"582001873","state_id":"483980889","student_number":"582001873","id":"530e5965049e75a9262d0347"},"uri":"/v1.1/students/530e5965049e75a9262d0347"},{"data":{"created":"2014-02-26T21:15:17.302Z","credentials":{"district_username":"carries30","district_password":"ta4qua8E"},"district":"4fd43cc56d11340000000005","dob":"7/23/1995","ell_status":"N","email":"s_carrie@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.894Z","location":{"zip":"11221"},"name":{"first":"Carrie","middle":"R","last":"Stiedemann"},"race":"Two
         
     | 
| 
       1744 
1621 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"582823730","state_id":"950480385","student_number":"582823730","id":"530e5965049e75a9262d0349"},"uri":"/v1.1/students/530e5965049e75a9262d0349"},{"data":{"created":"2014-02-26T21:15:17.310Z","credentials":{"district_username":"jamesa02","district_password":"chaph8AhPh"},"district":"4fd43cc56d11340000000005","dob":"1/28/2000","ell_status":"Y","email":"a.james@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.897Z","location":{"zip":"11414"},"name":{"first":"James","middle":"L","last":"Ankunding"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"583471602","state_id":"377458919","student_number":"583471602","id":"530e5965049e75a9262d034a"},"uri":"/v1.1/students/530e5965049e75a9262d034a"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a"}]}'
         
     | 
| 
       1745 
1622 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1746 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1623 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:02 GMT
         
     | 
| 
       1747 
1624 
     | 
    
         
             
            - request:
         
     | 
| 
       1748 
1625 
     | 
    
         
             
                method: get
         
     | 
| 
       1749 
1626 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a
         
     | 
| 
         @@ -1752,7 +1629,7 @@ http_interactions: 
     | 
|
| 
       1752 
1629 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1753 
1630 
     | 
    
         
             
                headers:
         
     | 
| 
       1754 
1631 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1755 
     | 
    
         
            -
                  -  
     | 
| 
      
 1632 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1756 
1633 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1757 
1634 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1758 
1635 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1767,13 +1644,13 @@ http_interactions: 
     | 
|
| 
       1767 
1644 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1768 
1645 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1769 
1646 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1770 
     | 
    
         
            -
                  -  
     | 
| 
      
 1647 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1771 
1648 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1772 
1649 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1773 
1650 
     | 
    
         
             
                  Date:
         
     | 
| 
       1774 
     | 
    
         
            -
                  -  
     | 
| 
      
 1651 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:02 GMT
         
     | 
| 
       1775 
1652 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1776 
     | 
    
         
            -
                  - '"102126015"'
         
     | 
| 
      
 1653 
     | 
    
         
            +
                  - ! '"102126015"'
         
     | 
| 
       1777 
1654 
     | 
    
         
             
                  Server:
         
     | 
| 
       1778 
1655 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1779 
1656 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1783,8 +1660,8 @@ http_interactions: 
     | 
|
| 
       1783 
1660 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1784 
1661 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1785 
1662 
     | 
    
         
             
                body:
         
     | 
| 
       1786 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1787 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:17.315Z","credentials":{"district_username":"eliak92","district_password":"waikai2ooDee"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"elia.k@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.900Z","location":{"zip":"10002"},"name":{"first":"Elia","middle":"L","last":"Kirlin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"583594892","state_id":"636163091","student_number":"583594892","id":"530e5965049e75a9262d034b"},"uri":"/v1.1/students/530e5965049e75a9262d034b"},{"data":{"created":"2014-02-26T21:15:17.322Z","credentials":{"district_username":"maryr84","district_password":"Mequi5th"},"district":"4fd43cc56d11340000000005","dob":"9/23/2001","ell_status":"N","email":"mary.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.905Z","location":{"zip":"11220"},"name":{"first":"Mary","middle":"J","last":"Ratke"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"584583284","state_id":"980071123","student_number":"584583284","id":"530e5965049e75a9262d034c"},"uri":"/v1.1/students/530e5965049e75a9262d034c"},{"data":{"created":"2014-02-26T21:15:17.330Z","credentials":{"district_username":"katies53","district_password":"Moh6each0"},"district":"4fd43cc56d11340000000005","dob":"6/28/2005","ell_status":"N","email":"katie.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.910Z","location":{"zip":"10451"},"name":{"first":"Katie","middle":"C","last":"Sawayn"},"race":"Black
         
     | 
| 
      
 1663 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1664 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:17.315Z","credentials":{"district_username":"eliak92","district_password":"waikai2ooDee"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"elia.k@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.900Z","location":{"zip":"10002"},"name":{"first":"Elia","middle":"L","last":"Kirlin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"583594892","state_id":"636163091","student_number":"583594892","id":"530e5965049e75a9262d034b"},"uri":"/v1.1/students/530e5965049e75a9262d034b"},{"data":{"created":"2014-02-26T21:15:17.322Z","credentials":{"district_username":"maryr84","district_password":"Mequi5th"},"district":"4fd43cc56d11340000000005","dob":"9/23/2001","ell_status":"N","email":"mary.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.905Z","location":{"zip":"11220"},"name":{"first":"Mary","middle":"J","last":"Ratke"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"584583284","state_id":"980071123","student_number":"584583284","id":"530e5965049e75a9262d034c"},"uri":"/v1.1/students/530e5965049e75a9262d034c"},{"data":{"created":"2014-02-26T21:15:17.330Z","credentials":{"district_username":"katies53","district_password":"Moh6each0"},"district":"4fd43cc56d11340000000005","dob":"6/28/2005","ell_status":"N","email":"katie.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.910Z","location":{"zip":"10451"},"name":{"first":"Katie","middle":"C","last":"Sawayn"},"race":"Black
         
     | 
| 
       1788 
1665 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"585086153","state_id":"919677982","student_number":"585086153","id":"530e5965049e75a9262d034d"},"uri":"/v1.1/students/530e5965049e75a9262d034d"},{"data":{"created":"2014-02-26T21:15:17.339Z","credentials":{"district_username":"johnw23","district_password":"Eixae4Seex"},"district":"4fd43cc56d11340000000005","dob":"3/6/2002","ell_status":"Y","email":"john.w@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.912Z","location":{"zip":"10305"},"name":{"first":"John","middle":"A","last":"Weissnat"},"race":"Black
         
     | 
| 
       1789 
1666 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"586043323","state_id":"995957038","student_number":"586043323","id":"530e5965049e75a9262d034e"},"uri":"/v1.1/students/530e5965049e75a9262d034e"},{"data":{"created":"2014-02-26T21:15:17.352Z","credentials":{"district_username":"jamesr22","district_password":"aiWahxai1"},"district":"4fd43cc56d11340000000005","dob":"6/11/1998","ell_status":"Y","email":"r.james@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.916Z","location":{"zip":"11355"},"name":{"first":"James","middle":"K","last":"Rath"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"588043822","state_id":"606001649","student_number":"588043822","id":"530e5965049e75a9262d034f"},"uri":"/v1.1/students/530e5965049e75a9262d034f"},{"data":{"created":"2014-02-26T21:15:17.373Z","credentials":{"district_username":"jeremyl39","district_password":"Bahjaecee2"},"district":"4fd43cc56d11340000000005","dob":"4/17/2000","ell_status":"N","email":"l.jeremy@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.921Z","location":{"zip":"10036"},"name":{"first":"Jeremy","middle":"B","last":"Leannon"},"race":"Black
         
     | 
| 
       1790 
1667 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"589003639","state_id":"965061909","student_number":"589003639","id":"530e5965049e75a9262d0354"},"uri":"/v1.1/students/530e5965049e75a9262d0354"},{"data":{"created":"2014-02-26T21:15:17.380Z","credentials":{"district_username":"zacharyl08","district_password":"Mee7meiwah"},"district":"4fd43cc56d11340000000005","dob":"2/5/1999","ell_status":"Y","email":"l.zachary@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.925Z","location":{"zip":"10468"},"name":{"first":"Zachary","middle":"C","last":"Langosh"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"589205708","state_id":"335516305","student_number":"589205708","id":"530e5965049e75a9262d0356"},"uri":"/v1.1/students/530e5965049e75a9262d0356"},{"data":{"created":"2014-02-26T21:15:17.411Z","credentials":{"district_username":"patricias12","district_password":"Eigh1eiG4ob"},"district":"4fd43cc56d11340000000005","dob":"1/30/2005","ell_status":"N","email":"s_patricia@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.928Z","location":{"zip":"11229"},"name":{"first":"Patricia","middle":"B","last":"Swaniawski"},"race":"Two
         
     | 
| 
         @@ -1817,7 +1694,7 @@ http_interactions: 
     | 
|
| 
       1817 
1694 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"636094492","state_id":"187787907","student_number":"636094492","id":"530e5965049e75a9262d03b5"},"uri":"/v1.1/students/530e5965049e75a9262d03b5"},{"data":{"created":"2014-02-26T21:15:17.758Z","credentials":{"district_username":"marvink72","district_password":"XieC1pha0Aa"},"district":"4fd43cc56d11340000000005","dob":"7/29/1997","ell_status":"Y","email":"k.marvin@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.090Z","location":{"zip":"10033"},"name":{"first":"Marvin","middle":"R","last":"Kerluke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"636206672","state_id":"513617328","student_number":"636206672","id":"530e5965049e75a9262d03b6"},"uri":"/v1.1/students/530e5965049e75a9262d03b6"},{"data":{"created":"2014-02-26T21:15:17.764Z","credentials":{"district_username":"brandons01","district_password":"uuGhie5poo"},"district":"4fd43cc56d11340000000005","dob":"2/9/2001","ell_status":"Y","email":"s.brandon@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.095Z","location":{"zip":"10303"},"name":{"first":"Brandon","middle":"D","last":"Satterfield"},"race":"Black
         
     | 
| 
       1818 
1695 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"636675101","state_id":"341635613","student_number":"636675101","id":"530e5965049e75a9262d03b7"},"uri":"/v1.1/students/530e5965049e75a9262d03b7"},{"data":{"created":"2014-02-26T21:15:17.768Z","credentials":{"district_username":"bettyg52","district_password":"ahd1eiceeV"},"district":"4fd43cc56d11340000000005","dob":"8/21/1999","ell_status":"Y","email":"g_betty@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.099Z","location":{"zip":"10026"},"name":{"first":"Betty","middle":"A","last":"Graham"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"636776752","state_id":"694201438","student_number":"636776752","id":"530e5965049e75a9262d03b8"},"uri":"/v1.1/students/530e5965049e75a9262d03b8"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d034a"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5965049e75a9262d034b"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8"}]}'
         
     | 
| 
       1819 
1696 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1820 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1697 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:02 GMT
         
     | 
| 
       1821 
1698 
     | 
    
         
             
            - request:
         
     | 
| 
       1822 
1699 
     | 
    
         
             
                method: get
         
     | 
| 
       1823 
1700 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8
         
     | 
| 
         @@ -1826,7 +1703,7 @@ http_interactions: 
     | 
|
| 
       1826 
1703 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1827 
1704 
     | 
    
         
             
                headers:
         
     | 
| 
       1828 
1705 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1829 
     | 
    
         
            -
                  -  
     | 
| 
      
 1706 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1830 
1707 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1831 
1708 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1832 
1709 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1841,13 +1718,13 @@ http_interactions: 
     | 
|
| 
       1841 
1718 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1842 
1719 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1843 
1720 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1844 
     | 
    
         
            -
                  -  
     | 
| 
      
 1721 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1845 
1722 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1846 
1723 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1847 
1724 
     | 
    
         
             
                  Date:
         
     | 
| 
       1848 
     | 
    
         
            -
                  -  
     | 
| 
      
 1725 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:03 GMT
         
     | 
| 
       1849 
1726 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1850 
     | 
    
         
            -
                  - '"-1078273975"'
         
     | 
| 
      
 1727 
     | 
    
         
            +
                  - ! '"-1078273975"'
         
     | 
| 
       1851 
1728 
     | 
    
         
             
                  Server:
         
     | 
| 
       1852 
1729 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1853 
1730 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1857,8 +1734,8 @@ http_interactions: 
     | 
|
| 
       1857 
1734 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1858 
1735 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1859 
1736 
     | 
    
         
             
                body:
         
     | 
| 
       1860 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1861 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:17.772Z","credentials":{"district_username":"angelob49","district_password":"Ohch1ohz"},"district":"4fd43cc56d11340000000005","dob":"9/21/2007","ell_status":"N","email":"b_angelo@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.102Z","location":{"zip":"11420"},"name":{"first":"Angelo","middle":"S","last":"Bahringer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"637540249","state_id":"365082598","student_number":"637540249","id":"530e5965049e75a9262d03b9"},"uri":"/v1.1/students/530e5965049e75a9262d03b9"},{"data":{"created":"2014-02-26T21:15:17.777Z","credentials":{"district_username":"melanier81","district_password":"Kah9oc3ai"},"district":"4fd43cc56d11340000000005","dob":"9/7/2006","ell_status":"Y","email":"melanie.r@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.106Z","location":{"zip":"10456"},"name":{"first":"Melanie","middle":"A","last":"Ratke"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"638030981","state_id":"881624059","student_number":"638030981","id":"530e5965049e75a9262d03ba"},"uri":"/v1.1/students/530e5965049e75a9262d03ba"},{"data":{"created":"2014-02-26T21:15:17.781Z","credentials":{"district_username":"loish46","district_password":"Oa4beichoo"},"district":"4fd43cc56d11340000000005","dob":"4/25/1999","ell_status":"N","email":"lois.h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.111Z","location":{"zip":"10452"},"name":{"first":"Lois","middle":"J","last":"Hilll"},"race":"Black
         
     | 
| 
      
 1737 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1738 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:17.772Z","credentials":{"district_username":"angelob49","district_password":"Ohch1ohz"},"district":"4fd43cc56d11340000000005","dob":"9/21/2007","ell_status":"N","email":"b_angelo@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.102Z","location":{"zip":"11420"},"name":{"first":"Angelo","middle":"S","last":"Bahringer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"637540249","state_id":"365082598","student_number":"637540249","id":"530e5965049e75a9262d03b9"},"uri":"/v1.1/students/530e5965049e75a9262d03b9"},{"data":{"created":"2014-02-26T21:15:17.777Z","credentials":{"district_username":"melanier81","district_password":"Kah9oc3ai"},"district":"4fd43cc56d11340000000005","dob":"9/7/2006","ell_status":"Y","email":"melanie.r@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.106Z","location":{"zip":"10456"},"name":{"first":"Melanie","middle":"A","last":"Ratke"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"638030981","state_id":"881624059","student_number":"638030981","id":"530e5965049e75a9262d03ba"},"uri":"/v1.1/students/530e5965049e75a9262d03ba"},{"data":{"created":"2014-02-26T21:15:17.781Z","credentials":{"district_username":"loish46","district_password":"Oa4beichoo"},"district":"4fd43cc56d11340000000005","dob":"4/25/1999","ell_status":"N","email":"lois.h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.111Z","location":{"zip":"10452"},"name":{"first":"Lois","middle":"J","last":"Hilll"},"race":"Black
         
     | 
| 
       1862 
1739 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"638408446","state_id":"629208860","student_number":"638408446","id":"530e5965049e75a9262d03bb"},"uri":"/v1.1/students/530e5965049e75a9262d03bb"},{"data":{"created":"2014-02-26T21:15:17.789Z","credentials":{"district_username":"margarett11","district_password":"Ovaeh6iequei"},"district":"4fd43cc56d11340000000005","dob":"5/20/2000","ell_status":"Y","email":"t.margaret@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.115Z","location":{"zip":"11362"},"name":{"first":"Margaret","middle":"D","last":"Thompson"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"640506711","state_id":"351526569","student_number":"640506711","id":"530e5965049e75a9262d03bc"},"uri":"/v1.1/students/530e5965049e75a9262d03bc"},{"data":{"created":"2014-02-26T21:15:17.793Z","credentials":{"district_username":"harrym02","district_password":"aecohPai6ie"},"district":"4fd43cc56d11340000000005","dob":"1/15/2006","ell_status":"Y","email":"harry.m@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.118Z","location":{"zip":"11426"},"name":{"first":"Harry","middle":"C","last":"McKenzie"},"race":"Black
         
     | 
| 
       1863 
1740 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"640604402","state_id":"559167066","student_number":"640604402","id":"530e5965049e75a9262d03bd"},"uri":"/v1.1/students/530e5965049e75a9262d03bd"},{"data":{"created":"2014-02-26T21:15:17.797Z","credentials":{"district_username":"steveng14","district_password":"Aidoov5th"},"district":"4fd43cc56d11340000000005","dob":"7/6/2006","ell_status":"N","email":"steven_g@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.122Z","location":{"zip":"10030"},"name":{"first":"Steven","middle":"R","last":"Gorczany"},"race":"Black
         
     | 
| 
       1864 
1741 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"640688514","state_id":"794746208","student_number":"640688514","id":"530e5965049e75a9262d03be"},"uri":"/v1.1/students/530e5965049e75a9262d03be"},{"data":{"created":"2014-02-26T21:15:17.801Z","credentials":{"district_username":"margaretg13","district_password":"Ovaeh6iequei"},"district":"4fd43cc56d11340000000005","dob":"7/16/2007","ell_status":"N","email":"margaret_g@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.127Z","location":{"zip":"10035"},"name":{"first":"Margaret","middle":"D","last":"Grant"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"641257513","state_id":"840132452","student_number":"641257513","id":"530e5965049e75a9262d03bf"},"uri":"/v1.1/students/530e5965049e75a9262d03bf"},{"data":{"created":"2014-02-26T21:15:17.806Z","credentials":{"district_username":"williamp97","district_password":"howueSh7"},"district":"4fd43cc56d11340000000005","dob":"11/26/2007","ell_status":"N","email":"p_william@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.131Z","location":{"zip":"11104"},"name":{"first":"William","middle":"A","last":"Padberg"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"641458497","state_id":"859240327","student_number":"641458497","id":"530e5965049e75a9262d03c0"},"uri":"/v1.1/students/530e5965049e75a9262d03c0"},{"data":{"created":"2014-02-26T21:15:17.810Z","credentials":{"district_username":"brucel93","district_password":"IPh0gea9moh"},"district":"4fd43cc56d11340000000005","dob":"6/2/2004","ell_status":"Y","email":"l_bruce@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.134Z","location":{"zip":"11357"},"name":{"first":"Bruce","middle":"D","last":"Langworth"},"race":"Black
         
     | 
| 
         @@ -1892,7 +1769,7 @@ http_interactions: 
     | 
|
| 
       1892 
1769 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"674519152","state_id":"506308109","student_number":"674519152","id":"530e5966049e75a9262d040c"},"uri":"/v1.1/students/530e5966049e75a9262d040c"},{"data":{"created":"2014-02-26T21:15:18.130Z","credentials":{"district_username":"victoriag22","district_password":"Cibaexo8o"},"district":"4fd43cc56d11340000000005","dob":"5/10/1995","ell_status":"N","email":"g_victoria@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.310Z","location":{"zip":"10469"},"name":{"first":"Victoria","middle":"T","last":"Gerlach"},"race":"Two
         
     | 
| 
       1893 
1770 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"675767222","state_id":"714871884","student_number":"675767222","id":"530e5966049e75a9262d040f"},"uri":"/v1.1/students/530e5966049e75a9262d040f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f"}]}'
         
     | 
| 
       1894 
1771 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1895 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1772 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:03 GMT
         
     | 
| 
       1896 
1773 
     | 
    
         
             
            - request:
         
     | 
| 
       1897 
1774 
     | 
    
         
             
                method: get
         
     | 
| 
       1898 
1775 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f
         
     | 
| 
         @@ -1901,7 +1778,7 @@ http_interactions: 
     | 
|
| 
       1901 
1778 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1902 
1779 
     | 
    
         
             
                headers:
         
     | 
| 
       1903 
1780 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1904 
     | 
    
         
            -
                  -  
     | 
| 
      
 1781 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1905 
1782 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1906 
1783 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1907 
1784 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1916,13 +1793,13 @@ http_interactions: 
     | 
|
| 
       1916 
1793 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1917 
1794 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1918 
1795 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1919 
     | 
    
         
            -
                  -  
     | 
| 
      
 1796 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1920 
1797 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1921 
1798 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1922 
1799 
     | 
    
         
             
                  Date:
         
     | 
| 
       1923 
     | 
    
         
            -
                  -  
     | 
| 
      
 1800 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:03 GMT
         
     | 
| 
       1924 
1801 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1925 
     | 
    
         
            -
                  - '"-536236596"'
         
     | 
| 
      
 1802 
     | 
    
         
            +
                  - ! '"-536236596"'
         
     | 
| 
       1926 
1803 
     | 
    
         
             
                  Server:
         
     | 
| 
       1927 
1804 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1928 
1805 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1932,8 +1809,8 @@ http_interactions: 
     | 
|
| 
       1932 
1809 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1933 
1810 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1934 
1811 
     | 
    
         
             
                body:
         
     | 
| 
       1935 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1936 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:18.138Z","credentials":{"district_username":"arthurm55","district_password":"Oov8xee0sh"},"district":"4fd43cc56d11340000000005","dob":"12/28/2004","ell_status":"N","email":"arthur_m@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.315Z","location":{"zip":"10309"},"name":{"first":"Arthur","middle":"S","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"677001855","state_id":"383922738","student_number":"677001855","id":"530e5966049e75a9262d0412"},"uri":"/v1.1/students/530e5966049e75a9262d0412"},{"data":{"created":"2014-02-26T21:15:18.145Z","credentials":{"district_username":"samanthae38","district_password":"idahl2Eiw"},"district":"4fd43cc56d11340000000005","dob":"9/22/1999","ell_status":"N","email":"e_samantha@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.319Z","location":{"zip":"11691"},"name":{"first":"Samantha","middle":"S","last":"Effertz"},"race":"Two
         
     | 
| 
      
 1812 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1813 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:18.138Z","credentials":{"district_username":"arthurm55","district_password":"Oov8xee0sh"},"district":"4fd43cc56d11340000000005","dob":"12/28/2004","ell_status":"N","email":"arthur_m@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.315Z","location":{"zip":"10309"},"name":{"first":"Arthur","middle":"S","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"677001855","state_id":"383922738","student_number":"677001855","id":"530e5966049e75a9262d0412"},"uri":"/v1.1/students/530e5966049e75a9262d0412"},{"data":{"created":"2014-02-26T21:15:18.145Z","credentials":{"district_username":"samanthae38","district_password":"idahl2Eiw"},"district":"4fd43cc56d11340000000005","dob":"9/22/1999","ell_status":"N","email":"e_samantha@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.319Z","location":{"zip":"11691"},"name":{"first":"Samantha","middle":"S","last":"Effertz"},"race":"Two
         
     | 
| 
       1937 
1814 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"678117438","state_id":"543168528","student_number":"678117438","id":"530e5966049e75a9262d0414"},"uri":"/v1.1/students/530e5966049e75a9262d0414"},{"data":{"created":"2014-02-26T21:15:18.150Z","credentials":{"district_username":"eugenew90","district_password":"Oke5doog"},"district":"4fd43cc56d11340000000005","dob":"3/2/2004","ell_status":"N","email":"eugene_w@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.321Z","location":{"zip":"10024"},"name":{"first":"Eugene","middle":"R","last":"Weber"},"race":"Two
         
     | 
| 
       1938 
1815 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"678199190","state_id":"119778058","student_number":"678199190","id":"530e5966049e75a9262d0415"},"uri":"/v1.1/students/530e5966049e75a9262d0415"},{"data":{"created":"2014-02-26T21:15:18.153Z","credentials":{"district_username":"maries76","district_password":"rah9RahThi"},"district":"4fd43cc56d11340000000005","dob":"11/17/1996","ell_status":"Y","email":"s_marie@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.325Z","location":{"zip":"10309"},"name":{"first":"Marie","middle":"D","last":"Streich"},"race":"Black
         
     | 
| 
       1939 
1816 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"678327576","state_id":"990717624","student_number":"678327576","id":"530e5966049e75a9262d0416"},"uri":"/v1.1/students/530e5966049e75a9262d0416"},{"data":{"created":"2014-02-26T21:15:18.157Z","credentials":{"district_username":"dona97","district_password":"eewizoo3U"},"district":"4fd43cc56d11340000000005","dob":"3/11/2000","ell_status":"Y","email":"don.a@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.330Z","location":{"zip":"10014"},"name":{"first":"Don","middle":"M","last":"Ankunding"},"race":"Black
         
     | 
| 
         @@ -1965,7 +1842,7 @@ http_interactions: 
     | 
|
| 
       1965 
1842 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"727160681","state_id":"381222631","student_number":"727160681","id":"530e5966049e75a9262d046b"},"uri":"/v1.1/students/530e5966049e75a9262d046b"},{"data":{"created":"2014-02-26T21:15:18.511Z","credentials":{"district_username":"chesterw93","district_password":"co5Eepohng"},"district":"4fd43cc56d11340000000005","dob":"11/15/1998","ell_status":"Y","email":"w_chester@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.513Z","location":{"zip":"11233"},"name":{"first":"Chester","middle":"R","last":"Watsica"},"race":"Black
         
     | 
| 
       1966 
1843 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"728386393","state_id":"921766728","student_number":"728386393","id":"530e5966049e75a9262d046c"},"uri":"/v1.1/students/530e5966049e75a9262d046c"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d040f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d0412"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c"}]}'
         
     | 
| 
       1967 
1844 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1968 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1845 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:03 GMT
         
     | 
| 
       1969 
1846 
     | 
    
         
             
            - request:
         
     | 
| 
       1970 
1847 
     | 
    
         
             
                method: get
         
     | 
| 
       1971 
1848 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c
         
     | 
| 
         @@ -1974,7 +1851,7 @@ http_interactions: 
     | 
|
| 
       1974 
1851 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1975 
1852 
     | 
    
         
             
                headers:
         
     | 
| 
       1976 
1853 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1977 
     | 
    
         
            -
                  -  
     | 
| 
      
 1854 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1978 
1855 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1979 
1856 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1980 
1857 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1989,13 +1866,13 @@ http_interactions: 
     | 
|
| 
       1989 
1866 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1990 
1867 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1991 
1868 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1992 
     | 
    
         
            -
                  -  
     | 
| 
      
 1869 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1993 
1870 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1994 
1871 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1995 
1872 
     | 
    
         
             
                  Date:
         
     | 
| 
       1996 
     | 
    
         
            -
                  -  
     | 
| 
      
 1873 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       1997 
1874 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1998 
     | 
    
         
            -
                  - '"2113491514"'
         
     | 
| 
      
 1875 
     | 
    
         
            +
                  - ! '"2113491514"'
         
     | 
| 
       1999 
1876 
     | 
    
         
             
                  Server:
         
     | 
| 
       2000 
1877 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2001 
1878 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2005,8 +1882,8 @@ http_interactions: 
     | 
|
| 
       2005 
1882 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2006 
1883 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2007 
1884 
     | 
    
         
             
                body:
         
     | 
| 
       2008 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2009 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:18.516Z","credentials":{"district_username":"jeano59","district_password":"Eties4aechei"},"district":"4fd43cc56d11340000000005","dob":"7/2/2000","ell_status":"N","email":"o_jean@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.517Z","location":{"zip":"10461"},"name":{"first":"Jean","middle":"D","last":"Orn"},"race":"Black
         
     | 
| 
      
 1885 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1886 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:18.516Z","credentials":{"district_username":"jeano59","district_password":"Eties4aechei"},"district":"4fd43cc56d11340000000005","dob":"7/2/2000","ell_status":"N","email":"o_jean@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.517Z","location":{"zip":"10461"},"name":{"first":"Jean","middle":"D","last":"Orn"},"race":"Black
         
     | 
| 
       2010 
1887 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"728480959","state_id":"908755769","student_number":"728480959","id":"530e5966049e75a9262d046d"},"uri":"/v1.1/students/530e5966049e75a9262d046d"},{"data":{"created":"2014-02-26T21:15:18.522Z","credentials":{"district_username":"douglask74","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/21/1996","ell_status":"N","email":"douglas.k@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.519Z","location":{"zip":"11233"},"name":{"first":"Douglas","middle":"S","last":"Kessler"},"race":"Black
         
     | 
| 
       2011 
1888 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"728614874","state_id":"810223648","student_number":"728614874","id":"530e5966049e75a9262d046e"},"uri":"/v1.1/students/530e5966049e75a9262d046e"},{"data":{"created":"2014-02-26T21:15:18.527Z","credentials":{"district_username":"michaels98","district_password":"xi9Vu1qu"},"district":"4fd43cc56d11340000000005","dob":"9/16/2006","ell_status":"N","email":"s.michael@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.523Z","location":{"zip":"10474"},"name":{"first":"Michael","middle":"B","last":"Stamm"},"race":"Two
         
     | 
| 
       2012 
1889 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"729561298","state_id":"517970964","student_number":"729561298","id":"530e5966049e75a9262d046f"},"uri":"/v1.1/students/530e5966049e75a9262d046f"},{"data":{"created":"2014-02-26T21:15:18.544Z","credentials":{"district_username":"laceyl96","district_password":"Ebae9aihai"},"district":"4fd43cc56d11340000000005","dob":"10/18/2002","ell_status":"N","email":"lacey_l@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.528Z","location":{"zip":"10128"},"name":{"first":"Lacey","middle":"S","last":"Ledner"},"race":"Black
         
     | 
| 
         @@ -2042,7 +1919,7 @@ http_interactions: 
     | 
|
| 
       2042 
1919 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"768666664","state_id":"544947371","student_number":"768666664","id":"530e5966049e75a9262d04d5"},"uri":"/v1.1/students/530e5966049e75a9262d04d5"},{"data":{"created":"2014-02-26T21:15:18.952Z","credentials":{"district_username":"roccos84","district_password":"rairaSh7p"},"district":"4fd43cc56d11340000000005","dob":"8/2/1998","ell_status":"N","email":"rocco.s@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.703Z","location":{"zip":"10014"},"name":{"first":"Rocco","middle":"A","last":"Schumm"},"race":"Black
         
     | 
| 
       2043 
1920 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"768841884","state_id":"239367560","student_number":"768841884","id":"530e5966049e75a9262d04d7"},"uri":"/v1.1/students/530e5966049e75a9262d04d7"},{"data":{"created":"2014-02-26T21:15:18.968Z","credentials":{"district_username":"quentinf79","district_password":"fohV1oos9Ee"},"district":"4fd43cc56d11340000000005","dob":"3/30/1996","ell_status":"Y","email":"quentin.f@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.706Z","location":{"zip":"11412"},"name":{"first":"Quentin","middle":"C","last":"Feil"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"773959679","state_id":"500526668","student_number":"773959679","id":"530e5966049e75a9262d04d8"},"uri":"/v1.1/students/530e5966049e75a9262d04d8"},{"data":{"created":"2014-02-26T21:15:18.986Z","credentials":{"district_username":"leighh62","district_password":"Eiw2yah6"},"district":"4fd43cc56d11340000000005","dob":"6/3/2000","ell_status":"N","email":"h_leigh@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.710Z","location":{"zip":"11234"},"name":{"first":"Leigh","middle":"M","last":"Hilll"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775530462","state_id":"720424076","student_number":"775530462","id":"530e5966049e75a9262d04d9"},"uri":"/v1.1/students/530e5966049e75a9262d04d9"},{"data":{"created":"2014-02-26T21:15:18.992Z","credentials":{"district_username":"lorad80","district_password":"looy6Huaghae"},"district":"4fd43cc56d11340000000005","dob":"7/4/2003","ell_status":"N","email":"lora_d@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.715Z","location":{"zip":"11213"},"name":{"first":"Lora","middle":"C","last":"Dicki"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"775672580","state_id":"510806650","student_number":"775672580","id":"530e5966049e75a9262d04da"},"uri":"/v1.1/students/530e5966049e75a9262d04da"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da"}]}'
         
     | 
| 
       2044 
1921 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2045 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1922 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       2046 
1923 
     | 
    
         
             
            - request:
         
     | 
| 
       2047 
1924 
     | 
    
         
             
                method: get
         
     | 
| 
       2048 
1925 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da
         
     | 
| 
         @@ -2051,7 +1928,7 @@ http_interactions: 
     | 
|
| 
       2051 
1928 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2052 
1929 
     | 
    
         
             
                headers:
         
     | 
| 
       2053 
1930 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2054 
     | 
    
         
            -
                  -  
     | 
| 
      
 1931 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2055 
1932 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2056 
1933 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2057 
1934 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2066,13 +1943,13 @@ http_interactions: 
     | 
|
| 
       2066 
1943 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2067 
1944 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2068 
1945 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2069 
     | 
    
         
            -
                  -  
     | 
| 
      
 1946 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2070 
1947 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2071 
1948 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2072 
1949 
     | 
    
         
             
                  Date:
         
     | 
| 
       2073 
     | 
    
         
            -
                  -  
     | 
| 
      
 1950 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       2074 
1951 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2075 
     | 
    
         
            -
                  - '"1079310895"'
         
     | 
| 
      
 1952 
     | 
    
         
            +
                  - ! '"1079310895"'
         
     | 
| 
       2076 
1953 
     | 
    
         
             
                  Server:
         
     | 
| 
       2077 
1954 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2078 
1955 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2082,8 +1959,8 @@ http_interactions: 
     | 
|
| 
       2082 
1959 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2083 
1960 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2084 
1961 
     | 
    
         
             
                body:
         
     | 
| 
       2085 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2086 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:18.997Z","credentials":{"district_username":"johnb09","district_password":"Roo1eN8ae"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"N","email":"b.john@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.719Z","location":{"zip":"10014"},"name":{"first":"John","middle":"G","last":"Boehm"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775768409","state_id":"760142266","student_number":"775768409","id":"530e5966049e75a9262d04db"},"uri":"/v1.1/students/530e5966049e75a9262d04db"},{"data":{"created":"2014-02-26T21:15:19.008Z","credentials":{"district_username":"williamr59","district_password":"ohHeic1mahv"},"district":"4fd43cc56d11340000000005","dob":"7/26/2001","ell_status":"Y","email":"william.r@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.721Z","location":{"zip":"10031"},"name":{"first":"William","middle":"M","last":"Reynolds"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"777529959","state_id":"278532298","student_number":"777529959","id":"530e5967049e75a9262d04df"},"uri":"/v1.1/students/530e5967049e75a9262d04df"},{"data":{"created":"2014-02-26T21:15:19.022Z","credentials":{"district_username":"andrewt54","district_password":"Aipee9ahvo3"},"district":"4fd43cc56d11340000000005","dob":"10/1/2003","ell_status":"N","email":"t.andrew@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.725Z","location":{"zip":"10472"},"name":{"first":"Andrew","middle":"E","last":"Terry"},"race":"Two
         
     | 
| 
      
 1962 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1963 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:18.997Z","credentials":{"district_username":"johnb09","district_password":"Roo1eN8ae"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"N","email":"b.john@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.719Z","location":{"zip":"10014"},"name":{"first":"John","middle":"G","last":"Boehm"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775768409","state_id":"760142266","student_number":"775768409","id":"530e5966049e75a9262d04db"},"uri":"/v1.1/students/530e5966049e75a9262d04db"},{"data":{"created":"2014-02-26T21:15:19.008Z","credentials":{"district_username":"williamr59","district_password":"ohHeic1mahv"},"district":"4fd43cc56d11340000000005","dob":"7/26/2001","ell_status":"Y","email":"william.r@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.721Z","location":{"zip":"10031"},"name":{"first":"William","middle":"M","last":"Reynolds"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"777529959","state_id":"278532298","student_number":"777529959","id":"530e5967049e75a9262d04df"},"uri":"/v1.1/students/530e5967049e75a9262d04df"},{"data":{"created":"2014-02-26T21:15:19.022Z","credentials":{"district_username":"andrewt54","district_password":"Aipee9ahvo3"},"district":"4fd43cc56d11340000000005","dob":"10/1/2003","ell_status":"N","email":"t.andrew@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.725Z","location":{"zip":"10472"},"name":{"first":"Andrew","middle":"E","last":"Terry"},"race":"Two
         
     | 
| 
       2087 
1964 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"779373354","state_id":"180221610","student_number":"779373354","id":"530e5967049e75a9262d04e4"},"uri":"/v1.1/students/530e5967049e75a9262d04e4"},{"data":{"created":"2014-02-26T21:15:19.030Z","credentials":{"district_username":"samr86","district_password":"ahch1Eip"},"district":"4fd43cc56d11340000000005","dob":"1/1/1999","ell_status":"Y","email":"sam.r@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.730Z","location":{"zip":"10457"},"name":{"first":"Sam","middle":"M","last":"Ryan"},"race":"Two
         
     | 
| 
       2088 
1965 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"779700486","state_id":"504584642","student_number":"779700486","id":"530e5967049e75a9262d04e6"},"uri":"/v1.1/students/530e5967049e75a9262d04e6"},{"data":{"created":"2014-02-26T21:15:19.037Z","credentials":{"district_username":"kimberlyh85","district_password":"aed1Zaich"},"district":"4fd43cc56d11340000000005","dob":"11/30/2000","ell_status":"Y","email":"h_kimberly@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.734Z","location":{"zip":"11206"},"name":{"first":"Kimberly","middle":"J","last":"Hand"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"780286785","state_id":"420650673","student_number":"780286785","id":"530e5967049e75a9262d04e9"},"uri":"/v1.1/students/530e5967049e75a9262d04e9"},{"data":{"created":"2014-02-26T21:15:19.043Z","credentials":{"district_username":"royh69","district_password":"iegh2yieT"},"district":"4fd43cc56d11340000000005","dob":"5/12/1999","ell_status":"Y","email":"h_roy@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.737Z","location":{"zip":"10306"},"name":{"first":"Roy","middle":"J","last":"Hammes"},"race":"Black
         
     | 
| 
       2089 
1966 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"780341469","state_id":"988247892","student_number":"780341469","id":"530e5967049e75a9262d04eb"},"uri":"/v1.1/students/530e5967049e75a9262d04eb"},{"data":{"created":"2014-02-26T21:15:19.050Z","credentials":{"district_username":"emilyl00","district_password":"aiCheeke3qu"},"district":"4fd43cc56d11340000000005","dob":"2/12/2005","ell_status":"N","email":"emily.l@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.741Z","location":{"zip":"10312"},"name":{"first":"Emily","middle":"C","last":"Leffler"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"780624800","state_id":"784327598","student_number":"780624800","id":"530e5967049e75a9262d04ee"},"uri":"/v1.1/students/530e5967049e75a9262d04ee"},{"data":{"created":"2014-02-26T21:15:19.056Z","credentials":{"district_username":"kurto32","district_password":"Aingi9bo"},"district":"4fd43cc56d11340000000005","dob":"12/8/2002","ell_status":"Y","email":"o_kurt@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.746Z","location":{"zip":"10465"},"name":{"first":"Kurt","middle":"J","last":"Ondricka"},"race":"Two
         
     | 
| 
         @@ -2119,7 +1996,7 @@ http_interactions: 
     | 
|
| 
       2119 
1996 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"819021071","state_id":"575688366","student_number":"819021071","id":"530e5967049e75a9262d054d"},"uri":"/v1.1/students/530e5967049e75a9262d054d"},{"data":{"created":"2014-02-26T21:15:19.474Z","credentials":{"district_username":"edwarde77","district_password":"wo4thoep4AB"},"district":"4fd43cc56d11340000000005","dob":"2/25/2003","ell_status":"N","email":"e.edward@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.927Z","location":{"zip":"11210"},"name":{"first":"Edward","middle":"M","last":"Emard"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"821986877","state_id":"279178317","student_number":"821986877","id":"530e5967049e75a9262d0553"},"uri":"/v1.1/students/530e5967049e75a9262d0553"},{"data":{"created":"2014-02-26T21:15:19.485Z","credentials":{"district_username":"samuelo65","district_password":"fai9ahYoo"},"district":"4fd43cc56d11340000000005","dob":"8/4/2005","ell_status":"N","email":"o.samuel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.929Z","location":{"zip":"10010"},"name":{"first":"Samuel","middle":"B","last":"O''Keefe"},"race":"Black
         
     | 
| 
       2120 
1997 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"822547765","state_id":"966505139","student_number":"822547765","id":"530e5967049e75a9262d0557"},"uri":"/v1.1/students/530e5967049e75a9262d0557"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5966049e75a9262d04da"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5966049e75a9262d04db"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557"}]}'
         
     | 
| 
       2121 
1998 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2122 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1999 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       2123 
2000 
     | 
    
         
             
            - request:
         
     | 
| 
       2124 
2001 
     | 
    
         
             
                method: get
         
     | 
| 
       2125 
2002 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557
         
     | 
| 
         @@ -2128,7 +2005,7 @@ http_interactions: 
     | 
|
| 
       2128 
2005 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2129 
2006 
     | 
    
         
             
                headers:
         
     | 
| 
       2130 
2007 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2131 
     | 
    
         
            -
                  -  
     | 
| 
      
 2008 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2132 
2009 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2133 
2010 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2134 
2011 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2143,13 +2020,13 @@ http_interactions: 
     | 
|
| 
       2143 
2020 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2144 
2021 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2145 
2022 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2146 
     | 
    
         
            -
                  -  
     | 
| 
      
 2023 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2147 
2024 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2148 
2025 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2149 
2026 
     | 
    
         
             
                  Date:
         
     | 
| 
       2150 
     | 
    
         
            -
                  -  
     | 
| 
      
 2027 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       2151 
2028 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2152 
     | 
    
         
            -
                  - '"-1747551844"'
         
     | 
| 
      
 2029 
     | 
    
         
            +
                  - ! '"-1747551844"'
         
     | 
| 
       2153 
2030 
     | 
    
         
             
                  Server:
         
     | 
| 
       2154 
2031 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2155 
2032 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2159,8 +2036,8 @@ http_interactions: 
     | 
|
| 
       2159 
2036 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2160 
2037 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2161 
2038 
     | 
    
         
             
                body:
         
     | 
| 
       2162 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2163 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:19.491Z","credentials":{"district_username":"reginad73","district_password":"PieDe8ae"},"district":"4fd43cc56d11340000000005","dob":"1/12/2003","ell_status":"Y","email":"regina.d@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.933Z","location":{"zip":"11433"},"name":{"first":"Regina","middle":"E","last":"Dietrich"},"race":"Two
         
     | 
| 
      
 2039 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 2040 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:19.491Z","credentials":{"district_username":"reginad73","district_password":"PieDe8ae"},"district":"4fd43cc56d11340000000005","dob":"1/12/2003","ell_status":"Y","email":"regina.d@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.933Z","location":{"zip":"11433"},"name":{"first":"Regina","middle":"E","last":"Dietrich"},"race":"Two
         
     | 
| 
       2164 
2041 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"822907373","state_id":"717470447","student_number":"822907373","id":"530e5967049e75a9262d0559"},"uri":"/v1.1/students/530e5967049e75a9262d0559"},{"data":{"created":"2014-02-26T21:15:19.496Z","credentials":{"district_username":"cheriek67","district_password":"ahToh2ahngi"},"district":"4fd43cc56d11340000000005","dob":"11/8/2001","ell_status":"N","email":"k.cherie@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.938Z","location":{"zip":"10472"},"name":{"first":"Cherie","middle":"C","last":"Kohler"},"race":"Black
         
     | 
| 
       2165 
2042 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"824912367","state_id":"602405063","student_number":"824912367","id":"530e5967049e75a9262d055b"},"uri":"/v1.1/students/530e5967049e75a9262d055b"},{"data":{"created":"2014-02-26T21:15:19.502Z","credentials":{"district_username":"bettya04","district_password":"xu3zooLai"},"district":"4fd43cc56d11340000000005","dob":"9/3/2002","ell_status":"Y","email":"a.betty@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.942Z","location":{"zip":"11693"},"name":{"first":"Betty","middle":"R","last":"Abshire"},"race":"Black
         
     | 
| 
       2166 
2043 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"825221604","state_id":"903008252","student_number":"825221604","id":"530e5967049e75a9262d055d"},"uri":"/v1.1/students/530e5967049e75a9262d055d"},{"data":{"created":"2014-02-26T21:15:19.511Z","credentials":{"district_username":"freddief21","district_password":"juu1eiXae"},"district":"4fd43cc56d11340000000005","dob":"9/11/2000","ell_status":"N","email":"f.freddie@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.945Z","location":{"zip":"10004"},"name":{"first":"Freddie","middle":"J","last":"Funk"},"race":"Black
         
     | 
| 
         @@ -2194,7 +2071,7 @@ http_interactions: 
     | 
|
| 
       2194 
2071 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"865434690","state_id":"987022429","student_number":"865434690","id":"530e5967049e75a9262d05ad"},"uri":"/v1.1/students/530e5967049e75a9262d05ad"},{"data":{"created":"2014-02-26T21:15:19.844Z","credentials":{"district_username":"tonyah94","district_password":"Bo1oa2tah"},"district":"4fd43cc56d11340000000005","dob":"7/31/2001","ell_status":"Y","email":"tonya_h@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.119Z","location":{"zip":"11101"},"name":{"first":"Tonya","middle":"T","last":"Hammes"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"865828594","state_id":"468226764","student_number":"865828594","id":"530e5967049e75a9262d05ae"},"uri":"/v1.1/students/530e5967049e75a9262d05ae"},{"data":{"created":"2014-02-26T21:15:19.856Z","credentials":{"district_username":"paulb39","district_password":"bu7iVaiNgaph"},"district":"4fd43cc56d11340000000005","dob":"9/15/1999","ell_status":"N","email":"paul.b@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.123Z","location":{"zip":"10461"},"name":{"first":"Paul","middle":"E","last":"Bergnaum"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"868997339","state_id":"259925233","student_number":"868997339","id":"530e5967049e75a9262d05af"},"uri":"/v1.1/students/530e5967049e75a9262d05af"},{"data":{"created":"2014-02-26T21:15:19.863Z","credentials":{"district_username":"lulab78","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"6/7/2000","ell_status":"N","email":"lula_b@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.128Z","location":{"zip":"10309"},"name":{"first":"Lula","middle":"R","last":"Bode"},"race":"American
         
     | 
| 
       2195 
2072 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9ff","sis_id":"870605578","state_id":"296193871","student_number":"870605578","id":"530e5967049e75a9262d05b0"},"uri":"/v1.1/students/530e5967049e75a9262d05b0"},{"data":{"created":"2014-02-26T21:15:19.868Z","credentials":{"district_username":"jasonw13","district_password":"taemee1Ta"},"district":"4fd43cc56d11340000000005","dob":"5/10/2002","ell_status":"N","email":"w_jason@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.132Z","location":{"zip":"11238"},"name":{"first":"Jason","middle":"J","last":"Wilderman"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"870661913","state_id":"503680014","student_number":"870661913","id":"530e5967049e75a9262d05b1"},"uri":"/v1.1/students/530e5967049e75a9262d05b1"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1"}]}'
         
     | 
| 
       2196 
2073 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2197 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 2074 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:04 GMT
         
     | 
| 
       2198 
2075 
     | 
    
         
             
            - request:
         
     | 
| 
       2199 
2076 
     | 
    
         
             
                method: get
         
     | 
| 
       2200 
2077 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1
         
     | 
| 
         @@ -2203,7 +2080,7 @@ http_interactions: 
     | 
|
| 
       2203 
2080 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2204 
2081 
     | 
    
         
             
                headers:
         
     | 
| 
       2205 
2082 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2206 
     | 
    
         
            -
                  -  
     | 
| 
      
 2083 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2207 
2084 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2208 
2085 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2209 
2086 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2218,13 +2095,13 @@ http_interactions: 
     | 
|
| 
       2218 
2095 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2219 
2096 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2220 
2097 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2221 
     | 
    
         
            -
                  -  
     | 
| 
      
 2098 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2222 
2099 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2223 
2100 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2224 
2101 
     | 
    
         
             
                  Date:
         
     | 
| 
       2225 
     | 
    
         
            -
                  -  
     | 
| 
      
 2102 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2226 
2103 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2227 
     | 
    
         
            -
                  - '"1865073188"'
         
     | 
| 
      
 2104 
     | 
    
         
            +
                  - ! '"1865073188"'
         
     | 
| 
       2228 
2105 
     | 
    
         
             
                  Server:
         
     | 
| 
       2229 
2106 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2230 
2107 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2234,8 +2111,8 @@ http_interactions: 
     | 
|
| 
       2234 
2111 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2235 
2112 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2236 
2113 
     | 
    
         
             
                body:
         
     | 
| 
       2237 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2238 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:19.875Z","credentials":{"district_username":"loydz55","district_password":"thi3Aifee"},"district":"4fd43cc56d11340000000005","dob":"5/11/1995","ell_status":"Y","email":"loyd.z@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.135Z","location":{"zip":"11206"},"name":{"first":"Loyd","middle":"D","last":"Zieme"},"race":"Black
         
     | 
| 
      
 2114 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 2115 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:19.875Z","credentials":{"district_username":"loydz55","district_password":"thi3Aifee"},"district":"4fd43cc56d11340000000005","dob":"5/11/1995","ell_status":"Y","email":"loyd.z@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.135Z","location":{"zip":"11206"},"name":{"first":"Loyd","middle":"D","last":"Zieme"},"race":"Black
         
     | 
| 
       2239 
2116 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"870891155","state_id":"480869517","student_number":"870891155","id":"530e5967049e75a9262d05b2"},"uri":"/v1.1/students/530e5967049e75a9262d05b2"},{"data":{"created":"2014-02-26T21:15:19.879Z","credentials":{"district_username":"walterh32","district_password":"alaeChai1po"},"district":"4fd43cc56d11340000000005","dob":"3/13/1997","ell_status":"Y","email":"walter.h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.138Z","location":{"zip":"11355"},"name":{"first":"Walter","middle":"J","last":"Howe"},"race":"Black
         
     | 
| 
       2240 
2117 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"872478532","state_id":"190905763","student_number":"872478532","id":"530e5967049e75a9262d05b3"},"uri":"/v1.1/students/530e5967049e75a9262d05b3"},{"data":{"created":"2014-02-26T21:15:19.886Z","credentials":{"district_username":"charlotteb83","district_password":"Ooj7pae6OK"},"district":"4fd43cc56d11340000000005","dob":"12/17/2000","ell_status":"Y","email":"charlotte_b@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.143Z","location":{"zip":"11385"},"name":{"first":"Charlotte","middle":"J","last":"Batz"},"race":"Black
         
     | 
| 
       2241 
2118 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"872813783","state_id":"936140191","student_number":"872813783","id":"530e5967049e75a9262d05b4"},"uri":"/v1.1/students/530e5967049e75a9262d05b4"},{"data":{"created":"2014-02-26T21:15:19.893Z","credentials":{"district_username":"williame49","district_password":"Ohghequao2ah"},"district":"4fd43cc56d11340000000005","dob":"9/15/1998","ell_status":"Y","email":"e_william@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.147Z","location":{"zip":"11101"},"name":{"first":"William","middle":"C","last":"Erdman"},"race":"Black
         
     | 
| 
         @@ -2269,7 +2146,7 @@ http_interactions: 
     | 
|
| 
       2269 
2146 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"912597949","state_id":"486294596","student_number":"912597949","id":"530e5968049e75a9262d05e0"},"uri":"/v1.1/students/530e5968049e75a9262d05e0"},{"data":{"created":"2014-02-26T21:15:20.164Z","credentials":{"district_username":"ronaldp24","district_password":"Egaengah8Ne"},"district":"4fd43cc56d11340000000005","dob":"3/7/2003","ell_status":"Y","email":"p.ronald@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.329Z","location":{"zip":"11225"},"name":{"first":"Ronald","middle":"K","last":"Padberg"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"912667824","state_id":"430895037","student_number":"912667824","id":"530e5968049e75a9262d05e1"},"uri":"/v1.1/students/530e5968049e75a9262d05e1"},{"data":{"created":"2014-02-26T21:15:20.168Z","credentials":{"district_username":"marthag20","district_password":"iiban1oB6"},"district":"4fd43cc56d11340000000005","dob":"4/2/1998","ell_status":"N","email":"g_martha@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.332Z","location":{"zip":"11694"},"name":{"first":"Martha","middle":"T","last":"Greenholt"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"913113920","state_id":"975729843","student_number":"913113920","id":"530e5968049e75a9262d05e2"},"uri":"/v1.1/students/530e5968049e75a9262d05e2"},{"data":{"created":"2014-02-26T21:15:20.173Z","credentials":{"district_username":"johnw53","district_password":"och8Aw0Ie"},"district":"4fd43cc56d11340000000005","dob":"1/31/1998","ell_status":"Y","email":"john_w@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.336Z","location":{"zip":"10451"},"name":{"first":"John","middle":"K","last":"Watsica"},"race":"Two
         
     | 
| 
       2270 
2147 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"914153353","state_id":"765870576","student_number":"914153353","id":"530e5968049e75a9262d05e3"},"uri":"/v1.1/students/530e5968049e75a9262d05e3"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5967049e75a9262d05b1"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5967049e75a9262d05b2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3"}]}'
         
     | 
| 
       2271 
2148 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2272 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 2149 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2273 
2150 
     | 
    
         
             
            - request:
         
     | 
| 
       2274 
2151 
     | 
    
         
             
                method: get
         
     | 
| 
       2275 
2152 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3
         
     | 
| 
         @@ -2278,7 +2155,7 @@ http_interactions: 
     | 
|
| 
       2278 
2155 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2279 
2156 
     | 
    
         
             
                headers:
         
     | 
| 
       2280 
2157 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2281 
     | 
    
         
            -
                  -  
     | 
| 
      
 2158 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2282 
2159 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2283 
2160 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2284 
2161 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2293,13 +2170,13 @@ http_interactions: 
     | 
|
| 
       2293 
2170 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2294 
2171 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2295 
2172 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2296 
     | 
    
         
            -
                  -  
     | 
| 
      
 2173 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2297 
2174 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2298 
2175 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2299 
2176 
     | 
    
         
             
                  Date:
         
     | 
| 
       2300 
     | 
    
         
            -
                  -  
     | 
| 
      
 2177 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2301 
2178 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2302 
     | 
    
         
            -
                  - '"-445703461"'
         
     | 
| 
      
 2179 
     | 
    
         
            +
                  - ! '"-445703461"'
         
     | 
| 
       2303 
2180 
     | 
    
         
             
                  Server:
         
     | 
| 
       2304 
2181 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2305 
2182 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2309,8 +2186,8 @@ http_interactions: 
     | 
|
| 
       2309 
2186 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2310 
2187 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2311 
2188 
     | 
    
         
             
                body:
         
     | 
| 
       2312 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2313 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:20.176Z","credentials":{"district_username":"juliak13","district_password":"Hoofo8he"},"district":"4fd43cc56d11340000000005","dob":"1/11/2007","ell_status":"N","email":"k_julia@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.341Z","location":{"zip":"10016"},"name":{"first":"Julia","middle":"E","last":"Kovacek"},"race":"Black
         
     | 
| 
      
 2189 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 2190 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:20.176Z","credentials":{"district_username":"juliak13","district_password":"Hoofo8he"},"district":"4fd43cc56d11340000000005","dob":"1/11/2007","ell_status":"N","email":"k_julia@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.341Z","location":{"zip":"10016"},"name":{"first":"Julia","middle":"E","last":"Kovacek"},"race":"Black
         
     | 
| 
       2314 
2191 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"914907413","state_id":"716386163","student_number":"914907413","id":"530e5968049e75a9262d05e4"},"uri":"/v1.1/students/530e5968049e75a9262d05e4"},{"data":{"created":"2014-02-26T21:15:20.182Z","credentials":{"district_username":"beverleya37","district_password":"Bie8ohlie0ie"},"district":"4fd43cc56d11340000000005","dob":"3/3/2002","ell_status":"N","email":"beverley.a@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.345Z","location":{"zip":"11214"},"name":{"first":"Beverley","middle":"R","last":"Auer"},"race":"Two
         
     | 
| 
       2315 
2192 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"915925737","state_id":"774928906","student_number":"915925737","id":"530e5968049e75a9262d05e5"},"uri":"/v1.1/students/530e5968049e75a9262d05e5"},{"data":{"created":"2014-02-26T21:15:20.186Z","credentials":{"district_username":"sarab69","district_password":"ohra2ooP1"},"district":"4fd43cc56d11340000000005","dob":"6/13/2002","ell_status":"Y","email":"sara_b@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.347Z","location":{"zip":"10032"},"name":{"first":"Sara","middle":"J","last":"Bosco"},"race":"American
         
     | 
| 
       2316 
2193 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fe","sis_id":"916709069","state_id":"392490841","student_number":"916709069","id":"530e5968049e75a9262d05e6"},"uri":"/v1.1/students/530e5968049e75a9262d05e6"},{"data":{"created":"2014-02-26T21:15:20.189Z","credentials":{"district_username":"christined97","district_password":"iu4Aem3eix"},"district":"4fd43cc56d11340000000005","dob":"4/1/2004","ell_status":"Y","email":"christine_d@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.351Z","location":{"zip":"11433"},"name":{"first":"Christine","middle":"D","last":"Douglas"},"race":"Black
         
     | 
| 
         @@ -2341,7 +2218,7 @@ http_interactions: 
     | 
|
| 
       2341 
2218 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"954752985","state_id":"770757190","student_number":"954752985","id":"530e5968049e75a9262d0613"},"uri":"/v1.1/students/530e5968049e75a9262d0613"},{"data":{"created":"2014-02-26T21:15:20.391Z","credentials":{"district_username":"tommyl70","district_password":"ieR5ait4ACe"},"district":"4fd43cc56d11340000000005","dob":"10/26/1998","ell_status":"N","email":"l_tommy@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.532Z","location":{"zip":"11224"},"name":{"first":"Tommy","middle":"I","last":"Langworth"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"957214270","state_id":"970294131","student_number":"957214270","id":"530e5968049e75a9262d0614"},"uri":"/v1.1/students/530e5968049e75a9262d0614"},{"data":{"created":"2014-02-26T21:15:20.394Z","credentials":{"district_username":"alexism32","district_password":"iup9uThie"},"district":"4fd43cc56d11340000000005","dob":"4/28/2007","ell_status":"N","email":"m.alexis@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.537Z","location":{"zip":"10463"},"name":{"first":"Alexis","middle":"E","last":"Miller"},"race":"Two
         
     | 
| 
       2342 
2219 
     | 
    
         
             
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"957702932","state_id":"575918444","student_number":"957702932","id":"530e5968049e75a9262d0615"},"uri":"/v1.1/students/530e5968049e75a9262d0615"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615"}]}'
         
     | 
| 
       2343 
2220 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2344 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 2221 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2345 
2222 
     | 
    
         
             
            - request:
         
     | 
| 
       2346 
2223 
     | 
    
         
             
                method: get
         
     | 
| 
       2347 
2224 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615
         
     | 
| 
         @@ -2350,7 +2227,7 @@ http_interactions: 
     | 
|
| 
       2350 
2227 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2351 
2228 
     | 
    
         
             
                headers:
         
     | 
| 
       2352 
2229 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2353 
     | 
    
         
            -
                  -  
     | 
| 
      
 2230 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2354 
2231 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2355 
2232 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2356 
2233 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2365,13 +2242,13 @@ http_interactions: 
     | 
|
| 
       2365 
2242 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2366 
2243 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2367 
2244 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2368 
     | 
    
         
            -
                  -  
     | 
| 
      
 2245 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2369 
2246 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2370 
2247 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2371 
2248 
     | 
    
         
             
                  Date:
         
     | 
| 
       2372 
     | 
    
         
            -
                  -  
     | 
| 
      
 2249 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2373 
2250 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2374 
     | 
    
         
            -
                  - '"-1099254497"'
         
     | 
| 
      
 2251 
     | 
    
         
            +
                  - ! '"-1099254497"'
         
     | 
| 
       2375 
2252 
     | 
    
         
             
                  Server:
         
     | 
| 
       2376 
2253 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2377 
2254 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2381,8 +2258,8 @@ http_interactions: 
     | 
|
| 
       2381 
2258 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2382 
2259 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2383 
2260 
     | 
    
         
             
                body:
         
     | 
| 
       2384 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2385 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:20.399Z","credentials":{"district_username":"amandal89","district_password":"Fai1eYahgh"},"district":"4fd43cc56d11340000000005","dob":"11/20/2005","ell_status":"N","email":"l_amanda@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.541Z","location":{"zip":"10030"},"name":{"first":"Amanda","middle":"D","last":"Lubowitz"},"race":"Black
         
     | 
| 
      
 2261 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 2262 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:20.399Z","credentials":{"district_username":"amandal89","district_password":"Fai1eYahgh"},"district":"4fd43cc56d11340000000005","dob":"11/20/2005","ell_status":"N","email":"l_amanda@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.541Z","location":{"zip":"10030"},"name":{"first":"Amanda","middle":"D","last":"Lubowitz"},"race":"Black
         
     | 
| 
       2386 
2263 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"957796489","state_id":"800111742","student_number":"957796489","id":"530e5968049e75a9262d0616"},"uri":"/v1.1/students/530e5968049e75a9262d0616"},{"data":{"created":"2014-02-26T21:15:20.403Z","credentials":{"district_username":"brendab99","district_password":"UcooseGah2"},"district":"4fd43cc56d11340000000005","dob":"8/11/1997","ell_status":"N","email":"brenda_b@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.543Z","location":{"zip":"10007"},"name":{"first":"Brenda","middle":"E","last":"Becker"},"race":"Black
         
     | 
| 
       2387 
2264 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"958428899","state_id":"327371655","student_number":"958428899","id":"530e5968049e75a9262d0617"},"uri":"/v1.1/students/530e5968049e75a9262d0617"},{"data":{"created":"2014-02-26T21:15:20.407Z","credentials":{"district_username":"donaldk27","district_password":"lai6Sahkoo9"},"district":"4fd43cc56d11340000000005","dob":"3/11/2006","ell_status":"N","email":"k.donald@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.547Z","location":{"zip":"11427"},"name":{"first":"Donald","middle":"J","last":"Kovacek"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"958709227","state_id":"331462769","student_number":"958709227","id":"530e5968049e75a9262d0618"},"uri":"/v1.1/students/530e5968049e75a9262d0618"},{"data":{"created":"2014-02-26T21:15:20.412Z","credentials":{"district_username":"lillym09","district_password":"odath4Al"},"district":"4fd43cc56d11340000000005","dob":"8/1/1999","ell_status":"N","email":"lilly.m@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.552Z","location":{"zip":"10025"},"name":{"first":"Lilly","middle":"O","last":"Mills"},"race":"Black
         
     | 
| 
       2388 
2265 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"960399009","state_id":"816013195","student_number":"960399009","id":"530e5968049e75a9262d0619"},"uri":"/v1.1/students/530e5968049e75a9262d0619"},{"data":{"created":"2014-02-26T21:15:20.416Z","credentials":{"district_username":"coreyb45","district_password":"ohM2leithah"},"district":"4fd43cc56d11340000000005","dob":"3/31/1999","ell_status":"Y","email":"b.corey@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.556Z","location":{"zip":"10314"},"name":{"first":"Corey","middle":"M","last":"Barrows"},"race":"Black
         
     | 
| 
         @@ -2412,7 +2289,7 @@ http_interactions: 
     | 
|
| 
       2412 
2289 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"988363878","state_id":"528811928","student_number":"988363878","id":"530e5968049e75a9262d0641"},"uri":"/v1.1/students/530e5968049e75a9262d0641"},{"data":{"created":"2014-02-26T21:15:20.591Z","credentials":{"district_username":"marjoriew79","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"8/1/2005","ell_status":"N","email":"w_marjorie@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.717Z","location":{"zip":"11436"},"name":{"first":"Marjorie","middle":"J","last":"White"},"race":"Black
         
     | 
| 
       2413 
2290 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"989693879","state_id":"568608854","student_number":"989693879","id":"530e5968049e75a9262d0642"},"uri":"/v1.1/students/530e5968049e75a9262d0642"},{"data":{"created":"2014-02-26T21:15:20.595Z","credentials":{"district_username":"stevenr21","district_password":"Cae6Zoogh"},"district":"4fd43cc56d11340000000005","dob":"8/19/2006","ell_status":"N","email":"steven.r@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.720Z","location":{"zip":"11413"},"name":{"first":"Steven","middle":"A","last":"Robel"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"992399521","state_id":"486242945","student_number":"992399521","id":"530e5968049e75a9262d0643"},"uri":"/v1.1/students/530e5968049e75a9262d0643"},{"data":{"created":"2014-02-26T21:15:20.601Z","credentials":{"district_username":"beths47","district_password":"keefooY9anoe"},"district":"4fd43cc56d11340000000005","dob":"1/21/2004","ell_status":"Y","email":"s_beth@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.724Z","location":{"zip":"11106"},"name":{"first":"Beth","middle":"K","last":"Spencer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"992702547","state_id":"899990945","student_number":"992702547","id":"530e5968049e75a9262d0644"},"uri":"/v1.1/students/530e5968049e75a9262d0644"},{"data":{"created":"2014-02-26T21:15:20.604Z","credentials":{"district_username":"jeffreyt39","district_password":"Daichaep5"},"district":"4fd43cc56d11340000000005","dob":"2/1/1997","ell_status":"N","email":"jeffrey_t@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.728Z","location":{"zip":"10032"},"name":{"first":"Jeffrey","middle":"C","last":"Turner"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993335439","state_id":"985250921","student_number":"993335439","id":"530e5968049e75a9262d0645"},"uri":"/v1.1/students/530e5968049e75a9262d0645"},{"data":{"created":"2014-02-26T21:15:20.608Z","credentials":{"district_username":"samuelc82","district_password":"Ooghee1j"},"district":"4fd43cc56d11340000000005","dob":"11/28/1998","ell_status":"N","email":"c_samuel@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.732Z","location":{"zip":"10035"},"name":{"first":"Samuel","middle":"S","last":"Crona"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993756982","state_id":"496635778","student_number":"993756982","id":"530e5968049e75a9262d0646"},"uri":"/v1.1/students/530e5968049e75a9262d0646"},{"data":{"created":"2014-02-26T21:15:20.611Z","credentials":{"district_username":"marjoriel40","district_password":"iushoo1It"},"district":"4fd43cc56d11340000000005","dob":"11/4/1997","ell_status":"N","email":"marjorie_l@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.735Z","location":{"zip":"10016"},"name":{"first":"Marjorie","middle":"L","last":"Lesch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"994397040","state_id":"828598322","student_number":"994397040","id":"530e5968049e75a9262d0647"},"uri":"/v1.1/students/530e5968049e75a9262d0647"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0615"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d0616"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647"}]}'
         
     | 
| 
       2414 
2291 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2415 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 2292 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:05 GMT
         
     | 
| 
       2416 
2293 
     | 
    
         
             
            - request:
         
     | 
| 
       2417 
2294 
     | 
    
         
             
                method: get
         
     | 
| 
       2418 
2295 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647
         
     | 
| 
         @@ -2421,7 +2298,7 @@ http_interactions: 
     | 
|
| 
       2421 
2298 
     | 
    
         
             
                  string: ''
         
     | 
| 
       2422 
2299 
     | 
    
         
             
                headers:
         
     | 
| 
       2423 
2300 
     | 
    
         
             
                  Accept:
         
     | 
| 
       2424 
     | 
    
         
            -
                  -  
     | 
| 
      
 2301 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       2425 
2302 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       2426 
2303 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       2427 
2304 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -2436,13 +2313,13 @@ http_interactions: 
     | 
|
| 
       2436 
2313 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       2437 
2314 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       2438 
2315 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       2439 
     | 
    
         
            -
                  -  
     | 
| 
      
 2316 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       2440 
2317 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       2441 
2318 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       2442 
2319 
     | 
    
         
             
                  Date:
         
     | 
| 
       2443 
     | 
    
         
            -
                  -  
     | 
| 
      
 2320 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:49:06 GMT
         
     | 
| 
       2444 
2321 
     | 
    
         
             
                  Etag:
         
     | 
| 
       2445 
     | 
    
         
            -
                  - '"803246346"'
         
     | 
| 
      
 2322 
     | 
    
         
            +
                  - ! '"803246346"'
         
     | 
| 
       2446 
2323 
     | 
    
         
             
                  Server:
         
     | 
| 
       2447 
2324 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       2448 
2325 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -2452,11 +2329,11 @@ http_interactions: 
     | 
|
| 
       2452 
2329 
     | 
    
         
             
                  Connection:
         
     | 
| 
       2453 
2330 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       2454 
2331 
     | 
    
         
             
                body:
         
     | 
| 
       2455 
     | 
    
         
            -
                  encoding:  
     | 
| 
       2456 
     | 
    
         
            -
                  string: '{"data":[{"data":{"created":"2014-02-26T21:15:20.614Z","credentials":{"district_username":"juliar75","district_password":"ohzae9eeR9y"},"district":"4fd43cc56d11340000000005","dob":"2/20/1995","ell_status":"N","email":"julia_r@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.740Z","location":{"zip":"10455"},"name":{"first":"Julia","middle":"R","last":"Reinger"},"race":"Black
         
     | 
| 
      
 2332 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 2333 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:20.614Z","credentials":{"district_username":"juliar75","district_password":"ohzae9eeR9y"},"district":"4fd43cc56d11340000000005","dob":"2/20/1995","ell_status":"N","email":"julia_r@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.740Z","location":{"zip":"10455"},"name":{"first":"Julia","middle":"R","last":"Reinger"},"race":"Black
         
     | 
| 
       2457 
2334 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fd","sis_id":"994416375","state_id":"273880394","student_number":"994416375","id":"530e5968049e75a9262d0648"},"uri":"/v1.1/students/530e5968049e75a9262d0648"},{"data":{"created":"2014-02-26T21:15:20.617Z","credentials":{"district_username":"kateg20","district_password":"eipieYeiz4"},"district":"4fd43cc56d11340000000005","dob":"9/2/1996","ell_status":"Y","email":"g.kate@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.743Z","location":{"zip":"11239"},"name":{"first":"Kate","middle":"J","last":"Gutmann"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"995477320","state_id":"866850842","student_number":"995477320","id":"530e5968049e75a9262d0649"},"uri":"/v1.1/students/530e5968049e75a9262d0649"},{"data":{"created":"2014-02-26T21:15:20.620Z","credentials":{"district_username":"ritaq35","district_password":"riv4Ahqu4o"},"district":"4fd43cc56d11340000000005","dob":"6/3/2001","ell_status":"N","email":"q.rita@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.747Z","location":{"zip":"10022"},"name":{"first":"Rita","middle":"C","last":"Quigley"},"race":"Black
         
     | 
| 
       2458 
2335 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9ff","sis_id":"998414435","state_id":"134063200","student_number":"998414435","id":"530e5968049e75a9262d064a"},"uri":"/v1.1/students/530e5968049e75a9262d064a"},{"data":{"created":"2014-02-26T21:15:20.623Z","credentials":{"district_username":"markr17","district_password":"yo0ohYo6ro"},"district":"4fd43cc56d11340000000005","dob":"8/24/1996","ell_status":"N","email":"r_mark@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.750Z","location":{"zip":"10034"},"name":{"first":"Mark","middle":"S","last":"Reilly"},"race":"American
         
     | 
| 
       2459 
2336 
     | 
    
         
             
                    Indian","school":"530e595026403103360ff9fd","sis_id":"999447617","state_id":"651135073","student_number":"999447617","id":"530e5968049e75a9262d064b"},"uri":"/v1.1/students/530e5968049e75a9262d064b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=50&ending_before=530e5968049e75a9262d0648"}]}'
         
     | 
| 
       2460 
2337 
     | 
    
         
             
                http_version: 
         
     | 
| 
       2461 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 2338 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:49:06 GMT
         
     | 
| 
       2462 
2339 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     |