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,13 +23,13 @@ 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:19 GMT
         
     | 
| 
       31 
31 
     | 
    
         
             
                  Etag:
         
     | 
| 
       32 
     | 
    
         
            -
                  - '"-1704869160"'
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - ! '"-1704869160"'
         
     | 
| 
       33 
33 
     | 
    
         
             
                  Server:
         
     | 
| 
       34 
34 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       35 
35 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -39,8 +39,8 @@ http_interactions: 
     | 
|
| 
       39 
39 
     | 
    
         
             
                  Connection:
         
     | 
| 
       40 
40 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       41 
41 
     | 
    
         
             
                body:
         
     | 
| 
       42 
     | 
    
         
            -
                  encoding:  
     | 
| 
       43 
     | 
    
         
            -
                  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
         
     | 
| 
      
 42 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 43 
     | 
    
         
            +
                  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
         
     | 
| 
       44 
44 
     | 
    
         
             
                    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
         
     | 
| 
       45 
45 
     | 
    
         
             
                    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
         
     | 
| 
       46 
46 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -113,7 +113,7 @@ http_interactions: 
     | 
|
| 
       113 
113 
     | 
    
         
             
                    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
         
     | 
| 
       114 
114 
     | 
    
         
             
                    or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/students"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5961049e75a9262cffe4"}]}'
         
     | 
| 
       115 
115 
     | 
    
         
             
                http_version: 
         
     | 
| 
       116 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 116 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:19 GMT
         
     | 
| 
       117 
117 
     | 
    
         
             
            - request:
         
     | 
| 
       118 
118 
     | 
    
         
             
                method: get
         
     | 
| 
       119 
119 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5961049e75a9262cffe4
         
     | 
| 
         @@ -122,7 +122,7 @@ http_interactions: 
     | 
|
| 
       122 
122 
     | 
    
         
             
                  string: ''
         
     | 
| 
       123 
123 
     | 
    
         
             
                headers:
         
     | 
| 
       124 
124 
     | 
    
         
             
                  Accept:
         
     | 
| 
       125 
     | 
    
         
            -
                  -  
     | 
| 
      
 125 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       126 
126 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       127 
127 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       128 
128 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -137,13 +137,13 @@ http_interactions: 
     | 
|
| 
       137 
137 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       138 
138 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       139 
139 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       140 
     | 
    
         
            -
                  -  
     | 
| 
      
 140 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       141 
141 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       142 
142 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       143 
143 
     | 
    
         
             
                  Date:
         
     | 
| 
       144 
     | 
    
         
            -
                  -  
     | 
| 
      
 144 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:19 GMT
         
     | 
| 
       145 
145 
     | 
    
         
             
                  Etag:
         
     | 
| 
       146 
     | 
    
         
            -
                  - '"841128607"'
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - ! '"841128607"'
         
     | 
| 
       147 
147 
     | 
    
         
             
                  Server:
         
     | 
| 
       148 
148 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       149 
149 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -153,8 +153,8 @@ http_interactions: 
     | 
|
| 
       153 
153 
     | 
    
         
             
                  Connection:
         
     | 
| 
       154 
154 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       155 
155 
     | 
    
         
             
                body:
         
     | 
| 
       156 
     | 
    
         
            -
                  encoding:  
     | 
| 
       157 
     | 
    
         
            -
                  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
         
     | 
| 
      
 156 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 157 
     | 
    
         
            +
                  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
         
     | 
| 
       158 
158 
     | 
    
         
             
                    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
         
     | 
| 
       159 
159 
     | 
    
         
             
                    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
         
     | 
| 
       160 
160 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -220,7 +220,7 @@ http_interactions: 
     | 
|
| 
       220 
220 
     | 
    
         
             
                    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
         
     | 
| 
       221 
221 
     | 
    
         
             
                    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/students?starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5962049e75a9262d00a9"}]}'
         
     | 
| 
       222 
222 
     | 
    
         
             
                http_version: 
         
     | 
| 
       223 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 223 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:19 GMT
         
     | 
| 
       224 
224 
     | 
    
         
             
            - request:
         
     | 
| 
       225 
225 
     | 
    
         
             
                method: get
         
     | 
| 
       226 
226 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5962049e75a9262d00a9
         
     | 
| 
         @@ -229,7 +229,7 @@ http_interactions: 
     | 
|
| 
       229 
229 
     | 
    
         
             
                  string: ''
         
     | 
| 
       230 
230 
     | 
    
         
             
                headers:
         
     | 
| 
       231 
231 
     | 
    
         
             
                  Accept:
         
     | 
| 
       232 
     | 
    
         
            -
                  -  
     | 
| 
      
 232 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       233 
233 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       234 
234 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       235 
235 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -244,13 +244,13 @@ http_interactions: 
     | 
|
| 
       244 
244 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       245 
245 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       246 
246 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       247 
     | 
    
         
            -
                  -  
     | 
| 
      
 247 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       248 
248 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       249 
249 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       250 
250 
     | 
    
         
             
                  Date:
         
     | 
| 
       251 
     | 
    
         
            -
                  -  
     | 
| 
      
 251 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:20 GMT
         
     | 
| 
       252 
252 
     | 
    
         
             
                  Etag:
         
     | 
| 
       253 
     | 
    
         
            -
                  - '"-968465703"'
         
     | 
| 
      
 253 
     | 
    
         
            +
                  - ! '"-968465703"'
         
     | 
| 
       254 
254 
     | 
    
         
             
                  Server:
         
     | 
| 
       255 
255 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       256 
256 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -260,8 +260,8 @@ http_interactions: 
     | 
|
| 
       260 
260 
     | 
    
         
             
                  Connection:
         
     | 
| 
       261 
261 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       262 
262 
     | 
    
         
             
                body:
         
     | 
| 
       263 
     | 
    
         
            -
                  encoding:  
     | 
| 
       264 
     | 
    
         
            -
                  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
         
     | 
| 
      
 263 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 264 
     | 
    
         
            +
                  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
         
     | 
| 
       265 
265 
     | 
    
         
             
                    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
         
     | 
| 
       266 
266 
     | 
    
         
             
                    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
         
     | 
| 
       267 
267 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -331,7 +331,7 @@ http_interactions: 
     | 
|
| 
       331 
331 
     | 
    
         
             
                    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
         
     | 
| 
       332 
332 
     | 
    
         
             
                    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/students?starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5962049e75a9262d0160"}]}'
         
     | 
| 
       333 
333 
     | 
    
         
             
                http_version: 
         
     | 
| 
       334 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 334 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:20 GMT
         
     | 
| 
       335 
335 
     | 
    
         
             
            - request:
         
     | 
| 
       336 
336 
     | 
    
         
             
                method: get
         
     | 
| 
       337 
337 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5962049e75a9262d0160
         
     | 
| 
         @@ -340,7 +340,7 @@ http_interactions: 
     | 
|
| 
       340 
340 
     | 
    
         
             
                  string: ''
         
     | 
| 
       341 
341 
     | 
    
         
             
                headers:
         
     | 
| 
       342 
342 
     | 
    
         
             
                  Accept:
         
     | 
| 
       343 
     | 
    
         
            -
                  -  
     | 
| 
      
 343 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       344 
344 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       345 
345 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       346 
346 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -355,13 +355,13 @@ http_interactions: 
     | 
|
| 
       355 
355 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       356 
356 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       357 
357 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       358 
     | 
    
         
            -
                  -  
     | 
| 
      
 358 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       359 
359 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       360 
360 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       361 
361 
     | 
    
         
             
                  Date:
         
     | 
| 
       362 
     | 
    
         
            -
                  -  
     | 
| 
      
 362 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:20 GMT
         
     | 
| 
       363 
363 
     | 
    
         
             
                  Etag:
         
     | 
| 
       364 
     | 
    
         
            -
                  - '"-1723479948"'
         
     | 
| 
      
 364 
     | 
    
         
            +
                  - ! '"-1723479948"'
         
     | 
| 
       365 
365 
     | 
    
         
             
                  Server:
         
     | 
| 
       366 
366 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       367 
367 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -371,8 +371,8 @@ http_interactions: 
     | 
|
| 
       371 
371 
     | 
    
         
             
                  Connection:
         
     | 
| 
       372 
372 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       373 
373 
     | 
    
         
             
                body:
         
     | 
| 
       374 
     | 
    
         
            -
                  encoding:  
     | 
| 
       375 
     | 
    
         
            -
                  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
         
     | 
| 
      
 374 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 375 
     | 
    
         
            +
                  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
         
     | 
| 
       376 
376 
     | 
    
         
             
                    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
         
     | 
| 
       377 
377 
     | 
    
         
             
                    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
         
     | 
| 
       378 
378 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -443,7 +443,7 @@ http_interactions: 
     | 
|
| 
       443 
443 
     | 
    
         
             
                    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
         
     | 
| 
       444 
444 
     | 
    
         
             
                    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/students?starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5963049e75a9262d0228"}]}'
         
     | 
| 
       445 
445 
     | 
    
         
             
                http_version: 
         
     | 
| 
       446 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 446 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:20 GMT
         
     | 
| 
       447 
447 
     | 
    
         
             
            - request:
         
     | 
| 
       448 
448 
     | 
    
         
             
                method: get
         
     | 
| 
       449 
449 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5963049e75a9262d0228
         
     | 
| 
         @@ -452,7 +452,7 @@ http_interactions: 
     | 
|
| 
       452 
452 
     | 
    
         
             
                  string: ''
         
     | 
| 
       453 
453 
     | 
    
         
             
                headers:
         
     | 
| 
       454 
454 
     | 
    
         
             
                  Accept:
         
     | 
| 
       455 
     | 
    
         
            -
                  -  
     | 
| 
      
 455 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       456 
456 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       457 
457 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       458 
458 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -467,13 +467,13 @@ http_interactions: 
     | 
|
| 
       467 
467 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       468 
468 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       469 
469 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       470 
     | 
    
         
            -
                  -  
     | 
| 
      
 470 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       471 
471 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       472 
472 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       473 
473 
     | 
    
         
             
                  Date:
         
     | 
| 
       474 
     | 
    
         
            -
                  -  
     | 
| 
      
 474 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:21 GMT
         
     | 
| 
       475 
475 
     | 
    
         
             
                  Etag:
         
     | 
| 
       476 
     | 
    
         
            -
                  - '"1170102698"'
         
     | 
| 
      
 476 
     | 
    
         
            +
                  - ! '"1170102698"'
         
     | 
| 
       477 
477 
     | 
    
         
             
                  Server:
         
     | 
| 
       478 
478 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       479 
479 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -483,8 +483,8 @@ http_interactions: 
     | 
|
| 
       483 
483 
     | 
    
         
             
                  Connection:
         
     | 
| 
       484 
484 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       485 
485 
     | 
    
         
             
                body:
         
     | 
| 
       486 
     | 
    
         
            -
                  encoding:  
     | 
| 
       487 
     | 
    
         
            -
                  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
         
     | 
| 
      
 486 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 487 
     | 
    
         
            +
                  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
         
     | 
| 
       488 
488 
     | 
    
         
             
                    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
         
     | 
| 
       489 
489 
     | 
    
         
             
                    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
         
     | 
| 
       490 
490 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -552,7 +552,7 @@ http_interactions: 
     | 
|
| 
       552 
552 
     | 
    
         
             
                    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
         
     | 
| 
       553 
553 
     | 
    
         
             
                    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/students?starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5964049e75a9262d02e7"}]}'
         
     | 
| 
       554 
554 
     | 
    
         
             
                http_version: 
         
     | 
| 
       555 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 555 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:21 GMT
         
     | 
| 
       556 
556 
     | 
    
         
             
            - request:
         
     | 
| 
       557 
557 
     | 
    
         
             
                method: get
         
     | 
| 
       558 
558 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5964049e75a9262d02e7
         
     | 
| 
         @@ -561,7 +561,7 @@ http_interactions: 
     | 
|
| 
       561 
561 
     | 
    
         
             
                  string: ''
         
     | 
| 
       562 
562 
     | 
    
         
             
                headers:
         
     | 
| 
       563 
563 
     | 
    
         
             
                  Accept:
         
     | 
| 
       564 
     | 
    
         
            -
                  -  
     | 
| 
      
 564 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       565 
565 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       566 
566 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       567 
567 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -576,13 +576,13 @@ http_interactions: 
     | 
|
| 
       576 
576 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       577 
577 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       578 
578 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       579 
     | 
    
         
            -
                  -  
     | 
| 
      
 579 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       580 
580 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       581 
581 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       582 
582 
     | 
    
         
             
                  Date:
         
     | 
| 
       583 
     | 
    
         
            -
                  -  
     | 
| 
      
 583 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:21 GMT
         
     | 
| 
       584 
584 
     | 
    
         
             
                  Etag:
         
     | 
| 
       585 
     | 
    
         
            -
                  - '"901956348"'
         
     | 
| 
      
 585 
     | 
    
         
            +
                  - ! '"901956348"'
         
     | 
| 
       586 
586 
     | 
    
         
             
                  Server:
         
     | 
| 
       587 
587 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       588 
588 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -592,8 +592,8 @@ http_interactions: 
     | 
|
| 
       592 
592 
     | 
    
         
             
                  Connection:
         
     | 
| 
       593 
593 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       594 
594 
     | 
    
         
             
                body:
         
     | 
| 
       595 
     | 
    
         
            -
                  encoding:  
     | 
| 
       596 
     | 
    
         
            -
                  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
         
     | 
| 
      
 595 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 596 
     | 
    
         
            +
                  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
         
     | 
| 
       597 
597 
     | 
    
         
             
                    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
         
     | 
| 
       598 
598 
     | 
    
         
             
                    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
         
     | 
| 
       599 
599 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -657,7 +657,7 @@ http_interactions: 
     | 
|
| 
       657 
657 
     | 
    
         
             
                    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
         
     | 
| 
       658 
658 
     | 
    
         
             
                    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/students?starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5965049e75a9262d03b8"}]}'
         
     | 
| 
       659 
659 
     | 
    
         
             
                http_version: 
         
     | 
| 
       660 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 660 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:21 GMT
         
     | 
| 
       661 
661 
     | 
    
         
             
            - request:
         
     | 
| 
       662 
662 
     | 
    
         
             
                method: get
         
     | 
| 
       663 
663 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5965049e75a9262d03b8
         
     | 
| 
         @@ -666,7 +666,7 @@ http_interactions: 
     | 
|
| 
       666 
666 
     | 
    
         
             
                  string: ''
         
     | 
| 
       667 
667 
     | 
    
         
             
                headers:
         
     | 
| 
       668 
668 
     | 
    
         
             
                  Accept:
         
     | 
| 
       669 
     | 
    
         
            -
                  -  
     | 
| 
      
 669 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       670 
670 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       671 
671 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       672 
672 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -681,13 +681,13 @@ http_interactions: 
     | 
|
| 
       681 
681 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       682 
682 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       683 
683 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       684 
     | 
    
         
            -
                  -  
     | 
| 
      
 684 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       685 
685 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       686 
686 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       687 
687 
     | 
    
         
             
                  Date:
         
     | 
| 
       688 
     | 
    
         
            -
                  -  
     | 
| 
      
 688 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:22 GMT
         
     | 
| 
       689 
689 
     | 
    
         
             
                  Etag:
         
     | 
| 
       690 
     | 
    
         
            -
                  - '"419409629"'
         
     | 
| 
      
 690 
     | 
    
         
            +
                  - ! '"419409629"'
         
     | 
| 
       691 
691 
     | 
    
         
             
                  Server:
         
     | 
| 
       692 
692 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       693 
693 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -697,8 +697,8 @@ http_interactions: 
     | 
|
| 
       697 
697 
     | 
    
         
             
                  Connection:
         
     | 
| 
       698 
698 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       699 
699 
     | 
    
         
             
                body:
         
     | 
| 
       700 
     | 
    
         
            -
                  encoding:  
     | 
| 
       701 
     | 
    
         
            -
                  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
         
     | 
| 
      
 700 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 701 
     | 
    
         
            +
                  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
         
     | 
| 
       702 
702 
     | 
    
         
             
                    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
         
     | 
| 
       703 
703 
     | 
    
         
             
                    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
         
     | 
| 
       704 
704 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -762,7 +762,7 @@ http_interactions: 
     | 
|
| 
       762 
762 
     | 
    
         
             
                    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
         
     | 
| 
       763 
763 
     | 
    
         
             
                    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/students?starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5966049e75a9262d046c"}]}'
         
     | 
| 
       764 
764 
     | 
    
         
             
                http_version: 
         
     | 
| 
       765 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 765 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:22 GMT
         
     | 
| 
       766 
766 
     | 
    
         
             
            - request:
         
     | 
| 
       767 
767 
     | 
    
         
             
                method: get
         
     | 
| 
       768 
768 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5966049e75a9262d046c
         
     | 
| 
         @@ -771,7 +771,7 @@ http_interactions: 
     | 
|
| 
       771 
771 
     | 
    
         
             
                  string: ''
         
     | 
| 
       772 
772 
     | 
    
         
             
                headers:
         
     | 
| 
       773 
773 
     | 
    
         
             
                  Accept:
         
     | 
| 
       774 
     | 
    
         
            -
                  -  
     | 
| 
      
 774 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       775 
775 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       776 
776 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       777 
777 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -786,13 +786,13 @@ http_interactions: 
     | 
|
| 
       786 
786 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       787 
787 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       788 
788 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       789 
     | 
    
         
            -
                  -  
     | 
| 
      
 789 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       790 
790 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       791 
791 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       792 
792 
     | 
    
         
             
                  Date:
         
     | 
| 
       793 
     | 
    
         
            -
                  -  
     | 
| 
      
 793 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:22 GMT
         
     | 
| 
       794 
794 
     | 
    
         
             
                  Etag:
         
     | 
| 
       795 
     | 
    
         
            -
                  - '"-1806770542"'
         
     | 
| 
      
 795 
     | 
    
         
            +
                  - ! '"-1806770542"'
         
     | 
| 
       796 
796 
     | 
    
         
             
                  Server:
         
     | 
| 
       797 
797 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       798 
798 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -802,8 +802,8 @@ http_interactions: 
     | 
|
| 
       802 
802 
     | 
    
         
             
                  Connection:
         
     | 
| 
       803 
803 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       804 
804 
     | 
    
         
             
                body:
         
     | 
| 
       805 
     | 
    
         
            -
                  encoding:  
     | 
| 
       806 
     | 
    
         
            -
                  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
         
     | 
| 
      
 805 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 806 
     | 
    
         
            +
                  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
         
     | 
| 
       807 
807 
     | 
    
         
             
                    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
         
     | 
| 
       808 
808 
     | 
    
         
             
                    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
         
     | 
| 
       809 
809 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -873,7 +873,7 @@ http_interactions: 
     | 
|
| 
       873 
873 
     | 
    
         
             
                    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
         
     | 
| 
       874 
874 
     | 
    
         
             
                    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/students?starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5967049e75a9262d0557"}]}'
         
     | 
| 
       875 
875 
     | 
    
         
             
                http_version: 
         
     | 
| 
       876 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 876 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:22 GMT
         
     | 
| 
       877 
877 
     | 
    
         
             
            - request:
         
     | 
| 
       878 
878 
     | 
    
         
             
                method: get
         
     | 
| 
       879 
879 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5967049e75a9262d0557
         
     | 
| 
         @@ -882,7 +882,7 @@ http_interactions: 
     | 
|
| 
       882 
882 
     | 
    
         
             
                  string: ''
         
     | 
| 
       883 
883 
     | 
    
         
             
                headers:
         
     | 
| 
       884 
884 
     | 
    
         
             
                  Accept:
         
     | 
| 
       885 
     | 
    
         
            -
                  -  
     | 
| 
      
 885 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       886 
886 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       887 
887 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       888 
888 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -897,13 +897,13 @@ http_interactions: 
     | 
|
| 
       897 
897 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       898 
898 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       899 
899 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       900 
     | 
    
         
            -
                  -  
     | 
| 
      
 900 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       901 
901 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       902 
902 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       903 
903 
     | 
    
         
             
                  Date:
         
     | 
| 
       904 
     | 
    
         
            -
                  -  
     | 
| 
      
 904 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:23 GMT
         
     | 
| 
       905 
905 
     | 
    
         
             
                  Etag:
         
     | 
| 
       906 
     | 
    
         
            -
                  - '"2114698730"'
         
     | 
| 
      
 906 
     | 
    
         
            +
                  - ! '"2114698730"'
         
     | 
| 
       907 
907 
     | 
    
         
             
                  Server:
         
     | 
| 
       908 
908 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       909 
909 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -913,8 +913,8 @@ http_interactions: 
     | 
|
| 
       913 
913 
     | 
    
         
             
                  Connection:
         
     | 
| 
       914 
914 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       915 
915 
     | 
    
         
             
                body:
         
     | 
| 
       916 
     | 
    
         
            -
                  encoding:  
     | 
| 
       917 
     | 
    
         
            -
                  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
         
     | 
| 
      
 916 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 917 
     | 
    
         
            +
                  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
         
     | 
| 
       918 
918 
     | 
    
         
             
                    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
         
     | 
| 
       919 
919 
     | 
    
         
             
                    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
         
     | 
| 
       920 
920 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -980,7 +980,7 @@ http_interactions: 
     | 
|
| 
       980 
980 
     | 
    
         
             
                    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
         
     | 
| 
       981 
981 
     | 
    
         
             
                    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/students?starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5968049e75a9262d05e3"}]}'
         
     | 
| 
       982 
982 
     | 
    
         
             
                http_version: 
         
     | 
| 
       983 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 983 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:23 GMT
         
     | 
| 
       984 
984 
     | 
    
         
             
            - request:
         
     | 
| 
       985 
985 
     | 
    
         
             
                method: get
         
     | 
| 
       986 
986 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5968049e75a9262d05e3
         
     | 
| 
         @@ -989,7 +989,7 @@ http_interactions: 
     | 
|
| 
       989 
989 
     | 
    
         
             
                  string: ''
         
     | 
| 
       990 
990 
     | 
    
         
             
                headers:
         
     | 
| 
       991 
991 
     | 
    
         
             
                  Accept:
         
     | 
| 
       992 
     | 
    
         
            -
                  -  
     | 
| 
      
 992 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       993 
993 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       994 
994 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       995 
995 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1004,13 +1004,13 @@ http_interactions: 
     | 
|
| 
       1004 
1004 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1005 
1005 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1006 
1006 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1007 
     | 
    
         
            -
                  -  
     | 
| 
      
 1007 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1008 
1008 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1009 
1009 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1010 
1010 
     | 
    
         
             
                  Date:
         
     | 
| 
       1011 
     | 
    
         
            -
                  -  
     | 
| 
      
 1011 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1012 
1012 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1013 
     | 
    
         
            -
                  - '"-292018979"'
         
     | 
| 
      
 1013 
     | 
    
         
            +
                  - ! '"-292018979"'
         
     | 
| 
       1014 
1014 
     | 
    
         
             
                  Server:
         
     | 
| 
       1015 
1015 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1016 
1016 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1020,8 +1020,8 @@ http_interactions: 
     | 
|
| 
       1020 
1020 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1021 
1021 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1022 
1022 
     | 
    
         
             
                body:
         
     | 
| 
       1023 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1024 
     | 
    
         
            -
                  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
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  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
         
     | 
| 
       1025 
1025 
     | 
    
         
             
                    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
         
     | 
| 
       1026 
1026 
     | 
    
         
             
                    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
         
     | 
| 
       1027 
1027 
     | 
    
         
             
                    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
         
     | 
| 
         @@ -1080,7 +1080,7 @@ http_interactions: 
     | 
|
| 
       1080 
1080 
     | 
    
         
             
                    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
         
     | 
| 
       1081 
1081 
     | 
    
         
             
                    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/students?starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5968049e75a9262d0647"}]}'
         
     | 
| 
       1082 
1082 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1083 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1083 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1084 
1084 
     | 
    
         
             
            - request:
         
     | 
| 
       1085 
1085 
     | 
    
         
             
                method: get
         
     | 
| 
       1086 
1086 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students?starting_after=530e5968049e75a9262d0647
         
     | 
| 
         @@ -1089,7 +1089,7 @@ http_interactions: 
     | 
|
| 
       1089 
1089 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1090 
1090 
     | 
    
         
             
                headers:
         
     | 
| 
       1091 
1091 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1092 
     | 
    
         
            -
                  -  
     | 
| 
      
 1092 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1093 
1093 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1094 
1094 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1095 
1095 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1104,13 +1104,13 @@ http_interactions: 
     | 
|
| 
       1104 
1104 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1105 
1105 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1106 
1106 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1107 
     | 
    
         
            -
                  -  
     | 
| 
      
 1107 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1108 
1108 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1109 
1109 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1110 
1110 
     | 
    
         
             
                  Date:
         
     | 
| 
       1111 
     | 
    
         
            -
                  -  
     | 
| 
      
 1111 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1112 
1112 
     | 
    
         
             
                  Etag:
         
     | 
| 
       1113 
     | 
    
         
            -
                  - '"-1554319852"'
         
     | 
| 
      
 1113 
     | 
    
         
            +
                  - ! '"-1554319852"'
         
     | 
| 
       1114 
1114 
     | 
    
         
             
                  Server:
         
     | 
| 
       1115 
1115 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1116 
1116 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1120,13 +1120,13 @@ http_interactions: 
     | 
|
| 
       1120 
1120 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1121 
1121 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1122 
1122 
     | 
    
         
             
                body:
         
     | 
| 
       1123 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1124 
     | 
    
         
            -
                  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
         
     | 
| 
      
 1123 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  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
         
     | 
| 
       1125 
1125 
     | 
    
         
             
                    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
         
     | 
| 
       1126 
1126 
     | 
    
         
             
                    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
         
     | 
| 
       1127 
1127 
     | 
    
         
             
                    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/students?starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5968049e75a9262d0648"}]}'
         
     | 
| 
       1128 
1128 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1129 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1129 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1130 
1130 
     | 
    
         
             
            - request:
         
     | 
| 
       1131 
1131 
     | 
    
         
             
                method: get
         
     | 
| 
       1132 
1132 
     | 
    
         
             
                uri: https://DEMO_KEY:@api.clever.com/v1.1/students?count=true
         
     | 
| 
         @@ -1135,7 +1135,7 @@ http_interactions: 
     | 
|
| 
       1135 
1135 
     | 
    
         
             
                  string: ''
         
     | 
| 
       1136 
1136 
     | 
    
         
             
                headers:
         
     | 
| 
       1137 
1137 
     | 
    
         
             
                  Accept:
         
     | 
| 
       1138 
     | 
    
         
            -
                  -  
     | 
| 
      
 1138 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
       1139 
1139 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       1140 
1140 
     | 
    
         
             
                  - gzip, deflate
         
     | 
| 
       1141 
1141 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
         @@ -1150,11 +1150,11 @@ http_interactions: 
     | 
|
| 
       1150 
1150 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       1151 
1151 
     | 
    
         
             
                  - GET,PATCH,POST,DELETE
         
     | 
| 
       1152 
1152 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       1153 
     | 
    
         
            -
                  -  
     | 
| 
      
 1153 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
       1154 
1154 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       1155 
1155 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       1156 
1156 
     | 
    
         
             
                  Date:
         
     | 
| 
       1157 
     | 
    
         
            -
                  -  
     | 
| 
      
 1157 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1158 
1158 
     | 
    
         
             
                  Server:
         
     | 
| 
       1159 
1159 
     | 
    
         
             
                  - nginx/1.4.7
         
     | 
| 
       1160 
1160 
     | 
    
         
             
                  X-Powered-By:
         
     | 
| 
         @@ -1164,8 +1164,8 @@ http_interactions: 
     | 
|
| 
       1164 
1164 
     | 
    
         
             
                  Connection:
         
     | 
| 
       1165 
1165 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       1166 
1166 
     | 
    
         
             
                body:
         
     | 
| 
       1167 
     | 
    
         
            -
                  encoding:  
     | 
| 
       1168 
     | 
    
         
            -
                  string: '{"count":1004,"links":[{"rel":"self","uri":"/v1.1/students?count=true"}]}'
         
     | 
| 
      
 1167 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  string: ! '{"count":1004,"links":[{"rel":"self","uri":"/v1.1/students?count=true"}]}'
         
     | 
| 
       1169 
1169 
     | 
    
         
             
                http_version: 
         
     | 
| 
       1170 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 1170 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:24 GMT
         
     | 
| 
       1171 
1171 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     |