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
 
| 
         @@ -0,0 +1,161 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com/v1.1/students
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 14 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 27 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 29 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:00 GMT
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - ! '"-1704869160"'
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 35 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - '66289'
         
     | 
| 
      
 39 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 41 
     | 
    
         
            +
                body:
         
     | 
| 
      
 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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                    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
         
     | 
| 
      
 47 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"106867300","state_id":"863433981","student_number":"106867300","id":"530e5960049e75a9262cff21"},"uri":"/v1.1/students/530e5960049e75a9262cff21"},{"data":{"created":"2014-02-26T21:15:12.386Z","credentials":{"district_username":"sandrar91","district_password":"en1wae4AT"},"district":"4fd43cc56d11340000000005","dob":"6/26/1999","ell_status":"N","email":"r.sandra@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.677Z","location":{"zip":"10474"},"name":{"first":"Sandra","middle":"S","last":"Ritchie"},"race":"Black
         
     | 
| 
      
 48 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"107368591","state_id":"989845610","student_number":"107368591","id":"530e5960049e75a9262cff22"},"uri":"/v1.1/students/530e5960049e75a9262cff22"},{"data":{"created":"2014-02-26T21:15:12.391Z","credentials":{"district_username":"juliar95","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"1/29/1998","ell_status":"Y","email":"julia.r@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.679Z","location":{"zip":"11239"},"name":{"first":"Julia","middle":"B","last":"Runolfsdottir"},"race":"Black
         
     | 
| 
      
 49 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"108028995","state_id":"339598426","student_number":"108028995","id":"530e5960049e75a9262cff23"},"uri":"/v1.1/students/530e5960049e75a9262cff23"},{"data":{"created":"2014-02-26T21:15:12.400Z","credentials":{"district_username":"nancyh91","district_password":"teiPah1kao"},"district":"4fd43cc56d11340000000005","dob":"12/23/2003","ell_status":"N","email":"h.nancy@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.684Z","location":{"zip":"11236"},"name":{"first":"Nancy","middle":"Z","last":"Heller"},"race":"Black
         
     | 
| 
      
 50 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"109071891","state_id":"985627386","student_number":"109071891","id":"530e5960049e75a9262cff24"},"uri":"/v1.1/students/530e5960049e75a9262cff24"},{"data":{"created":"2014-02-26T21:15:12.410Z","credentials":{"district_username":"debrab27","district_password":"EShah6quoh2qu"},"district":"4fd43cc56d11340000000005","dob":"10/21/2001","ell_status":"Y","email":"debra.b@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.690Z","location":{"zip":"10302"},"name":{"first":"Debra","middle":"F","last":"Boyle"},"race":"Two
         
     | 
| 
      
 51 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"109999627","state_id":"393918489","student_number":"109999627","id":"530e5960049e75a9262cff25"},"uri":"/v1.1/students/530e5960049e75a9262cff25"},{"data":{"created":"2014-02-26T21:15:12.422Z","credentials":{"district_username":"yvettec36","district_password":"ya5piX9Oh"},"district":"4fd43cc56d11340000000005","dob":"5/18/1997","ell_status":"N","email":"c_yvette@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.694Z","location":{"zip":"11385"},"name":{"first":"Yvette","middle":"W","last":"Cummings"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"112258136","state_id":"373187439","student_number":"112258136","id":"530e5960049e75a9262cff26"},"uri":"/v1.1/students/530e5960049e75a9262cff26"},{"data":{"created":"2014-02-26T21:15:12.430Z","credentials":{"district_username":"geraldp09","district_password":"ieg6piLoc"},"district":"4fd43cc56d11340000000005","dob":"8/27/1998","ell_status":"Y","email":"p.gerald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.698Z","location":{"zip":"11691"},"name":{"first":"Gerald","middle":"J","last":"Parisian"},"race":"Two
         
     | 
| 
      
 52 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"114061609","state_id":"363863262","student_number":"114061609","id":"530e5960049e75a9262cff27"},"uri":"/v1.1/students/530e5960049e75a9262cff27"},{"data":{"created":"2014-02-26T21:15:12.437Z","credentials":{"district_username":"nancyh13","district_password":"jiNgu0foewo1"},"district":"4fd43cc56d11340000000005","dob":"10/17/2004","ell_status":"N","email":"nancy.h@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.702Z","location":{"zip":"10040"},"name":{"first":"Nancy","middle":"M","last":"Hodkiewicz"},"race":"Two
         
     | 
| 
      
 53 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"114188213","state_id":"485519977","student_number":"114188213","id":"530e5960049e75a9262cff28"},"uri":"/v1.1/students/530e5960049e75a9262cff28"},{"data":{"created":"2014-02-26T21:15:12.443Z","credentials":{"district_username":"maen58","district_password":"faeR9buF"},"district":"4fd43cc56d11340000000005","dob":"5/22/1999","ell_status":"Y","email":"n_mae@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.707Z","location":{"zip":"10014"},"name":{"first":"Mae","middle":"L","last":"Nitzsche"},"race":"Black
         
     | 
| 
      
 54 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"114766758","state_id":"361263052","student_number":"114766758","id":"530e5960049e75a9262cff29"},"uri":"/v1.1/students/530e5960049e75a9262cff29"},{"data":{"created":"2014-02-26T21:15:12.449Z","credentials":{"district_username":"deborahs94","district_password":"Thei2nai4"},"district":"4fd43cc56d11340000000005","dob":"3/17/2006","ell_status":"N","email":"s_deborah@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.712Z","location":{"zip":"11693"},"name":{"first":"Deborah","middle":"J","last":"Stracke"},"race":"Black
         
     | 
| 
      
 55 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"114877594","state_id":"494975662","student_number":"114877594","id":"530e5960049e75a9262cff2b"},"uri":"/v1.1/students/530e5960049e75a9262cff2b"},{"data":{"created":"2014-02-26T21:15:12.454Z","credentials":{"district_username":"maryr27","district_password":"ohVie2aeD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2003","ell_status":"N","email":"mary_r@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.728Z","location":{"zip":"10038"},"name":{"first":"Mary","middle":"L","last":"Ryan"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"115088927","state_id":"155063237","student_number":"115088927","id":"530e5960049e75a9262cff2d"},"uri":"/v1.1/students/530e5960049e75a9262cff2d"},{"data":{"created":"2014-02-26T21:15:12.461Z","credentials":{"district_username":"erickc24","district_password":"eeX9ied5ee"},"district":"4fd43cc56d11340000000005","dob":"3/25/1996","ell_status":"N","email":"erick_c@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.731Z","location":{"zip":"10128"},"name":{"first":"Erick","middle":"D","last":"Collins"},"race":"Two
         
     | 
| 
      
 56 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"115115824","state_id":"761459009","student_number":"115115824","id":"530e5960049e75a9262cff2f"},"uri":"/v1.1/students/530e5960049e75a9262cff2f"},{"data":{"created":"2014-02-26T21:15:12.473Z","credentials":{"district_username":"arleneh66","district_password":"ak0yahReesie"},"district":"4fd43cc56d11340000000005","dob":"11/26/2002","ell_status":"Y","email":"h.arlene@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.735Z","location":{"zip":"11206"},"name":{"first":"Arlene","middle":"K","last":"Huels"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"118346066","state_id":"483748383","student_number":"118346066","id":"530e5960049e75a9262cff33"},"uri":"/v1.1/students/530e5960049e75a9262cff33"},{"data":{"created":"2014-02-26T21:15:12.486Z","credentials":{"district_username":"daniloc44","district_password":"ooph8aiLe"},"district":"4fd43cc56d11340000000005","dob":"11/16/1999","ell_status":"Y","email":"danilo_c@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.741Z","location":{"zip":"10456"},"name":{"first":"Danilo","middle":"S","last":"Carter"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"119227044","state_id":"320059203","student_number":"119227044","id":"530e5960049e75a9262cff37"},"uri":"/v1.1/students/530e5960049e75a9262cff37"},{"data":{"created":"2014-02-26T21:15:12.492Z","credentials":{"district_username":"shawnw68","district_password":"nuY3yaeY9Lei"},"district":"4fd43cc56d11340000000005","dob":"3/11/1997","ell_status":"N","email":"shawn_w@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.745Z","location":{"zip":"10303"},"name":{"first":"Shawn","middle":"S","last":"Willms"},"race":"Black
         
     | 
| 
      
 57 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"119477368","state_id":"852618443","student_number":"119477368","id":"530e5960049e75a9262cff39"},"uri":"/v1.1/students/530e5960049e75a9262cff39"},{"data":{"created":"2014-02-26T21:15:12.498Z","credentials":{"district_username":"fredt34","district_password":"ieXahy1j"},"district":"4fd43cc56d11340000000005","dob":"10/30/1998","ell_status":"Y","email":"fred.t@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.748Z","location":{"zip":"10003"},"name":{"first":"Fred","middle":"W","last":"Trantow"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"119622134","state_id":"354252109","student_number":"119622134","id":"530e5960049e75a9262cff3c"},"uri":"/v1.1/students/530e5960049e75a9262cff3c"},{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:12.524Z","credentials":{"district_username":"scottb73","district_password":"Lah5Mooh4"},"district":"4fd43cc56d11340000000005","dob":"5/1/1998","ell_status":"Y","email":"b.scott@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.756Z","location":{"zip":"10009"},"name":{"first":"Scott","middle":"D","last":"Bradtke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"120804373","state_id":"258353799","student_number":"120804373","id":"530e5960049e75a9262cff42"},"uri":"/v1.1/students/530e5960049e75a9262cff42"},{"data":{"created":"2014-02-26T21:15:12.530Z","credentials":{"district_username":"erinw91","district_password":"chie1VeePep9ie"},"district":"4fd43cc56d11340000000005","dob":"1/24/2000","ell_status":"N","email":"erin_w@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.759Z","location":{"zip":"10453"},"name":{"first":"Erin","middle":"M","last":"West"},"race":"Black
         
     | 
| 
      
 58 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"121183091","state_id":"306567894","student_number":"121183091","id":"530e5960049e75a9262cff44"},"uri":"/v1.1/students/530e5960049e75a9262cff44"},{"data":{"created":"2014-02-26T21:15:12.542Z","credentials":{"district_username":"marcias19","district_password":"aiPo1thoo"},"district":"4fd43cc56d11340000000005","dob":"12/2/1997","ell_status":"Y","email":"s_marcia@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.763Z","location":{"zip":"11693"},"name":{"first":"Marcia","middle":"W","last":"Smith"},"race":"Black
         
     | 
| 
      
 59 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"121779919","state_id":"632956505","student_number":"121779919","id":"530e5960049e75a9262cff48"},"uri":"/v1.1/students/530e5960049e75a9262cff48"},{"data":{"created":"2014-02-26T21:15:12.545Z","credentials":{"district_username":"corar18","district_password":"noiphai2Ai"},"district":"4fd43cc56d11340000000005","dob":"2/28/2001","ell_status":"Y","email":"cora.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.768Z","location":{"zip":"10044"},"name":{"first":"Cora","middle":"S","last":"Ryan"},"race":"Two
         
     | 
| 
      
 60 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"122753218","state_id":"157023489","student_number":"122753218","id":"530e5960049e75a9262cff49"},"uri":"/v1.1/students/530e5960049e75a9262cff49"},{"data":{"created":"2014-02-26T21:15:12.550Z","credentials":{"district_username":"michelh98","district_password":"Eir2Tho1ae"},"district":"4fd43cc56d11340000000005","dob":"6/3/2005","ell_status":"N","email":"h.michel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.772Z","location":{"zip":"11205"},"name":{"first":"Michel","middle":"N","last":"Haley"},"race":"Black
         
     | 
| 
      
 61 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"122945598","state_id":"464810876","student_number":"122945598","id":"530e5960049e75a9262cff4a"},"uri":"/v1.1/students/530e5960049e75a9262cff4a"},{"data":{"created":"2014-02-26T21:15:12.554Z","credentials":{"district_username":"bethg07","district_password":"aifoh6naeJei"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"N","email":"g.beth@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-13T00:45:00.716Z","location":{"zip":"10303"},"name":{"first":"Elizabeth","last":"Grimes","middle":"R"},"race":"Two
         
     | 
| 
      
 62 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"123512007","state_id":"151360801","student_number":"123512007","id":"530e5960049e75a9262cff4b"},"uri":"/v1.1/students/530e5960049e75a9262cff4b"},{"data":{"created":"2014-02-26T21:15:12.558Z","credentials":{"district_username":"ianm93","district_password":"ShoPh9soor"},"district":"4fd43cc56d11340000000005","dob":"6/3/1996","ell_status":"N","email":"ian.m@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.778Z","location":{"zip":"10010"},"name":{"first":"Ian","middle":"V","last":"Mayert"},"race":"Black
         
     | 
| 
      
 63 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"123954193","state_id":"924214454","student_number":"123954193","id":"530e5960049e75a9262cff4c"},"uri":"/v1.1/students/530e5960049e75a9262cff4c"},{"data":{"created":"2014-02-26T21:15:12.564Z","credentials":{"district_username":"tracyk26","district_password":"phei0Bibie"},"district":"4fd43cc56d11340000000005","dob":"12/13/1996","ell_status":"N","email":"tracy.k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.783Z","location":{"zip":"10001"},"name":{"first":"Tracy","middle":"K","last":"Kutch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"124482526","state_id":"393802973","student_number":"124482526","id":"530e5960049e75a9262cff4d"},"uri":"/v1.1/students/530e5960049e75a9262cff4d"},{"data":{"created":"2014-02-26T21:15:12.571Z","credentials":{"district_username":"theronk88","district_password":"eingeob1Th"},"district":"4fd43cc56d11340000000005","dob":"1/20/2001","ell_status":"N","email":"k.theron@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.787Z","location":{"zip":"11237"},"name":{"first":"Theron","middle":"T","last":"Kuvalis"},"race":"Two
         
     | 
| 
      
 64 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"126646288","state_id":"549916713","student_number":"126646288","id":"530e5960049e75a9262cff4e"},"uri":"/v1.1/students/530e5960049e75a9262cff4e"},{"data":{"created":"2014-02-26T21:15:12.575Z","credentials":{"district_username":"francesd07","district_password":"ievahf0Y"},"district":"4fd43cc56d11340000000005","dob":"2/18/1997","ell_status":"N","email":"frances_d@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.790Z","location":{"zip":"10009"},"name":{"first":"Frances","middle":"R","last":"Daniel"},"race":"Black
         
     | 
| 
      
 65 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"127629107","state_id":"394114229","student_number":"127629107","id":"530e5960049e75a9262cff4f"},"uri":"/v1.1/students/530e5960049e75a9262cff4f"},{"data":{"created":"2014-02-26T21:15:12.579Z","credentials":{"district_username":"dianec39","district_password":"Sha1Yieng"},"district":"4fd43cc56d11340000000005","dob":"2/25/2001","ell_status":"Y","email":"c_diane@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.794Z","location":{"zip":"11223"},"name":{"first":"Diane","middle":"R","last":"Cole"},"race":"Black
         
     | 
| 
      
 66 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"128729839","state_id":"941724516","student_number":"128729839","id":"530e5960049e75a9262cff50"},"uri":"/v1.1/students/530e5960049e75a9262cff50"},{"data":{"created":"2014-02-26T21:15:12.584Z","credentials":{"district_username":"moisesp85","district_password":"Lee0noofie3"},"district":"4fd43cc56d11340000000005","dob":"7/21/1996","ell_status":"N","email":"p_moises@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.799Z","location":{"zip":"11369"},"name":{"first":"Moises","middle":"J","last":"Pfannerstill"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"129211485","state_id":"427345603","student_number":"129211485","id":"530e5960049e75a9262cff51"},"uri":"/v1.1/students/530e5960049e75a9262cff51"},{"data":{"created":"2014-02-26T21:15:12.588Z","credentials":{"district_username":"johnl92","district_password":"Authelai6ee"},"district":"4fd43cc56d11340000000005","dob":"3/27/1995","ell_status":"Y","email":"john_l@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.803Z","location":{"zip":"11356"},"name":{"first":"John","middle":"J","last":"Luettgen"},"race":"Black
         
     | 
| 
      
 67 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"129404892","state_id":"365733915","student_number":"129404892","id":"530e5960049e75a9262cff52"},"uri":"/v1.1/students/530e5960049e75a9262cff52"},{"data":{"created":"2014-02-26T21:15:12.594Z","credentials":{"district_username":"markm66","district_password":"ohpi7LieNg"},"district":"4fd43cc56d11340000000005","dob":"9/22/1996","ell_status":"N","email":"mark_m@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.805Z","location":{"zip":"11379"},"name":{"first":"Mark","middle":"E","last":"Mueller"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"129629166","state_id":"475570964","student_number":"129629166","id":"530e5960049e75a9262cff53"},"uri":"/v1.1/students/530e5960049e75a9262cff53"},{"data":{"created":"2014-02-26T21:15:12.603Z","credentials":{"district_username":"josephl30","district_password":"aeD7eiphuuR"},"district":"4fd43cc56d11340000000005","dob":"10/20/1995","ell_status":"N","email":"l.joseph@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.809Z","location":{"zip":"11212"},"name":{"first":"Joseph","middle":"J","last":"Lind"},"race":"Two
         
     | 
| 
      
 68 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"130662730","state_id":"790259704","student_number":"130662730","id":"530e5960049e75a9262cff54"},"uri":"/v1.1/students/530e5960049e75a9262cff54"},{"data":{"created":"2014-02-26T21:15:12.608Z","credentials":{"district_username":"luzb35","district_password":"zeuJ8Roo2r"},"district":"4fd43cc56d11340000000005","dob":"10/7/2007","ell_status":"N","email":"b_luz@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.814Z","location":{"zip":"11367"},"name":{"first":"Luz","middle":"M","last":"Bins"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"130790035","state_id":"416103381","student_number":"130790035","id":"530e5960049e75a9262cff55"},"uri":"/v1.1/students/530e5960049e75a9262cff55"},{"data":{"created":"2014-02-26T21:15:12.616Z","credentials":{"district_username":"edgary05","district_password":"pohzio9Leexu"},"district":"4fd43cc56d11340000000005","dob":"5/6/2004","ell_status":"N","email":"edgar_y@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.818Z","location":{"zip":"10012"},"name":{"first":"Edgar","middle":"N","last":"Yost"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"131222005","state_id":"432306457","student_number":"131222005","id":"530e5960049e75a9262cff56"},"uri":"/v1.1/students/530e5960049e75a9262cff56"},{"data":{"created":"2014-02-26T21:15:12.630Z","credentials":{"district_username":"giovannio63","district_password":"eiG7ahyee"},"district":"4fd43cc56d11340000000005","dob":"9/16/1999","ell_status":"N","email":"o_giovanni@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.821Z","location":{"zip":"10471"},"name":{"first":"Giovanni","middle":"M","last":"Osinski"},"race":"Two
         
     | 
| 
      
 69 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"132323163","state_id":"214818376","student_number":"132323163","id":"530e5960049e75a9262cff57"},"uri":"/v1.1/students/530e5960049e75a9262cff57"},{"data":{"created":"2014-02-26T21:15:12.636Z","credentials":{"district_username":"lakeishak03","district_password":"Meejahgo6qu"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"lakeisha_k@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.824Z","location":{"zip":"10030"},"name":{"first":"Lakeisha","middle":"E","last":"Kovacek"},"race":"Black
         
     | 
| 
      
 70 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"132765903","state_id":"385458717","student_number":"132765903","id":"530e5960049e75a9262cff58"},"uri":"/v1.1/students/530e5960049e75a9262cff58"},{"data":{"created":"2014-02-26T21:15:12.644Z","credentials":{"district_username":"josephc65","district_password":"wiol9waiJeth"},"district":"4fd43cc56d11340000000005","dob":"12/30/2000","ell_status":"N","email":"joseph_c@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.829Z","location":{"zip":"11218"},"name":{"first":"Joseph","middle":"V","last":"Cruickshank"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"133517565","state_id":"925454999","student_number":"133517565","id":"530e5960049e75a9262cff59"},"uri":"/v1.1/students/530e5960049e75a9262cff59"},{"data":{"created":"2014-02-26T21:15:12.652Z","credentials":{"district_username":"ralpht98","district_password":"oongei3Poor"},"district":"4fd43cc56d11340000000005","dob":"6/30/1998","ell_status":"N","email":"ralph.t@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.833Z","location":{"zip":"10016"},"name":{"first":"Ralph","middle":"V","last":"Torphy"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"133537898","state_id":"480517609","student_number":"133537898","id":"530e5960049e75a9262cff5b"},"uri":"/v1.1/students/530e5960049e75a9262cff5b"},{"data":{"created":"2014-02-26T21:15:12.659Z","credentials":{"district_username":"dannyg60","district_password":"ohto5naiFao"},"district":"4fd43cc56d11340000000005","dob":"3/20/2007","ell_status":"Y","email":"danny.g@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.836Z","location":{"zip":"11378"},"name":{"first":"Danny","middle":"A","last":"Greenholt"},"race":"Black
         
     | 
| 
      
 71 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"134052560","state_id":"858732007","student_number":"134052560","id":"530e5960049e75a9262cff5d"},"uri":"/v1.1/students/530e5960049e75a9262cff5d"},{"data":{"created":"2014-02-26T21:15:12.671Z","credentials":{"district_username":"jessem58","district_password":"Ohngah7ohp"},"district":"4fd43cc56d11340000000005","dob":"3/9/2001","ell_status":"N","email":"jesse.m@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.840Z","location":{"zip":"10024"},"name":{"first":"Jesse","middle":"M","last":"McGlynn"},"race":"American
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9ff","sis_id":"134654858","state_id":"112453591","student_number":"134654858","id":"530e5960049e75a9262cff61"},"uri":"/v1.1/students/530e5960049e75a9262cff61"},{"data":{"created":"2014-02-26T21:15:12.679Z","credentials":{"district_username":"sandrar73","district_password":"Okiepoh7oo"},"district":"4fd43cc56d11340000000005","dob":"2/13/2001","ell_status":"Y","email":"sandra.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.845Z","location":{"zip":"11370"},"name":{"first":"Sandra","middle":"W","last":"Rowe"},"race":"Black
         
     | 
| 
      
 73 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"134720573","state_id":"176031777","student_number":"134720573","id":"530e5960049e75a9262cff64"},"uri":"/v1.1/students/530e5960049e75a9262cff64"},{"data":{"created":"2014-02-26T21:15:12.688Z","credentials":{"district_username":"heatherm26","district_password":"eizoo4Dahru"},"district":"4fd43cc56d11340000000005","dob":"8/5/1995","ell_status":"Y","email":"m_heather@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.849Z","location":{"zip":"10301"},"name":{"first":"Heather","middle":"E","last":"MacGyver"},"race":"American
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"135635226","state_id":"568110703","student_number":"135635226","id":"530e5960049e75a9262cff67"},"uri":"/v1.1/students/530e5960049e75a9262cff67"},{"data":{"created":"2014-02-26T21:15:12.697Z","credentials":{"district_username":"clarettas30","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1995","ell_status":"Y","email":"s_claretta@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.851Z","location":{"zip":"11361"},"name":{"first":"Claretta","middle":"C","last":"Steuber"},"race":"Black
         
     | 
| 
      
 75 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"136380730","state_id":"307304843","student_number":"136380730","id":"530e5960049e75a9262cff6a"},"uri":"/v1.1/students/530e5960049e75a9262cff6a"},{"data":{"created":"2014-02-26T21:15:12.713Z","credentials":{"district_username":"lisab30","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"9/12/2002","ell_status":"N","email":"b_lisa@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.855Z","location":{"zip":"11370"},"name":{"first":"Lisa","middle":"B","last":"Botsford"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"136422830","state_id":"258401272","student_number":"136422830","id":"530e5960049e75a9262cff6c"},"uri":"/v1.1/students/530e5960049e75a9262cff6c"},{"data":{"created":"2014-02-26T21:15:12.721Z","credentials":{"district_username":"amberw60","district_password":"Tu5sahdoh"},"district":"4fd43cc56d11340000000005","dob":"2/26/2006","ell_status":"N","email":"amber_w@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.860Z","location":{"zip":"11429"},"name":{"first":"Amber","middle":"J","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137019560","state_id":"650349892","student_number":"137019560","id":"530e5960049e75a9262cff6e"},"uri":"/v1.1/students/530e5960049e75a9262cff6e"},{"data":{"created":"2014-02-26T21:15:12.734Z","credentials":{"district_username":"lloydc63","district_password":"ohChah5t"},"district":"4fd43cc56d11340000000005","dob":"11/21/2005","ell_status":"N","email":"c.lloyd@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.864Z","location":{"zip":"10014"},"name":{"first":"Lloyd","middle":"P","last":"Collier"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137569863","state_id":"997363437","student_number":"137569863","id":"530e5960049e75a9262cff72"},"uri":"/v1.1/students/530e5960049e75a9262cff72"},{"data":{"created":"2014-02-26T21:15:12.746Z","credentials":{"district_username":"serenab06","district_password":"shu9shiNich"},"district":"4fd43cc56d11340000000005","dob":"4/10/2007","ell_status":"N","email":"b_serena@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.867Z","location":{"zip":"11216"},"name":{"first":"Serena","middle":"E","last":"Beer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"138030806","state_id":"298722069","student_number":"138030806","id":"530e5960049e75a9262cff76"},"uri":"/v1.1/students/530e5960049e75a9262cff76"},{"data":{"created":"2014-02-26T21:15:12.762Z","credentials":{"district_username":"vincenzoc30","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"5/31/2004","ell_status":"N","email":"vincenzo_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.870Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Cronin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"142650130","state_id":"595801763","student_number":"142650130","id":"530e5960049e75a9262cff78"},"uri":"/v1.1/students/530e5960049e75a9262cff78"},{"data":{"created":"2014-02-26T21:15:12.769Z","credentials":{"district_username":"kathyk90","district_password":"eeD2Zei8yoL"},"district":"4fd43cc56d11340000000005","dob":"4/21/1999","ell_status":"N","email":"kathy_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.875Z","location":{"zip":"10474"},"name":{"first":"Kathy","middle":"J","last":"Keeling"},"race":"Black
         
     | 
| 
      
 76 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"142858690","state_id":"397018257","student_number":"142858690","id":"530e5960049e75a9262cff79"},"uri":"/v1.1/students/530e5960049e75a9262cff79"},{"data":{"created":"2014-02-26T21:15:12.774Z","credentials":{"district_username":"jeffreyk79","district_password":"tohgaK5zoo"},"district":"4fd43cc56d11340000000005","dob":"9/17/1998","ell_status":"Y","email":"k_jeffrey@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.879Z","location":{"zip":"11357"},"name":{"first":"Jeffrey","middle":"M","last":"Kuphal"},"race":"Two
         
     | 
| 
      
 77 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"143899679","state_id":"381712167","student_number":"143899679","id":"530e5960049e75a9262cff7a"},"uri":"/v1.1/students/530e5960049e75a9262cff7a"},{"data":{"created":"2014-02-26T21:15:12.781Z","credentials":{"district_username":"rebar71","district_password":"Zahboi4ji8"},"district":"4fd43cc56d11340000000005","dob":"10/31/1997","ell_status":"N","email":"r.reba@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.882Z","location":{"zip":"11220"},"name":{"first":"Reba","middle":"J","last":"Reynolds"},"race":"Black
         
     | 
| 
      
 78 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"146278371","state_id":"619403122","student_number":"146278371","id":"530e5960049e75a9262cff7b"},"uri":"/v1.1/students/530e5960049e75a9262cff7b"},{"data":{"created":"2014-02-26T21:15:12.787Z","credentials":{"district_username":"keithp41","district_password":"Jiehaez7Ai"},"district":"4fd43cc56d11340000000005","dob":"6/2/1996","ell_status":"N","email":"keith_p@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.886Z","location":{"zip":"10308"},"name":{"first":"Keith","middle":"A","last":"Prohaska"},"race":"American
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"146447741","state_id":"526227648","student_number":"146447741","id":"530e5960049e75a9262cff7c"},"uri":"/v1.1/students/530e5960049e75a9262cff7c"},{"data":{"created":"2014-02-26T21:15:12.821Z","credentials":{"district_username":"williamv49","district_password":"howueSh7"},"district":"4fd43cc56d11340000000005","dob":"12/14/2001","ell_status":"Y","email":"v.william@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.902Z","location":{"zip":"10032"},"name":{"first":"William","middle":"A","last":"VonRueden"},"race":"Two
         
     | 
| 
      
 80 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"149789849","state_id":"129432406","student_number":"149789849","id":"530e5960049e75a9262cff86"},"uri":"/v1.1/students/530e5960049e75a9262cff86"},{"data":{"created":"2014-02-26T21:15:12.853Z","credentials":{"district_username":"manuelb70","district_password":"aj5eeSai7B"},"district":"4fd43cc56d11340000000005","dob":"10/23/1995","ell_status":"Y","email":"manuel.b@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.906Z","location":{"zip":"11211"},"name":{"first":"Manuel","middle":"I","last":"Brakus"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"153274070","state_id":"791610984","student_number":"153274070","id":"530e5960049e75a9262cff90"},"uri":"/v1.1/students/530e5960049e75a9262cff90"},{"data":{"created":"2014-02-26T21:15:12.858Z","credentials":{"district_username":"ivoryw40","district_password":"Keer7Iitoof"},"district":"4fd43cc56d11340000000005","dob":"1/29/2006","ell_status":"Y","email":"w.ivory@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.918Z","location":{"zip":"10004"},"name":{"first":"Ivory","middle":"W","last":"Waelchi"},"race":"Two
         
     | 
| 
      
 81 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"155728240","state_id":"823608122","student_number":"155728240","id":"530e5960049e75a9262cff92"},"uri":"/v1.1/students/530e5960049e75a9262cff92"},{"data":{"created":"2014-02-26T21:15:12.865Z","credentials":{"district_username":"rogerr70","district_password":"Zaom1ahshoh"},"district":"4fd43cc56d11340000000005","dob":"2/25/2005","ell_status":"N","email":"r_roger@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.909Z","location":{"zip":"11414"},"name":{"first":"Roger","middle":"C","last":"Rohan"},"race":"Black
         
     | 
| 
      
 82 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"153990370","state_id":"318208963","student_number":"153990370","id":"530e5960049e75a9262cff94"},"uri":"/v1.1/students/530e5960049e75a9262cff94"},{"data":{"created":"2014-02-26T21:15:12.872Z","credentials":{"district_username":"susanb50","district_password":"dooWi3bo3"},"district":"4fd43cc56d11340000000005","dob":"9/25/1997","ell_status":"N","email":"b_susan@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.913Z","location":{"zip":"11377"},"name":{"first":"Susan","middle":"J","last":"Bradtke"},"race":"Two
         
     | 
| 
      
 83 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"154186850","state_id":"168140106","student_number":"154186850","id":"530e5960049e75a9262cff95"},"uri":"/v1.1/students/530e5960049e75a9262cff95"},{"data":{"created":"2014-02-26T21:15:12.882Z","credentials":{"district_username":"ivoryu66","district_password":"pheeph0Vi2m"},"district":"4fd43cc56d11340000000005","dob":"3/27/1997","ell_status":"N","email":"ivory_u@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.923Z","location":{"zip":"11360"},"name":{"first":"Ivory","middle":"D","last":"Ullrich"},"race":"Black
         
     | 
| 
      
 84 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"156540966","state_id":"898550447","student_number":"156540966","id":"530e5960049e75a9262cff96"},"uri":"/v1.1/students/530e5960049e75a9262cff96"},{"data":{"created":"2014-02-26T21:15:12.887Z","credentials":{"district_username":"tonir12","district_password":"Xiephai6"},"district":"4fd43cc56d11340000000005","dob":"10/5/2006","ell_status":"Y","email":"toni_r@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.926Z","location":{"zip":"11104"},"name":{"first":"Toni","middle":"R","last":"Roberts"},"race":"Black
         
     | 
| 
      
 85 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"157515512","state_id":"463790341","student_number":"157515512","id":"530e5960049e75a9262cff97"},"uri":"/v1.1/students/530e5960049e75a9262cff97"},{"data":{"created":"2014-02-26T21:15:12.891Z","credentials":{"district_username":"selmar07","district_password":"ier1oomee8Ei"},"district":"4fd43cc56d11340000000005","dob":"4/15/1996","ell_status":"N","email":"r_selma@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.930Z","location":{"zip":"11218"},"name":{"first":"Selma","middle":"A","last":"Russel"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"157730707","state_id":"200628810","student_number":"157730707","id":"530e5960049e75a9262cff98"},"uri":"/v1.1/students/530e5960049e75a9262cff98"},{"data":{"created":"2014-02-26T21:15:12.894Z","credentials":{"district_username":"matthewz51","district_password":"muWeiji0Fef"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"z.matthew@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.936Z","location":{"zip":"10005"},"name":{"first":"Matthew","middle":"M","last":"Zboncak"},"race":"Black
         
     | 
| 
      
 86 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"158264451","state_id":"148571124","student_number":"158264451","id":"530e5960049e75a9262cff99"},"uri":"/v1.1/students/530e5960049e75a9262cff99"},{"data":{"created":"2014-02-26T21:15:12.917Z","credentials":{"district_username":"cordeliam30","district_password":"Bochojah7Ex"},"district":"4fd43cc56d11340000000005","dob":"2/13/2000","ell_status":"N","email":"cordelia_m@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.940Z","location":{"zip":"10033"},"name":{"first":"Cordelia","middle":"R","last":"Miller"},"race":"Black
         
     | 
| 
      
 87 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"159281530","state_id":"787673988","student_number":"159281530","id":"530e5960049e75a9262cff9a"},"uri":"/v1.1/students/530e5960049e75a9262cff9a"},{"data":{"created":"2014-02-26T21:15:12.920Z","credentials":{"district_username":"timothyg52","district_password":"Iquaeg5ie"},"district":"4fd43cc56d11340000000005","dob":"11/2/2006","ell_status":"Y","email":"timothy.g@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.943Z","location":{"zip":"10031"},"name":{"first":"Timothy","middle":"K","last":"Grady"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"159541752","state_id":"770286362","student_number":"159541752","id":"530e5960049e75a9262cff9b"},"uri":"/v1.1/students/530e5960049e75a9262cff9b"},{"data":{"created":"2014-02-26T21:15:12.926Z","credentials":{"district_username":"jasminen49","district_password":"Ieba5Lie"},"district":"4fd43cc56d11340000000005","dob":"1/15/2005","ell_status":"N","email":"jasmine.n@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.948Z","location":{"zip":"10302"},"name":{"first":"Jasmine","middle":"D","last":"Nader"},"race":"Two
         
     | 
| 
      
 88 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"159803249","state_id":"720873854","student_number":"159803249","id":"530e5960049e75a9262cff9c"},"uri":"/v1.1/students/530e5960049e75a9262cff9c"},{"data":{"created":"2014-02-26T21:15:12.935Z","credentials":{"district_username":"keving40","district_password":"ru8Poudo9Sh"},"district":"4fd43cc56d11340000000005","dob":"9/10/2005","ell_status":"N","email":"kevin.g@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.953Z","location":{"zip":"10023"},"name":{"first":"Kevin","middle":"B","last":"Gottlieb"},"race":"Two
         
     | 
| 
      
 89 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"160303140","state_id":"584973738","student_number":"160303140","id":"530e5960049e75a9262cff9d"},"uri":"/v1.1/students/530e5960049e75a9262cff9d"},{"data":{"created":"2014-02-26T21:15:12.939Z","credentials":{"district_username":"lulat02","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"8/5/1999","ell_status":"N","email":"lula.t@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.957Z","location":{"zip":"11385"},"name":{"first":"Lula","middle":"R","last":"Thiel"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"160831102","state_id":"972603404","student_number":"160831102","id":"530e5960049e75a9262cff9e"},"uri":"/v1.1/students/530e5960049e75a9262cff9e"},{"data":{"created":"2014-02-26T21:15:12.946Z","credentials":{"district_username":"jennieg59","district_password":"haip5Fahqu"},"district":"4fd43cc56d11340000000005","dob":"9/5/1995","ell_status":"N","email":"g.jennie@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.960Z","location":{"zip":"11363"},"name":{"first":"Jennie","middle":"M","last":"Gorczany"},"race":"Two
         
     | 
| 
      
 90 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"161712659","state_id":"187048275","student_number":"161712659","id":"530e5960049e75a9262cff9f"},"uri":"/v1.1/students/530e5960049e75a9262cff9f"},{"data":{"created":"2014-02-26T21:15:12.952Z","credentials":{"district_username":"maryn86","district_password":"xeewoom7A"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"mary.n@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.964Z","location":{"zip":"11418"},"name":{"first":"Mary","middle":"R","last":"Nienow"},"race":"Black
         
     | 
| 
      
 91 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"161871886","state_id":"445642100","student_number":"161871886","id":"530e5960049e75a9262cffa0"},"uri":"/v1.1/students/530e5960049e75a9262cffa0"},{"data":{"created":"2014-02-26T21:15:12.960Z","credentials":{"district_username":"donnar40","district_password":"eeXur8zaeng"},"district":"4fd43cc56d11340000000005","dob":"2/10/1998","ell_status":"N","email":"donna.r@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.969Z","location":{"zip":"11416"},"name":{"first":"Donna","middle":"V","last":"Roob"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"162344240","state_id":"412037326","student_number":"162344240","id":"530e5960049e75a9262cffa2"},"uri":"/v1.1/students/530e5960049e75a9262cffa2"},{"data":{"created":"2014-02-26T21:15:12.966Z","credentials":{"district_username":"melvinv70","district_password":"Oohoh5Eiy"},"district":"4fd43cc56d11340000000005","dob":"6/7/1999","ell_status":"Y","email":"melvin.v@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.973Z","location":{"zip":"10303"},"name":{"first":"Melvin","middle":"S","last":"Veum"},"race":"Black
         
     | 
| 
      
 92 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"163240670","state_id":"123701189","student_number":"163240670","id":"530e5960049e75a9262cffa4"},"uri":"/v1.1/students/530e5960049e75a9262cffa4"},{"data":{"created":"2014-02-26T21:15:12.974Z","credentials":{"district_username":"briand67","district_password":"Abie5air6"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"N","email":"brian_d@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.975Z","location":{"zip":"11231"},"name":{"first":"Brian","middle":"E","last":"Dickinson"},"race":"Black
         
     | 
| 
      
 93 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"164473167","state_id":"253930603","student_number":"164473167","id":"530e5960049e75a9262cffa6"},"uri":"/v1.1/students/530e5960049e75a9262cffa6"},{"data":{"created":"2014-02-26T21:15:12.984Z","credentials":{"district_username":"catherineo48","district_password":"wahj5GiC8r"},"district":"4fd43cc56d11340000000005","dob":"2/10/2005","ell_status":"Y","email":"o_catherine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.979Z","location":{"zip":"10303"},"name":{"first":"Catherine","middle":"D","last":"O''Hara"},"race":"American
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fe","sis_id":"165006548","state_id":"957587261","student_number":"165006548","id":"530e5960049e75a9262cffa9"},"uri":"/v1.1/students/530e5960049e75a9262cffa9"},{"data":{"created":"2014-02-26T21:15:12.990Z","credentials":{"district_username":"nicolep36","district_password":"mie6Veid"},"district":"4fd43cc56d11340000000005","dob":"6/22/2006","ell_status":"Y","email":"nicole_p@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.984Z","location":{"zip":"11103"},"name":{"first":"Nicole","middle":"Z","last":"Paucek"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"165694036","state_id":"784780736","student_number":"165694036","id":"530e5960049e75a9262cffac"},"uri":"/v1.1/students/530e5960049e75a9262cffac"},{"data":{"created":"2014-02-26T21:15:13.003Z","credentials":{"district_username":"davidv33","district_password":"ahy9OhY4ooy"},"district":"4fd43cc56d11340000000005","dob":"11/27/1995","ell_status":"N","email":"david.v@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.988Z","location":{"zip":"11205"},"name":{"first":"David","middle":"O","last":"Von"},"race":"Black
         
     | 
| 
      
 95 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"166940033","state_id":"454242931","student_number":"166940033","id":"530e5961049e75a9262cffaf"},"uri":"/v1.1/students/530e5961049e75a9262cffaf"},{"data":{"created":"2014-02-26T21:15:13.016Z","credentials":{"district_username":"jeanettew71","district_password":"Phoos1eiD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2001","ell_status":"Y","email":"w.jeanette@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.991Z","location":{"zip":"11369"},"name":{"first":"Jeanette","middle":"D","last":"Walsh"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"168343271","state_id":"296595680","student_number":"168343271","id":"530e5961049e75a9262cffb4"},"uri":"/v1.1/students/530e5961049e75a9262cffb4"},{"data":{"created":"2014-02-26T21:15:13.026Z","credentials":{"district_username":"manuelg57","district_password":"uSh2ir4ee"},"district":"4fd43cc56d11340000000005","dob":"9/12/1995","ell_status":"N","email":"g_manuel@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.995Z","location":{"zip":"10304"},"name":{"first":"Manuel","middle":"E","last":"Gibson"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"169195857","state_id":"533497862","student_number":"169195857","id":"530e5961049e75a9262cffb7"},"uri":"/v1.1/students/530e5961049e75a9262cffb7"},{"data":{"created":"2014-02-26T21:15:13.039Z","credentials":{"district_username":"bethl85","district_password":"zieFoj0eic"},"district":"4fd43cc56d11340000000005","dob":"4/3/1996","ell_status":"N","email":"l_beth@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.000Z","location":{"zip":"11370"},"name":{"first":"Beth","middle":"R","last":"Luettgen"},"race":"Two
         
     | 
| 
      
 96 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"170677985","state_id":"859401919","student_number":"170677985","id":"530e5961049e75a9262cffbb"},"uri":"/v1.1/students/530e5961049e75a9262cffbb"},{"data":{"created":"2014-02-26T21:15:13.049Z","credentials":{"district_username":"karenh22","district_password":"haZec8chiok"},"district":"4fd43cc56d11340000000005","dob":"1/9/2007","ell_status":"Y","email":"karen.h@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.004Z","location":{"zip":"11366"},"name":{"first":"Karen","middle":"D","last":"Harvey"},"race":"American
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fe","sis_id":"173157322","state_id":"251634821","student_number":"173157322","id":"530e5961049e75a9262cffbe"},"uri":"/v1.1/students/530e5961049e75a9262cffbe"},{"data":{"created":"2014-02-26T21:15:13.053Z","credentials":{"district_username":"jasmineh39","district_password":"ieRai5ca4x"},"district":"4fd43cc56d11340000000005","dob":"10/27/2005","ell_status":"N","email":"h.jasmine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.007Z","location":{"zip":"10010"},"name":{"first":"Jasmine","middle":"R","last":"Hudson"},"race":"Black
         
     | 
| 
      
 98 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"173477739","state_id":"987948004","student_number":"173477739","id":"530e5961049e75a9262cffbf"},"uri":"/v1.1/students/530e5961049e75a9262cffbf"},{"data":{"created":"2014-02-26T21:15:13.063Z","credentials":{"district_username":"juliam55","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"5/15/2000","ell_status":"N","email":"m.julia@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.010Z","location":{"zip":"10474"},"name":{"first":"Julia","middle":"B","last":"Marvin"},"race":"Black
         
     | 
| 
      
 99 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"174626355","state_id":"592557939","student_number":"174626355","id":"530e5961049e75a9262cffc0"},"uri":"/v1.1/students/530e5961049e75a9262cffc0"},{"data":{"created":"2014-02-26T21:15:13.075Z","credentials":{"district_username":"racheller73","district_password":"zeedei8iLuT"},"district":"4fd43cc56d11340000000005","dob":"9/14/2002","ell_status":"N","email":"rachelle_r@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.015Z","location":{"zip":"10014"},"name":{"first":"Rachelle","middle":"J","last":"Roberts"},"race":"Two
         
     | 
| 
      
 100 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"175635873","state_id":"759563523","student_number":"175635873","id":"530e5961049e75a9262cffc1"},"uri":"/v1.1/students/530e5961049e75a9262cffc1"},{"data":{"created":"2014-02-26T21:15:13.080Z","credentials":{"district_username":"jamesk73","district_password":"DahX1Nah2"},"district":"4fd43cc56d11340000000005","dob":"10/13/2007","ell_status":"Y","email":"james.k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.019Z","location":{"zip":"10029"},"name":{"first":"James","middle":"I","last":"Kreiger"},"race":"Two
         
     | 
| 
      
 101 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"175654773","state_id":"594272617","student_number":"175654773","id":"530e5961049e75a9262cffc2"},"uri":"/v1.1/students/530e5961049e75a9262cffc2"},{"data":{"created":"2014-02-26T21:15:13.089Z","credentials":{"district_username":"adriannas34","district_password":"Uoz5ich1"},"district":"4fd43cc56d11340000000005","dob":"5/5/2007","ell_status":"N","email":"adrianna.s@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.022Z","location":{"zip":"11220"},"name":{"first":"Adrianna","middle":"A","last":"Sawayn"},"race":"Two
         
     | 
| 
      
 102 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"176057934","state_id":"171145300","student_number":"176057934","id":"530e5961049e75a9262cffc3"},"uri":"/v1.1/students/530e5961049e75a9262cffc3"},{"data":{"created":"2014-02-26T21:15:13.125Z","credentials":{"district_username":"fredal36","district_password":"Hoo8Eiloo"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"l.freda@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.026Z","location":{"zip":"11694"},"name":{"first":"Freda","middle":"P","last":"Lindgren"},"race":"Two
         
     | 
| 
      
 103 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"177762936","state_id":"604942388","student_number":"177762936","id":"530e5961049e75a9262cffcb"},"uri":"/v1.1/students/530e5961049e75a9262cffcb"},{"data":{"created":"2014-02-26T21:15:13.132Z","credentials":{"district_username":"christopherb30","district_password":"iet4ReCeiH"},"district":"4fd43cc56d11340000000005","dob":"1/25/1998","ell_status":"Y","email":"b.christopher@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.031Z","location":{"zip":"10461"},"name":{"first":"Christopher","middle":"M","last":"Bednar"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"178552730","state_id":"384352367","student_number":"178552730","id":"530e5961049e75a9262cffcd"},"uri":"/v1.1/students/530e5961049e75a9262cffcd"},{"data":{"created":"2014-02-26T21:15:13.147Z","credentials":{"district_username":"willardb67","district_password":"ul2Zeisee"},"district":"4fd43cc56d11340000000005","dob":"5/2/2003","ell_status":"Y","email":"willard_b@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.035Z","location":{"zip":"11357"},"name":{"first":"Willard","middle":"C","last":"Bashirian"},"race":"Two
         
     | 
| 
      
 104 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"180515767","state_id":"967967167","student_number":"180515767","id":"530e5961049e75a9262cffd2"},"uri":"/v1.1/students/530e5961049e75a9262cffd2"},{"data":{"created":"2014-02-26T21:15:13.154Z","credentials":{"district_username":"pedrob07","district_password":"ooha1aiZ"},"district":"4fd43cc56d11340000000005","dob":"8/1/2000","ell_status":"Y","email":"pedro_b@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.037Z","location":{"zip":"10017"},"name":{"first":"Pedro","middle":"D","last":"Bauch"},"race":"Black
         
     | 
| 
      
 105 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"180999707","state_id":"399605649","student_number":"180999707","id":"530e5961049e75a9262cffd5"},"uri":"/v1.1/students/530e5961049e75a9262cffd5"},{"data":{"created":"2014-02-26T21:15:13.160Z","credentials":{"district_username":"annes24","district_password":"eshaek9ahQu"},"district":"4fd43cc56d11340000000005","dob":"3/30/2001","ell_status":"Y","email":"s.anne@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.041Z","location":{"zip":"11215"},"name":{"first":"Anne","middle":"E","last":"Satterfield"},"race":"Black
         
     | 
| 
      
 106 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"181777124","state_id":"249784916","student_number":"181777124","id":"530e5961049e75a9262cffd7"},"uri":"/v1.1/students/530e5961049e75a9262cffd7"},{"data":{"created":"2014-02-26T21:15:13.166Z","credentials":{"district_username":"williamk46","district_password":"bohjah7Ae"},"district":"4fd43cc56d11340000000005","dob":"12/5/1997","ell_status":"Y","email":"k_william@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.046Z","location":{"zip":"11429"},"name":{"first":"William","middle":"S","last":"Koelpin"},"race":"Black
         
     | 
| 
      
 107 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"182397746","state_id":"799666284","student_number":"182397746","id":"530e5961049e75a9262cffd9"},"uri":"/v1.1/students/530e5961049e75a9262cffd9"},{"data":{"created":"2014-02-26T21:15:13.176Z","credentials":{"district_username":"barrym17","district_password":"aim2Vi1e"},"district":"4fd43cc56d11340000000005","dob":"3/3/2007","ell_status":"N","email":"m.barry@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.050Z","location":{"zip":"11238"},"name":{"first":"Barry","middle":"G","last":"Marquardt"},"race":"Two
         
     | 
| 
      
 108 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"184337517","state_id":"497075762","student_number":"184337517","id":"530e5961049e75a9262cffdc"},"uri":"/v1.1/students/530e5961049e75a9262cffdc"},{"data":{"created":"2014-02-26T21:15:13.181Z","credentials":{"district_username":"jeralds17","district_password":"Ingee5ie"},"district":"4fd43cc56d11340000000005","dob":"2/5/2006","ell_status":"N","email":"jerald.s@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.053Z","location":{"zip":"10035"},"name":{"first":"Jerald","middle":"M","last":"Schaefer"},"race":"Black
         
     | 
| 
      
 109 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"184897317","state_id":"422855981","student_number":"184897317","id":"530e5961049e75a9262cffde"},"uri":"/v1.1/students/530e5961049e75a9262cffde"},{"data":{"created":"2014-02-26T21:15:13.187Z","credentials":{"district_username":"jeffreys95","district_password":"ogooph1Gooz"},"district":"4fd43cc56d11340000000005","dob":"3/16/1997","ell_status":"N","email":"jeffrey_s@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.056Z","location":{"zip":"11229"},"name":{"first":"Jeffrey","middle":"S","last":"Sporer"},"race":"American
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"185844295","state_id":"833289361","student_number":"185844295","id":"530e5961049e75a9262cffe0"},"uri":"/v1.1/students/530e5961049e75a9262cffe0"},{"data":{"created":"2014-02-26T21:15:13.192Z","credentials":{"district_username":"franciscos71","district_password":"iife9eiTie"},"district":"4fd43cc56d11340000000005","dob":"6/15/1996","ell_status":"Y","email":"francisco_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.061Z","location":{"zip":"10009"},"name":{"first":"Francisco","middle":"L","last":"Sanford"},"race":"Two
         
     | 
| 
      
 111 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"186732171","state_id":"256962814","student_number":"186732171","id":"530e5961049e75a9262cffe1"},"uri":"/v1.1/students/530e5961049e75a9262cffe1"},{"data":{"created":"2014-02-26T21:15:13.197Z","credentials":{"district_username":"charlesk43","district_password":"cie7Cai1shoh"},"district":"4fd43cc56d11340000000005","dob":"2/21/2000","ell_status":"N","email":"k_charles@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.065Z","location":{"zip":"11358"},"name":{"first":"Charles","middle":"A","last":"Kiehn"},"race":"Black
         
     | 
| 
      
 112 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"187402543","state_id":"943748667","student_number":"187402543","id":"530e5961049e75a9262cffe2"},"uri":"/v1.1/students/530e5961049e75a9262cffe2"},{"data":{"created":"2014-02-26T21:15:13.202Z","credentials":{"district_username":"melvina59","district_password":"bog3Apoose1"},"district":"4fd43cc56d11340000000005","dob":"8/16/2000","ell_status":"Y","email":"a_melvin@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.068Z","location":{"zip":"11413"},"name":{"first":"Melvin","middle":"T","last":"Abshire"},"race":"Two
         
     | 
| 
      
 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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 116 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:01 GMT
         
     | 
| 
      
 117 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 118 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 119 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com/v1.1/students/530e5960049e75a9262cff1d
         
     | 
| 
      
 120 
     | 
    
         
            +
                body:
         
     | 
| 
      
 121 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 122 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 123 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 124 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 125 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 126 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 127 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 128 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 129 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 130 
     | 
    
         
            +
              response:
         
     | 
| 
      
 131 
     | 
    
         
            +
                status:
         
     | 
| 
      
 132 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 133 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 134 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 135 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 137 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 139 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:48:01 GMT
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - ! '"1850740737"'
         
     | 
| 
      
 147 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 148 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 149 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 150 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 151 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 152 
     | 
    
         
            +
                  - '1151'
         
     | 
| 
      
 153 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 154 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 155 
     | 
    
         
            +
                body:
         
     | 
| 
      
 156 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 157 
     | 
    
         
            +
                  string: ! '{"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
         
     | 
| 
      
 158 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"rel":"district","uri":"/v1.1/students/530e5960049e75a9262cff1d/district"},{"rel":"sections","uri":"/v1.1/students/530e5960049e75a9262cff1d/sections"},{"rel":"school","uri":"/v1.1/students/530e5960049e75a9262cff1d/school"},{"rel":"teachers","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"},{"rel":"contacts","uri":"/v1.1/students/530e5960049e75a9262cff1d/contacts"},{"rel":"events","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
         
     | 
| 
      
 159 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 160 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:48:01 GMT
         
     | 
| 
      
 161 
     | 
    
         
            +
            recorded_with: VCR 2.4.0
         
     | 
| 
         @@ -0,0 +1,245 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com/v1.1/students
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 14 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 27 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 29 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - ! '"-1704869160"'
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 35 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - '66289'
         
     | 
| 
      
 39 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 41 
     | 
    
         
            +
                body:
         
     | 
| 
      
 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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                    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
         
     | 
| 
      
 47 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"106867300","state_id":"863433981","student_number":"106867300","id":"530e5960049e75a9262cff21"},"uri":"/v1.1/students/530e5960049e75a9262cff21"},{"data":{"created":"2014-02-26T21:15:12.386Z","credentials":{"district_username":"sandrar91","district_password":"en1wae4AT"},"district":"4fd43cc56d11340000000005","dob":"6/26/1999","ell_status":"N","email":"r.sandra@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.677Z","location":{"zip":"10474"},"name":{"first":"Sandra","middle":"S","last":"Ritchie"},"race":"Black
         
     | 
| 
      
 48 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"107368591","state_id":"989845610","student_number":"107368591","id":"530e5960049e75a9262cff22"},"uri":"/v1.1/students/530e5960049e75a9262cff22"},{"data":{"created":"2014-02-26T21:15:12.391Z","credentials":{"district_username":"juliar95","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"1/29/1998","ell_status":"Y","email":"julia.r@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.679Z","location":{"zip":"11239"},"name":{"first":"Julia","middle":"B","last":"Runolfsdottir"},"race":"Black
         
     | 
| 
      
 49 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"108028995","state_id":"339598426","student_number":"108028995","id":"530e5960049e75a9262cff23"},"uri":"/v1.1/students/530e5960049e75a9262cff23"},{"data":{"created":"2014-02-26T21:15:12.400Z","credentials":{"district_username":"nancyh91","district_password":"teiPah1kao"},"district":"4fd43cc56d11340000000005","dob":"12/23/2003","ell_status":"N","email":"h.nancy@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.684Z","location":{"zip":"11236"},"name":{"first":"Nancy","middle":"Z","last":"Heller"},"race":"Black
         
     | 
| 
      
 50 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"109071891","state_id":"985627386","student_number":"109071891","id":"530e5960049e75a9262cff24"},"uri":"/v1.1/students/530e5960049e75a9262cff24"},{"data":{"created":"2014-02-26T21:15:12.410Z","credentials":{"district_username":"debrab27","district_password":"EShah6quoh2qu"},"district":"4fd43cc56d11340000000005","dob":"10/21/2001","ell_status":"Y","email":"debra.b@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.690Z","location":{"zip":"10302"},"name":{"first":"Debra","middle":"F","last":"Boyle"},"race":"Two
         
     | 
| 
      
 51 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"109999627","state_id":"393918489","student_number":"109999627","id":"530e5960049e75a9262cff25"},"uri":"/v1.1/students/530e5960049e75a9262cff25"},{"data":{"created":"2014-02-26T21:15:12.422Z","credentials":{"district_username":"yvettec36","district_password":"ya5piX9Oh"},"district":"4fd43cc56d11340000000005","dob":"5/18/1997","ell_status":"N","email":"c_yvette@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.694Z","location":{"zip":"11385"},"name":{"first":"Yvette","middle":"W","last":"Cummings"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"112258136","state_id":"373187439","student_number":"112258136","id":"530e5960049e75a9262cff26"},"uri":"/v1.1/students/530e5960049e75a9262cff26"},{"data":{"created":"2014-02-26T21:15:12.430Z","credentials":{"district_username":"geraldp09","district_password":"ieg6piLoc"},"district":"4fd43cc56d11340000000005","dob":"8/27/1998","ell_status":"Y","email":"p.gerald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.698Z","location":{"zip":"11691"},"name":{"first":"Gerald","middle":"J","last":"Parisian"},"race":"Two
         
     | 
| 
      
 52 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"114061609","state_id":"363863262","student_number":"114061609","id":"530e5960049e75a9262cff27"},"uri":"/v1.1/students/530e5960049e75a9262cff27"},{"data":{"created":"2014-02-26T21:15:12.437Z","credentials":{"district_username":"nancyh13","district_password":"jiNgu0foewo1"},"district":"4fd43cc56d11340000000005","dob":"10/17/2004","ell_status":"N","email":"nancy.h@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.702Z","location":{"zip":"10040"},"name":{"first":"Nancy","middle":"M","last":"Hodkiewicz"},"race":"Two
         
     | 
| 
      
 53 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"114188213","state_id":"485519977","student_number":"114188213","id":"530e5960049e75a9262cff28"},"uri":"/v1.1/students/530e5960049e75a9262cff28"},{"data":{"created":"2014-02-26T21:15:12.443Z","credentials":{"district_username":"maen58","district_password":"faeR9buF"},"district":"4fd43cc56d11340000000005","dob":"5/22/1999","ell_status":"Y","email":"n_mae@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.707Z","location":{"zip":"10014"},"name":{"first":"Mae","middle":"L","last":"Nitzsche"},"race":"Black
         
     | 
| 
      
 54 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"114766758","state_id":"361263052","student_number":"114766758","id":"530e5960049e75a9262cff29"},"uri":"/v1.1/students/530e5960049e75a9262cff29"},{"data":{"created":"2014-02-26T21:15:12.449Z","credentials":{"district_username":"deborahs94","district_password":"Thei2nai4"},"district":"4fd43cc56d11340000000005","dob":"3/17/2006","ell_status":"N","email":"s_deborah@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.712Z","location":{"zip":"11693"},"name":{"first":"Deborah","middle":"J","last":"Stracke"},"race":"Black
         
     | 
| 
      
 55 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"114877594","state_id":"494975662","student_number":"114877594","id":"530e5960049e75a9262cff2b"},"uri":"/v1.1/students/530e5960049e75a9262cff2b"},{"data":{"created":"2014-02-26T21:15:12.454Z","credentials":{"district_username":"maryr27","district_password":"ohVie2aeD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2003","ell_status":"N","email":"mary_r@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.728Z","location":{"zip":"10038"},"name":{"first":"Mary","middle":"L","last":"Ryan"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"115088927","state_id":"155063237","student_number":"115088927","id":"530e5960049e75a9262cff2d"},"uri":"/v1.1/students/530e5960049e75a9262cff2d"},{"data":{"created":"2014-02-26T21:15:12.461Z","credentials":{"district_username":"erickc24","district_password":"eeX9ied5ee"},"district":"4fd43cc56d11340000000005","dob":"3/25/1996","ell_status":"N","email":"erick_c@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.731Z","location":{"zip":"10128"},"name":{"first":"Erick","middle":"D","last":"Collins"},"race":"Two
         
     | 
| 
      
 56 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"115115824","state_id":"761459009","student_number":"115115824","id":"530e5960049e75a9262cff2f"},"uri":"/v1.1/students/530e5960049e75a9262cff2f"},{"data":{"created":"2014-02-26T21:15:12.473Z","credentials":{"district_username":"arleneh66","district_password":"ak0yahReesie"},"district":"4fd43cc56d11340000000005","dob":"11/26/2002","ell_status":"Y","email":"h.arlene@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.735Z","location":{"zip":"11206"},"name":{"first":"Arlene","middle":"K","last":"Huels"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"118346066","state_id":"483748383","student_number":"118346066","id":"530e5960049e75a9262cff33"},"uri":"/v1.1/students/530e5960049e75a9262cff33"},{"data":{"created":"2014-02-26T21:15:12.486Z","credentials":{"district_username":"daniloc44","district_password":"ooph8aiLe"},"district":"4fd43cc56d11340000000005","dob":"11/16/1999","ell_status":"Y","email":"danilo_c@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.741Z","location":{"zip":"10456"},"name":{"first":"Danilo","middle":"S","last":"Carter"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"119227044","state_id":"320059203","student_number":"119227044","id":"530e5960049e75a9262cff37"},"uri":"/v1.1/students/530e5960049e75a9262cff37"},{"data":{"created":"2014-02-26T21:15:12.492Z","credentials":{"district_username":"shawnw68","district_password":"nuY3yaeY9Lei"},"district":"4fd43cc56d11340000000005","dob":"3/11/1997","ell_status":"N","email":"shawn_w@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.745Z","location":{"zip":"10303"},"name":{"first":"Shawn","middle":"S","last":"Willms"},"race":"Black
         
     | 
| 
      
 57 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"119477368","state_id":"852618443","student_number":"119477368","id":"530e5960049e75a9262cff39"},"uri":"/v1.1/students/530e5960049e75a9262cff39"},{"data":{"created":"2014-02-26T21:15:12.498Z","credentials":{"district_username":"fredt34","district_password":"ieXahy1j"},"district":"4fd43cc56d11340000000005","dob":"10/30/1998","ell_status":"Y","email":"fred.t@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.748Z","location":{"zip":"10003"},"name":{"first":"Fred","middle":"W","last":"Trantow"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"119622134","state_id":"354252109","student_number":"119622134","id":"530e5960049e75a9262cff3c"},"uri":"/v1.1/students/530e5960049e75a9262cff3c"},{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:12.524Z","credentials":{"district_username":"scottb73","district_password":"Lah5Mooh4"},"district":"4fd43cc56d11340000000005","dob":"5/1/1998","ell_status":"Y","email":"b.scott@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.756Z","location":{"zip":"10009"},"name":{"first":"Scott","middle":"D","last":"Bradtke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"120804373","state_id":"258353799","student_number":"120804373","id":"530e5960049e75a9262cff42"},"uri":"/v1.1/students/530e5960049e75a9262cff42"},{"data":{"created":"2014-02-26T21:15:12.530Z","credentials":{"district_username":"erinw91","district_password":"chie1VeePep9ie"},"district":"4fd43cc56d11340000000005","dob":"1/24/2000","ell_status":"N","email":"erin_w@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.759Z","location":{"zip":"10453"},"name":{"first":"Erin","middle":"M","last":"West"},"race":"Black
         
     | 
| 
      
 58 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"121183091","state_id":"306567894","student_number":"121183091","id":"530e5960049e75a9262cff44"},"uri":"/v1.1/students/530e5960049e75a9262cff44"},{"data":{"created":"2014-02-26T21:15:12.542Z","credentials":{"district_username":"marcias19","district_password":"aiPo1thoo"},"district":"4fd43cc56d11340000000005","dob":"12/2/1997","ell_status":"Y","email":"s_marcia@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.763Z","location":{"zip":"11693"},"name":{"first":"Marcia","middle":"W","last":"Smith"},"race":"Black
         
     | 
| 
      
 59 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"121779919","state_id":"632956505","student_number":"121779919","id":"530e5960049e75a9262cff48"},"uri":"/v1.1/students/530e5960049e75a9262cff48"},{"data":{"created":"2014-02-26T21:15:12.545Z","credentials":{"district_username":"corar18","district_password":"noiphai2Ai"},"district":"4fd43cc56d11340000000005","dob":"2/28/2001","ell_status":"Y","email":"cora.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.768Z","location":{"zip":"10044"},"name":{"first":"Cora","middle":"S","last":"Ryan"},"race":"Two
         
     | 
| 
      
 60 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"122753218","state_id":"157023489","student_number":"122753218","id":"530e5960049e75a9262cff49"},"uri":"/v1.1/students/530e5960049e75a9262cff49"},{"data":{"created":"2014-02-26T21:15:12.550Z","credentials":{"district_username":"michelh98","district_password":"Eir2Tho1ae"},"district":"4fd43cc56d11340000000005","dob":"6/3/2005","ell_status":"N","email":"h.michel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.772Z","location":{"zip":"11205"},"name":{"first":"Michel","middle":"N","last":"Haley"},"race":"Black
         
     | 
| 
      
 61 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"122945598","state_id":"464810876","student_number":"122945598","id":"530e5960049e75a9262cff4a"},"uri":"/v1.1/students/530e5960049e75a9262cff4a"},{"data":{"created":"2014-02-26T21:15:12.554Z","credentials":{"district_username":"bethg07","district_password":"aifoh6naeJei"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"N","email":"g.beth@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-13T00:45:00.716Z","location":{"zip":"10303"},"name":{"first":"Elizabeth","last":"Grimes","middle":"R"},"race":"Two
         
     | 
| 
      
 62 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"123512007","state_id":"151360801","student_number":"123512007","id":"530e5960049e75a9262cff4b"},"uri":"/v1.1/students/530e5960049e75a9262cff4b"},{"data":{"created":"2014-02-26T21:15:12.558Z","credentials":{"district_username":"ianm93","district_password":"ShoPh9soor"},"district":"4fd43cc56d11340000000005","dob":"6/3/1996","ell_status":"N","email":"ian.m@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.778Z","location":{"zip":"10010"},"name":{"first":"Ian","middle":"V","last":"Mayert"},"race":"Black
         
     | 
| 
      
 63 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"123954193","state_id":"924214454","student_number":"123954193","id":"530e5960049e75a9262cff4c"},"uri":"/v1.1/students/530e5960049e75a9262cff4c"},{"data":{"created":"2014-02-26T21:15:12.564Z","credentials":{"district_username":"tracyk26","district_password":"phei0Bibie"},"district":"4fd43cc56d11340000000005","dob":"12/13/1996","ell_status":"N","email":"tracy.k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.783Z","location":{"zip":"10001"},"name":{"first":"Tracy","middle":"K","last":"Kutch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"124482526","state_id":"393802973","student_number":"124482526","id":"530e5960049e75a9262cff4d"},"uri":"/v1.1/students/530e5960049e75a9262cff4d"},{"data":{"created":"2014-02-26T21:15:12.571Z","credentials":{"district_username":"theronk88","district_password":"eingeob1Th"},"district":"4fd43cc56d11340000000005","dob":"1/20/2001","ell_status":"N","email":"k.theron@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.787Z","location":{"zip":"11237"},"name":{"first":"Theron","middle":"T","last":"Kuvalis"},"race":"Two
         
     | 
| 
      
 64 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"126646288","state_id":"549916713","student_number":"126646288","id":"530e5960049e75a9262cff4e"},"uri":"/v1.1/students/530e5960049e75a9262cff4e"},{"data":{"created":"2014-02-26T21:15:12.575Z","credentials":{"district_username":"francesd07","district_password":"ievahf0Y"},"district":"4fd43cc56d11340000000005","dob":"2/18/1997","ell_status":"N","email":"frances_d@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.790Z","location":{"zip":"10009"},"name":{"first":"Frances","middle":"R","last":"Daniel"},"race":"Black
         
     | 
| 
      
 65 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"127629107","state_id":"394114229","student_number":"127629107","id":"530e5960049e75a9262cff4f"},"uri":"/v1.1/students/530e5960049e75a9262cff4f"},{"data":{"created":"2014-02-26T21:15:12.579Z","credentials":{"district_username":"dianec39","district_password":"Sha1Yieng"},"district":"4fd43cc56d11340000000005","dob":"2/25/2001","ell_status":"Y","email":"c_diane@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.794Z","location":{"zip":"11223"},"name":{"first":"Diane","middle":"R","last":"Cole"},"race":"Black
         
     | 
| 
      
 66 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"128729839","state_id":"941724516","student_number":"128729839","id":"530e5960049e75a9262cff50"},"uri":"/v1.1/students/530e5960049e75a9262cff50"},{"data":{"created":"2014-02-26T21:15:12.584Z","credentials":{"district_username":"moisesp85","district_password":"Lee0noofie3"},"district":"4fd43cc56d11340000000005","dob":"7/21/1996","ell_status":"N","email":"p_moises@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.799Z","location":{"zip":"11369"},"name":{"first":"Moises","middle":"J","last":"Pfannerstill"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"129211485","state_id":"427345603","student_number":"129211485","id":"530e5960049e75a9262cff51"},"uri":"/v1.1/students/530e5960049e75a9262cff51"},{"data":{"created":"2014-02-26T21:15:12.588Z","credentials":{"district_username":"johnl92","district_password":"Authelai6ee"},"district":"4fd43cc56d11340000000005","dob":"3/27/1995","ell_status":"Y","email":"john_l@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.803Z","location":{"zip":"11356"},"name":{"first":"John","middle":"J","last":"Luettgen"},"race":"Black
         
     | 
| 
      
 67 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"129404892","state_id":"365733915","student_number":"129404892","id":"530e5960049e75a9262cff52"},"uri":"/v1.1/students/530e5960049e75a9262cff52"},{"data":{"created":"2014-02-26T21:15:12.594Z","credentials":{"district_username":"markm66","district_password":"ohpi7LieNg"},"district":"4fd43cc56d11340000000005","dob":"9/22/1996","ell_status":"N","email":"mark_m@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.805Z","location":{"zip":"11379"},"name":{"first":"Mark","middle":"E","last":"Mueller"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"129629166","state_id":"475570964","student_number":"129629166","id":"530e5960049e75a9262cff53"},"uri":"/v1.1/students/530e5960049e75a9262cff53"},{"data":{"created":"2014-02-26T21:15:12.603Z","credentials":{"district_username":"josephl30","district_password":"aeD7eiphuuR"},"district":"4fd43cc56d11340000000005","dob":"10/20/1995","ell_status":"N","email":"l.joseph@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.809Z","location":{"zip":"11212"},"name":{"first":"Joseph","middle":"J","last":"Lind"},"race":"Two
         
     | 
| 
      
 68 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"130662730","state_id":"790259704","student_number":"130662730","id":"530e5960049e75a9262cff54"},"uri":"/v1.1/students/530e5960049e75a9262cff54"},{"data":{"created":"2014-02-26T21:15:12.608Z","credentials":{"district_username":"luzb35","district_password":"zeuJ8Roo2r"},"district":"4fd43cc56d11340000000005","dob":"10/7/2007","ell_status":"N","email":"b_luz@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.814Z","location":{"zip":"11367"},"name":{"first":"Luz","middle":"M","last":"Bins"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"130790035","state_id":"416103381","student_number":"130790035","id":"530e5960049e75a9262cff55"},"uri":"/v1.1/students/530e5960049e75a9262cff55"},{"data":{"created":"2014-02-26T21:15:12.616Z","credentials":{"district_username":"edgary05","district_password":"pohzio9Leexu"},"district":"4fd43cc56d11340000000005","dob":"5/6/2004","ell_status":"N","email":"edgar_y@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.818Z","location":{"zip":"10012"},"name":{"first":"Edgar","middle":"N","last":"Yost"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"131222005","state_id":"432306457","student_number":"131222005","id":"530e5960049e75a9262cff56"},"uri":"/v1.1/students/530e5960049e75a9262cff56"},{"data":{"created":"2014-02-26T21:15:12.630Z","credentials":{"district_username":"giovannio63","district_password":"eiG7ahyee"},"district":"4fd43cc56d11340000000005","dob":"9/16/1999","ell_status":"N","email":"o_giovanni@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.821Z","location":{"zip":"10471"},"name":{"first":"Giovanni","middle":"M","last":"Osinski"},"race":"Two
         
     | 
| 
      
 69 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"132323163","state_id":"214818376","student_number":"132323163","id":"530e5960049e75a9262cff57"},"uri":"/v1.1/students/530e5960049e75a9262cff57"},{"data":{"created":"2014-02-26T21:15:12.636Z","credentials":{"district_username":"lakeishak03","district_password":"Meejahgo6qu"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"lakeisha_k@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.824Z","location":{"zip":"10030"},"name":{"first":"Lakeisha","middle":"E","last":"Kovacek"},"race":"Black
         
     | 
| 
      
 70 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"132765903","state_id":"385458717","student_number":"132765903","id":"530e5960049e75a9262cff58"},"uri":"/v1.1/students/530e5960049e75a9262cff58"},{"data":{"created":"2014-02-26T21:15:12.644Z","credentials":{"district_username":"josephc65","district_password":"wiol9waiJeth"},"district":"4fd43cc56d11340000000005","dob":"12/30/2000","ell_status":"N","email":"joseph_c@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.829Z","location":{"zip":"11218"},"name":{"first":"Joseph","middle":"V","last":"Cruickshank"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"133517565","state_id":"925454999","student_number":"133517565","id":"530e5960049e75a9262cff59"},"uri":"/v1.1/students/530e5960049e75a9262cff59"},{"data":{"created":"2014-02-26T21:15:12.652Z","credentials":{"district_username":"ralpht98","district_password":"oongei3Poor"},"district":"4fd43cc56d11340000000005","dob":"6/30/1998","ell_status":"N","email":"ralph.t@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.833Z","location":{"zip":"10016"},"name":{"first":"Ralph","middle":"V","last":"Torphy"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"133537898","state_id":"480517609","student_number":"133537898","id":"530e5960049e75a9262cff5b"},"uri":"/v1.1/students/530e5960049e75a9262cff5b"},{"data":{"created":"2014-02-26T21:15:12.659Z","credentials":{"district_username":"dannyg60","district_password":"ohto5naiFao"},"district":"4fd43cc56d11340000000005","dob":"3/20/2007","ell_status":"Y","email":"danny.g@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.836Z","location":{"zip":"11378"},"name":{"first":"Danny","middle":"A","last":"Greenholt"},"race":"Black
         
     | 
| 
      
 71 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"134052560","state_id":"858732007","student_number":"134052560","id":"530e5960049e75a9262cff5d"},"uri":"/v1.1/students/530e5960049e75a9262cff5d"},{"data":{"created":"2014-02-26T21:15:12.671Z","credentials":{"district_username":"jessem58","district_password":"Ohngah7ohp"},"district":"4fd43cc56d11340000000005","dob":"3/9/2001","ell_status":"N","email":"jesse.m@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.840Z","location":{"zip":"10024"},"name":{"first":"Jesse","middle":"M","last":"McGlynn"},"race":"American
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9ff","sis_id":"134654858","state_id":"112453591","student_number":"134654858","id":"530e5960049e75a9262cff61"},"uri":"/v1.1/students/530e5960049e75a9262cff61"},{"data":{"created":"2014-02-26T21:15:12.679Z","credentials":{"district_username":"sandrar73","district_password":"Okiepoh7oo"},"district":"4fd43cc56d11340000000005","dob":"2/13/2001","ell_status":"Y","email":"sandra.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.845Z","location":{"zip":"11370"},"name":{"first":"Sandra","middle":"W","last":"Rowe"},"race":"Black
         
     | 
| 
      
 73 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"134720573","state_id":"176031777","student_number":"134720573","id":"530e5960049e75a9262cff64"},"uri":"/v1.1/students/530e5960049e75a9262cff64"},{"data":{"created":"2014-02-26T21:15:12.688Z","credentials":{"district_username":"heatherm26","district_password":"eizoo4Dahru"},"district":"4fd43cc56d11340000000005","dob":"8/5/1995","ell_status":"Y","email":"m_heather@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.849Z","location":{"zip":"10301"},"name":{"first":"Heather","middle":"E","last":"MacGyver"},"race":"American
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"135635226","state_id":"568110703","student_number":"135635226","id":"530e5960049e75a9262cff67"},"uri":"/v1.1/students/530e5960049e75a9262cff67"},{"data":{"created":"2014-02-26T21:15:12.697Z","credentials":{"district_username":"clarettas30","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1995","ell_status":"Y","email":"s_claretta@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.851Z","location":{"zip":"11361"},"name":{"first":"Claretta","middle":"C","last":"Steuber"},"race":"Black
         
     | 
| 
      
 75 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"136380730","state_id":"307304843","student_number":"136380730","id":"530e5960049e75a9262cff6a"},"uri":"/v1.1/students/530e5960049e75a9262cff6a"},{"data":{"created":"2014-02-26T21:15:12.713Z","credentials":{"district_username":"lisab30","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"9/12/2002","ell_status":"N","email":"b_lisa@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.855Z","location":{"zip":"11370"},"name":{"first":"Lisa","middle":"B","last":"Botsford"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"136422830","state_id":"258401272","student_number":"136422830","id":"530e5960049e75a9262cff6c"},"uri":"/v1.1/students/530e5960049e75a9262cff6c"},{"data":{"created":"2014-02-26T21:15:12.721Z","credentials":{"district_username":"amberw60","district_password":"Tu5sahdoh"},"district":"4fd43cc56d11340000000005","dob":"2/26/2006","ell_status":"N","email":"amber_w@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.860Z","location":{"zip":"11429"},"name":{"first":"Amber","middle":"J","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137019560","state_id":"650349892","student_number":"137019560","id":"530e5960049e75a9262cff6e"},"uri":"/v1.1/students/530e5960049e75a9262cff6e"},{"data":{"created":"2014-02-26T21:15:12.734Z","credentials":{"district_username":"lloydc63","district_password":"ohChah5t"},"district":"4fd43cc56d11340000000005","dob":"11/21/2005","ell_status":"N","email":"c.lloyd@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.864Z","location":{"zip":"10014"},"name":{"first":"Lloyd","middle":"P","last":"Collier"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137569863","state_id":"997363437","student_number":"137569863","id":"530e5960049e75a9262cff72"},"uri":"/v1.1/students/530e5960049e75a9262cff72"},{"data":{"created":"2014-02-26T21:15:12.746Z","credentials":{"district_username":"serenab06","district_password":"shu9shiNich"},"district":"4fd43cc56d11340000000005","dob":"4/10/2007","ell_status":"N","email":"b_serena@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.867Z","location":{"zip":"11216"},"name":{"first":"Serena","middle":"E","last":"Beer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"138030806","state_id":"298722069","student_number":"138030806","id":"530e5960049e75a9262cff76"},"uri":"/v1.1/students/530e5960049e75a9262cff76"},{"data":{"created":"2014-02-26T21:15:12.762Z","credentials":{"district_username":"vincenzoc30","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"5/31/2004","ell_status":"N","email":"vincenzo_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.870Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Cronin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"142650130","state_id":"595801763","student_number":"142650130","id":"530e5960049e75a9262cff78"},"uri":"/v1.1/students/530e5960049e75a9262cff78"},{"data":{"created":"2014-02-26T21:15:12.769Z","credentials":{"district_username":"kathyk90","district_password":"eeD2Zei8yoL"},"district":"4fd43cc56d11340000000005","dob":"4/21/1999","ell_status":"N","email":"kathy_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.875Z","location":{"zip":"10474"},"name":{"first":"Kathy","middle":"J","last":"Keeling"},"race":"Black
         
     | 
| 
      
 76 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"142858690","state_id":"397018257","student_number":"142858690","id":"530e5960049e75a9262cff79"},"uri":"/v1.1/students/530e5960049e75a9262cff79"},{"data":{"created":"2014-02-26T21:15:12.774Z","credentials":{"district_username":"jeffreyk79","district_password":"tohgaK5zoo"},"district":"4fd43cc56d11340000000005","dob":"9/17/1998","ell_status":"Y","email":"k_jeffrey@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.879Z","location":{"zip":"11357"},"name":{"first":"Jeffrey","middle":"M","last":"Kuphal"},"race":"Two
         
     | 
| 
      
 77 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"143899679","state_id":"381712167","student_number":"143899679","id":"530e5960049e75a9262cff7a"},"uri":"/v1.1/students/530e5960049e75a9262cff7a"},{"data":{"created":"2014-02-26T21:15:12.781Z","credentials":{"district_username":"rebar71","district_password":"Zahboi4ji8"},"district":"4fd43cc56d11340000000005","dob":"10/31/1997","ell_status":"N","email":"r.reba@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.882Z","location":{"zip":"11220"},"name":{"first":"Reba","middle":"J","last":"Reynolds"},"race":"Black
         
     | 
| 
      
 78 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"146278371","state_id":"619403122","student_number":"146278371","id":"530e5960049e75a9262cff7b"},"uri":"/v1.1/students/530e5960049e75a9262cff7b"},{"data":{"created":"2014-02-26T21:15:12.787Z","credentials":{"district_username":"keithp41","district_password":"Jiehaez7Ai"},"district":"4fd43cc56d11340000000005","dob":"6/2/1996","ell_status":"N","email":"keith_p@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.886Z","location":{"zip":"10308"},"name":{"first":"Keith","middle":"A","last":"Prohaska"},"race":"American
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"146447741","state_id":"526227648","student_number":"146447741","id":"530e5960049e75a9262cff7c"},"uri":"/v1.1/students/530e5960049e75a9262cff7c"},{"data":{"created":"2014-02-26T21:15:12.821Z","credentials":{"district_username":"williamv49","district_password":"howueSh7"},"district":"4fd43cc56d11340000000005","dob":"12/14/2001","ell_status":"Y","email":"v.william@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.902Z","location":{"zip":"10032"},"name":{"first":"William","middle":"A","last":"VonRueden"},"race":"Two
         
     | 
| 
      
 80 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"149789849","state_id":"129432406","student_number":"149789849","id":"530e5960049e75a9262cff86"},"uri":"/v1.1/students/530e5960049e75a9262cff86"},{"data":{"created":"2014-02-26T21:15:12.853Z","credentials":{"district_username":"manuelb70","district_password":"aj5eeSai7B"},"district":"4fd43cc56d11340000000005","dob":"10/23/1995","ell_status":"Y","email":"manuel.b@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.906Z","location":{"zip":"11211"},"name":{"first":"Manuel","middle":"I","last":"Brakus"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"153274070","state_id":"791610984","student_number":"153274070","id":"530e5960049e75a9262cff90"},"uri":"/v1.1/students/530e5960049e75a9262cff90"},{"data":{"created":"2014-02-26T21:15:12.858Z","credentials":{"district_username":"ivoryw40","district_password":"Keer7Iitoof"},"district":"4fd43cc56d11340000000005","dob":"1/29/2006","ell_status":"Y","email":"w.ivory@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.918Z","location":{"zip":"10004"},"name":{"first":"Ivory","middle":"W","last":"Waelchi"},"race":"Two
         
     | 
| 
      
 81 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"155728240","state_id":"823608122","student_number":"155728240","id":"530e5960049e75a9262cff92"},"uri":"/v1.1/students/530e5960049e75a9262cff92"},{"data":{"created":"2014-02-26T21:15:12.865Z","credentials":{"district_username":"rogerr70","district_password":"Zaom1ahshoh"},"district":"4fd43cc56d11340000000005","dob":"2/25/2005","ell_status":"N","email":"r_roger@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.909Z","location":{"zip":"11414"},"name":{"first":"Roger","middle":"C","last":"Rohan"},"race":"Black
         
     | 
| 
      
 82 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"153990370","state_id":"318208963","student_number":"153990370","id":"530e5960049e75a9262cff94"},"uri":"/v1.1/students/530e5960049e75a9262cff94"},{"data":{"created":"2014-02-26T21:15:12.872Z","credentials":{"district_username":"susanb50","district_password":"dooWi3bo3"},"district":"4fd43cc56d11340000000005","dob":"9/25/1997","ell_status":"N","email":"b_susan@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.913Z","location":{"zip":"11377"},"name":{"first":"Susan","middle":"J","last":"Bradtke"},"race":"Two
         
     | 
| 
      
 83 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"154186850","state_id":"168140106","student_number":"154186850","id":"530e5960049e75a9262cff95"},"uri":"/v1.1/students/530e5960049e75a9262cff95"},{"data":{"created":"2014-02-26T21:15:12.882Z","credentials":{"district_username":"ivoryu66","district_password":"pheeph0Vi2m"},"district":"4fd43cc56d11340000000005","dob":"3/27/1997","ell_status":"N","email":"ivory_u@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.923Z","location":{"zip":"11360"},"name":{"first":"Ivory","middle":"D","last":"Ullrich"},"race":"Black
         
     | 
| 
      
 84 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"156540966","state_id":"898550447","student_number":"156540966","id":"530e5960049e75a9262cff96"},"uri":"/v1.1/students/530e5960049e75a9262cff96"},{"data":{"created":"2014-02-26T21:15:12.887Z","credentials":{"district_username":"tonir12","district_password":"Xiephai6"},"district":"4fd43cc56d11340000000005","dob":"10/5/2006","ell_status":"Y","email":"toni_r@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.926Z","location":{"zip":"11104"},"name":{"first":"Toni","middle":"R","last":"Roberts"},"race":"Black
         
     | 
| 
      
 85 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"157515512","state_id":"463790341","student_number":"157515512","id":"530e5960049e75a9262cff97"},"uri":"/v1.1/students/530e5960049e75a9262cff97"},{"data":{"created":"2014-02-26T21:15:12.891Z","credentials":{"district_username":"selmar07","district_password":"ier1oomee8Ei"},"district":"4fd43cc56d11340000000005","dob":"4/15/1996","ell_status":"N","email":"r_selma@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.930Z","location":{"zip":"11218"},"name":{"first":"Selma","middle":"A","last":"Russel"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"157730707","state_id":"200628810","student_number":"157730707","id":"530e5960049e75a9262cff98"},"uri":"/v1.1/students/530e5960049e75a9262cff98"},{"data":{"created":"2014-02-26T21:15:12.894Z","credentials":{"district_username":"matthewz51","district_password":"muWeiji0Fef"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"z.matthew@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.936Z","location":{"zip":"10005"},"name":{"first":"Matthew","middle":"M","last":"Zboncak"},"race":"Black
         
     | 
| 
      
 86 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"158264451","state_id":"148571124","student_number":"158264451","id":"530e5960049e75a9262cff99"},"uri":"/v1.1/students/530e5960049e75a9262cff99"},{"data":{"created":"2014-02-26T21:15:12.917Z","credentials":{"district_username":"cordeliam30","district_password":"Bochojah7Ex"},"district":"4fd43cc56d11340000000005","dob":"2/13/2000","ell_status":"N","email":"cordelia_m@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.940Z","location":{"zip":"10033"},"name":{"first":"Cordelia","middle":"R","last":"Miller"},"race":"Black
         
     | 
| 
      
 87 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"159281530","state_id":"787673988","student_number":"159281530","id":"530e5960049e75a9262cff9a"},"uri":"/v1.1/students/530e5960049e75a9262cff9a"},{"data":{"created":"2014-02-26T21:15:12.920Z","credentials":{"district_username":"timothyg52","district_password":"Iquaeg5ie"},"district":"4fd43cc56d11340000000005","dob":"11/2/2006","ell_status":"Y","email":"timothy.g@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.943Z","location":{"zip":"10031"},"name":{"first":"Timothy","middle":"K","last":"Grady"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"159541752","state_id":"770286362","student_number":"159541752","id":"530e5960049e75a9262cff9b"},"uri":"/v1.1/students/530e5960049e75a9262cff9b"},{"data":{"created":"2014-02-26T21:15:12.926Z","credentials":{"district_username":"jasminen49","district_password":"Ieba5Lie"},"district":"4fd43cc56d11340000000005","dob":"1/15/2005","ell_status":"N","email":"jasmine.n@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.948Z","location":{"zip":"10302"},"name":{"first":"Jasmine","middle":"D","last":"Nader"},"race":"Two
         
     | 
| 
      
 88 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"159803249","state_id":"720873854","student_number":"159803249","id":"530e5960049e75a9262cff9c"},"uri":"/v1.1/students/530e5960049e75a9262cff9c"},{"data":{"created":"2014-02-26T21:15:12.935Z","credentials":{"district_username":"keving40","district_password":"ru8Poudo9Sh"},"district":"4fd43cc56d11340000000005","dob":"9/10/2005","ell_status":"N","email":"kevin.g@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.953Z","location":{"zip":"10023"},"name":{"first":"Kevin","middle":"B","last":"Gottlieb"},"race":"Two
         
     | 
| 
      
 89 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"160303140","state_id":"584973738","student_number":"160303140","id":"530e5960049e75a9262cff9d"},"uri":"/v1.1/students/530e5960049e75a9262cff9d"},{"data":{"created":"2014-02-26T21:15:12.939Z","credentials":{"district_username":"lulat02","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"8/5/1999","ell_status":"N","email":"lula.t@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.957Z","location":{"zip":"11385"},"name":{"first":"Lula","middle":"R","last":"Thiel"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"160831102","state_id":"972603404","student_number":"160831102","id":"530e5960049e75a9262cff9e"},"uri":"/v1.1/students/530e5960049e75a9262cff9e"},{"data":{"created":"2014-02-26T21:15:12.946Z","credentials":{"district_username":"jennieg59","district_password":"haip5Fahqu"},"district":"4fd43cc56d11340000000005","dob":"9/5/1995","ell_status":"N","email":"g.jennie@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.960Z","location":{"zip":"11363"},"name":{"first":"Jennie","middle":"M","last":"Gorczany"},"race":"Two
         
     | 
| 
      
 90 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"161712659","state_id":"187048275","student_number":"161712659","id":"530e5960049e75a9262cff9f"},"uri":"/v1.1/students/530e5960049e75a9262cff9f"},{"data":{"created":"2014-02-26T21:15:12.952Z","credentials":{"district_username":"maryn86","district_password":"xeewoom7A"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"mary.n@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.964Z","location":{"zip":"11418"},"name":{"first":"Mary","middle":"R","last":"Nienow"},"race":"Black
         
     | 
| 
      
 91 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"161871886","state_id":"445642100","student_number":"161871886","id":"530e5960049e75a9262cffa0"},"uri":"/v1.1/students/530e5960049e75a9262cffa0"},{"data":{"created":"2014-02-26T21:15:12.960Z","credentials":{"district_username":"donnar40","district_password":"eeXur8zaeng"},"district":"4fd43cc56d11340000000005","dob":"2/10/1998","ell_status":"N","email":"donna.r@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.969Z","location":{"zip":"11416"},"name":{"first":"Donna","middle":"V","last":"Roob"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"162344240","state_id":"412037326","student_number":"162344240","id":"530e5960049e75a9262cffa2"},"uri":"/v1.1/students/530e5960049e75a9262cffa2"},{"data":{"created":"2014-02-26T21:15:12.966Z","credentials":{"district_username":"melvinv70","district_password":"Oohoh5Eiy"},"district":"4fd43cc56d11340000000005","dob":"6/7/1999","ell_status":"Y","email":"melvin.v@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.973Z","location":{"zip":"10303"},"name":{"first":"Melvin","middle":"S","last":"Veum"},"race":"Black
         
     | 
| 
      
 92 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"163240670","state_id":"123701189","student_number":"163240670","id":"530e5960049e75a9262cffa4"},"uri":"/v1.1/students/530e5960049e75a9262cffa4"},{"data":{"created":"2014-02-26T21:15:12.974Z","credentials":{"district_username":"briand67","district_password":"Abie5air6"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"N","email":"brian_d@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.975Z","location":{"zip":"11231"},"name":{"first":"Brian","middle":"E","last":"Dickinson"},"race":"Black
         
     | 
| 
      
 93 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"164473167","state_id":"253930603","student_number":"164473167","id":"530e5960049e75a9262cffa6"},"uri":"/v1.1/students/530e5960049e75a9262cffa6"},{"data":{"created":"2014-02-26T21:15:12.984Z","credentials":{"district_username":"catherineo48","district_password":"wahj5GiC8r"},"district":"4fd43cc56d11340000000005","dob":"2/10/2005","ell_status":"Y","email":"o_catherine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.979Z","location":{"zip":"10303"},"name":{"first":"Catherine","middle":"D","last":"O''Hara"},"race":"American
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fe","sis_id":"165006548","state_id":"957587261","student_number":"165006548","id":"530e5960049e75a9262cffa9"},"uri":"/v1.1/students/530e5960049e75a9262cffa9"},{"data":{"created":"2014-02-26T21:15:12.990Z","credentials":{"district_username":"nicolep36","district_password":"mie6Veid"},"district":"4fd43cc56d11340000000005","dob":"6/22/2006","ell_status":"Y","email":"nicole_p@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.984Z","location":{"zip":"11103"},"name":{"first":"Nicole","middle":"Z","last":"Paucek"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"165694036","state_id":"784780736","student_number":"165694036","id":"530e5960049e75a9262cffac"},"uri":"/v1.1/students/530e5960049e75a9262cffac"},{"data":{"created":"2014-02-26T21:15:13.003Z","credentials":{"district_username":"davidv33","district_password":"ahy9OhY4ooy"},"district":"4fd43cc56d11340000000005","dob":"11/27/1995","ell_status":"N","email":"david.v@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.988Z","location":{"zip":"11205"},"name":{"first":"David","middle":"O","last":"Von"},"race":"Black
         
     | 
| 
      
 95 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"166940033","state_id":"454242931","student_number":"166940033","id":"530e5961049e75a9262cffaf"},"uri":"/v1.1/students/530e5961049e75a9262cffaf"},{"data":{"created":"2014-02-26T21:15:13.016Z","credentials":{"district_username":"jeanettew71","district_password":"Phoos1eiD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2001","ell_status":"Y","email":"w.jeanette@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.991Z","location":{"zip":"11369"},"name":{"first":"Jeanette","middle":"D","last":"Walsh"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"168343271","state_id":"296595680","student_number":"168343271","id":"530e5961049e75a9262cffb4"},"uri":"/v1.1/students/530e5961049e75a9262cffb4"},{"data":{"created":"2014-02-26T21:15:13.026Z","credentials":{"district_username":"manuelg57","district_password":"uSh2ir4ee"},"district":"4fd43cc56d11340000000005","dob":"9/12/1995","ell_status":"N","email":"g_manuel@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.995Z","location":{"zip":"10304"},"name":{"first":"Manuel","middle":"E","last":"Gibson"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"169195857","state_id":"533497862","student_number":"169195857","id":"530e5961049e75a9262cffb7"},"uri":"/v1.1/students/530e5961049e75a9262cffb7"},{"data":{"created":"2014-02-26T21:15:13.039Z","credentials":{"district_username":"bethl85","district_password":"zieFoj0eic"},"district":"4fd43cc56d11340000000005","dob":"4/3/1996","ell_status":"N","email":"l_beth@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.000Z","location":{"zip":"11370"},"name":{"first":"Beth","middle":"R","last":"Luettgen"},"race":"Two
         
     | 
| 
      
 96 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"170677985","state_id":"859401919","student_number":"170677985","id":"530e5961049e75a9262cffbb"},"uri":"/v1.1/students/530e5961049e75a9262cffbb"},{"data":{"created":"2014-02-26T21:15:13.049Z","credentials":{"district_username":"karenh22","district_password":"haZec8chiok"},"district":"4fd43cc56d11340000000005","dob":"1/9/2007","ell_status":"Y","email":"karen.h@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.004Z","location":{"zip":"11366"},"name":{"first":"Karen","middle":"D","last":"Harvey"},"race":"American
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fe","sis_id":"173157322","state_id":"251634821","student_number":"173157322","id":"530e5961049e75a9262cffbe"},"uri":"/v1.1/students/530e5961049e75a9262cffbe"},{"data":{"created":"2014-02-26T21:15:13.053Z","credentials":{"district_username":"jasmineh39","district_password":"ieRai5ca4x"},"district":"4fd43cc56d11340000000005","dob":"10/27/2005","ell_status":"N","email":"h.jasmine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.007Z","location":{"zip":"10010"},"name":{"first":"Jasmine","middle":"R","last":"Hudson"},"race":"Black
         
     | 
| 
      
 98 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"173477739","state_id":"987948004","student_number":"173477739","id":"530e5961049e75a9262cffbf"},"uri":"/v1.1/students/530e5961049e75a9262cffbf"},{"data":{"created":"2014-02-26T21:15:13.063Z","credentials":{"district_username":"juliam55","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"5/15/2000","ell_status":"N","email":"m.julia@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.010Z","location":{"zip":"10474"},"name":{"first":"Julia","middle":"B","last":"Marvin"},"race":"Black
         
     | 
| 
      
 99 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"174626355","state_id":"592557939","student_number":"174626355","id":"530e5961049e75a9262cffc0"},"uri":"/v1.1/students/530e5961049e75a9262cffc0"},{"data":{"created":"2014-02-26T21:15:13.075Z","credentials":{"district_username":"racheller73","district_password":"zeedei8iLuT"},"district":"4fd43cc56d11340000000005","dob":"9/14/2002","ell_status":"N","email":"rachelle_r@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.015Z","location":{"zip":"10014"},"name":{"first":"Rachelle","middle":"J","last":"Roberts"},"race":"Two
         
     | 
| 
      
 100 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"175635873","state_id":"759563523","student_number":"175635873","id":"530e5961049e75a9262cffc1"},"uri":"/v1.1/students/530e5961049e75a9262cffc1"},{"data":{"created":"2014-02-26T21:15:13.080Z","credentials":{"district_username":"jamesk73","district_password":"DahX1Nah2"},"district":"4fd43cc56d11340000000005","dob":"10/13/2007","ell_status":"Y","email":"james.k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.019Z","location":{"zip":"10029"},"name":{"first":"James","middle":"I","last":"Kreiger"},"race":"Two
         
     | 
| 
      
 101 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"175654773","state_id":"594272617","student_number":"175654773","id":"530e5961049e75a9262cffc2"},"uri":"/v1.1/students/530e5961049e75a9262cffc2"},{"data":{"created":"2014-02-26T21:15:13.089Z","credentials":{"district_username":"adriannas34","district_password":"Uoz5ich1"},"district":"4fd43cc56d11340000000005","dob":"5/5/2007","ell_status":"N","email":"adrianna.s@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.022Z","location":{"zip":"11220"},"name":{"first":"Adrianna","middle":"A","last":"Sawayn"},"race":"Two
         
     | 
| 
      
 102 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"176057934","state_id":"171145300","student_number":"176057934","id":"530e5961049e75a9262cffc3"},"uri":"/v1.1/students/530e5961049e75a9262cffc3"},{"data":{"created":"2014-02-26T21:15:13.125Z","credentials":{"district_username":"fredal36","district_password":"Hoo8Eiloo"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"l.freda@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.026Z","location":{"zip":"11694"},"name":{"first":"Freda","middle":"P","last":"Lindgren"},"race":"Two
         
     | 
| 
      
 103 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9ff","sis_id":"177762936","state_id":"604942388","student_number":"177762936","id":"530e5961049e75a9262cffcb"},"uri":"/v1.1/students/530e5961049e75a9262cffcb"},{"data":{"created":"2014-02-26T21:15:13.132Z","credentials":{"district_username":"christopherb30","district_password":"iet4ReCeiH"},"district":"4fd43cc56d11340000000005","dob":"1/25/1998","ell_status":"Y","email":"b.christopher@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.031Z","location":{"zip":"10461"},"name":{"first":"Christopher","middle":"M","last":"Bednar"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"178552730","state_id":"384352367","student_number":"178552730","id":"530e5961049e75a9262cffcd"},"uri":"/v1.1/students/530e5961049e75a9262cffcd"},{"data":{"created":"2014-02-26T21:15:13.147Z","credentials":{"district_username":"willardb67","district_password":"ul2Zeisee"},"district":"4fd43cc56d11340000000005","dob":"5/2/2003","ell_status":"Y","email":"willard_b@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.035Z","location":{"zip":"11357"},"name":{"first":"Willard","middle":"C","last":"Bashirian"},"race":"Two
         
     | 
| 
      
 104 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"180515767","state_id":"967967167","student_number":"180515767","id":"530e5961049e75a9262cffd2"},"uri":"/v1.1/students/530e5961049e75a9262cffd2"},{"data":{"created":"2014-02-26T21:15:13.154Z","credentials":{"district_username":"pedrob07","district_password":"ooha1aiZ"},"district":"4fd43cc56d11340000000005","dob":"8/1/2000","ell_status":"Y","email":"pedro_b@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.037Z","location":{"zip":"10017"},"name":{"first":"Pedro","middle":"D","last":"Bauch"},"race":"Black
         
     | 
| 
      
 105 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"180999707","state_id":"399605649","student_number":"180999707","id":"530e5961049e75a9262cffd5"},"uri":"/v1.1/students/530e5961049e75a9262cffd5"},{"data":{"created":"2014-02-26T21:15:13.160Z","credentials":{"district_username":"annes24","district_password":"eshaek9ahQu"},"district":"4fd43cc56d11340000000005","dob":"3/30/2001","ell_status":"Y","email":"s.anne@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.041Z","location":{"zip":"11215"},"name":{"first":"Anne","middle":"E","last":"Satterfield"},"race":"Black
         
     | 
| 
      
 106 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"181777124","state_id":"249784916","student_number":"181777124","id":"530e5961049e75a9262cffd7"},"uri":"/v1.1/students/530e5961049e75a9262cffd7"},{"data":{"created":"2014-02-26T21:15:13.166Z","credentials":{"district_username":"williamk46","district_password":"bohjah7Ae"},"district":"4fd43cc56d11340000000005","dob":"12/5/1997","ell_status":"Y","email":"k_william@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.046Z","location":{"zip":"11429"},"name":{"first":"William","middle":"S","last":"Koelpin"},"race":"Black
         
     | 
| 
      
 107 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fd","sis_id":"182397746","state_id":"799666284","student_number":"182397746","id":"530e5961049e75a9262cffd9"},"uri":"/v1.1/students/530e5961049e75a9262cffd9"},{"data":{"created":"2014-02-26T21:15:13.176Z","credentials":{"district_username":"barrym17","district_password":"aim2Vi1e"},"district":"4fd43cc56d11340000000005","dob":"3/3/2007","ell_status":"N","email":"m.barry@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.050Z","location":{"zip":"11238"},"name":{"first":"Barry","middle":"G","last":"Marquardt"},"race":"Two
         
     | 
| 
      
 108 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fe","sis_id":"184337517","state_id":"497075762","student_number":"184337517","id":"530e5961049e75a9262cffdc"},"uri":"/v1.1/students/530e5961049e75a9262cffdc"},{"data":{"created":"2014-02-26T21:15:13.181Z","credentials":{"district_username":"jeralds17","district_password":"Ingee5ie"},"district":"4fd43cc56d11340000000005","dob":"2/5/2006","ell_status":"N","email":"jerald.s@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.053Z","location":{"zip":"10035"},"name":{"first":"Jerald","middle":"M","last":"Schaefer"},"race":"Black
         
     | 
| 
      
 109 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"184897317","state_id":"422855981","student_number":"184897317","id":"530e5961049e75a9262cffde"},"uri":"/v1.1/students/530e5961049e75a9262cffde"},{"data":{"created":"2014-02-26T21:15:13.187Z","credentials":{"district_username":"jeffreys95","district_password":"ogooph1Gooz"},"district":"4fd43cc56d11340000000005","dob":"3/16/1997","ell_status":"N","email":"jeffrey_s@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.056Z","location":{"zip":"11229"},"name":{"first":"Jeffrey","middle":"S","last":"Sporer"},"race":"American
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Indian","school":"530e595026403103360ff9fd","sis_id":"185844295","state_id":"833289361","student_number":"185844295","id":"530e5961049e75a9262cffe0"},"uri":"/v1.1/students/530e5961049e75a9262cffe0"},{"data":{"created":"2014-02-26T21:15:13.192Z","credentials":{"district_username":"franciscos71","district_password":"iife9eiTie"},"district":"4fd43cc56d11340000000005","dob":"6/15/1996","ell_status":"Y","email":"francisco_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.061Z","location":{"zip":"10009"},"name":{"first":"Francisco","middle":"L","last":"Sanford"},"race":"Two
         
     | 
| 
      
 111 
     | 
    
         
            +
                    or More Races","school":"530e595026403103360ff9fd","sis_id":"186732171","state_id":"256962814","student_number":"186732171","id":"530e5961049e75a9262cffe1"},"uri":"/v1.1/students/530e5961049e75a9262cffe1"},{"data":{"created":"2014-02-26T21:15:13.197Z","credentials":{"district_username":"charlesk43","district_password":"cie7Cai1shoh"},"district":"4fd43cc56d11340000000005","dob":"2/21/2000","ell_status":"N","email":"k_charles@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.065Z","location":{"zip":"11358"},"name":{"first":"Charles","middle":"A","last":"Kiehn"},"race":"Black
         
     | 
| 
      
 112 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9ff","sis_id":"187402543","state_id":"943748667","student_number":"187402543","id":"530e5961049e75a9262cffe2"},"uri":"/v1.1/students/530e5961049e75a9262cffe2"},{"data":{"created":"2014-02-26T21:15:13.202Z","credentials":{"district_username":"melvina59","district_password":"bog3Apoose1"},"district":"4fd43cc56d11340000000005","dob":"8/16/2000","ell_status":"Y","email":"a_melvin@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.068Z","location":{"zip":"11413"},"name":{"first":"Melvin","middle":"T","last":"Abshire"},"race":"Two
         
     | 
| 
      
 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 
     | 
    
         
            +
                    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 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 116 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 117 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 118 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 119 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com/v1.1/students/530e5960049e75a9262cff1d
         
     | 
| 
      
 120 
     | 
    
         
            +
                body:
         
     | 
| 
      
 121 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 122 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 123 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 124 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 125 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 126 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 127 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 128 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 129 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 130 
     | 
    
         
            +
              response:
         
     | 
| 
      
 131 
     | 
    
         
            +
                status:
         
     | 
| 
      
 132 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 133 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 134 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 135 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 137 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 139 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - ! '"1850740737"'
         
     | 
| 
      
 147 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 148 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 149 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 150 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 151 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 152 
     | 
    
         
            +
                  - '1151'
         
     | 
| 
      
 153 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 154 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 155 
     | 
    
         
            +
                body:
         
     | 
| 
      
 156 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 157 
     | 
    
         
            +
                  string: ! '{"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
         
     | 
| 
      
 158 
     | 
    
         
            +
                    or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"rel":"district","uri":"/v1.1/students/530e5960049e75a9262cff1d/district"},{"rel":"sections","uri":"/v1.1/students/530e5960049e75a9262cff1d/sections"},{"rel":"school","uri":"/v1.1/students/530e5960049e75a9262cff1d/school"},{"rel":"teachers","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"},{"rel":"contacts","uri":"/v1.1/students/530e5960049e75a9262cff1d/contacts"},{"rel":"events","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
         
     | 
| 
      
 159 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 160 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 161 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 162 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 163 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students/530e5960049e75a9262cff1d/teachers
         
     | 
| 
      
 164 
     | 
    
         
            +
                body:
         
     | 
| 
      
 165 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 166 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 167 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 168 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 169 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 170 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 171 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 172 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 173 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 174 
     | 
    
         
            +
              response:
         
     | 
| 
      
 175 
     | 
    
         
            +
                status:
         
     | 
| 
      
 176 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 177 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 178 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 179 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 180 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 181 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 182 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 183 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 184 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 185 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 186 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 187 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 188 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 189 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 190 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 191 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 192 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 193 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 194 
     | 
    
         
            +
                  - '620'
         
     | 
| 
      
 195 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 196 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 197 
     | 
    
         
            +
                body:
         
     | 
| 
      
 198 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 199 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.475Z","credentials":{"district_username":"schoen.seth","district_password":"aiX0iayai"},"district":"4fd43cc56d11340000000005","email":"seth_schoen@example.org","last_modified":"2014-02-26T21:15:01.477Z","name":{"first":"Seth","middle":"C","last":"Schoen"},"school":"530e595026403103360ff9fe","sis_id":"69","teacher_number":"256742","title":"Kindergarten
         
     | 
| 
      
 200 
     | 
    
         
            +
                    Teacher","id":"530e5955d50c310f36112c03"},"uri":"/v1.1/teachers/530e5955d50c310f36112c03"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"}]}'
         
     | 
| 
      
 201 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 202 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 203 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 204 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 205 
     | 
    
         
            +
                uri: https://DEMO_KEY:@api.clever.com//v1.1/students/530e5960049e75a9262cff1d/teachers
         
     | 
| 
      
 206 
     | 
    
         
            +
                body:
         
     | 
| 
      
 207 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 208 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 209 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 210 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 211 
     | 
    
         
            +
                  - ! '*/*; q=0.5, application/xml'
         
     | 
| 
      
 212 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 213 
     | 
    
         
            +
                  - gzip, deflate
         
     | 
| 
      
 214 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 215 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 216 
     | 
    
         
            +
              response:
         
     | 
| 
      
 217 
     | 
    
         
            +
                status:
         
     | 
| 
      
 218 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 219 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 220 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 221 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 222 
     | 
    
         
            +
                  - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
         
     | 
| 
      
 223 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 224 
     | 
    
         
            +
                  - GET,PATCH,POST,DELETE
         
     | 
| 
      
 225 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 226 
     | 
    
         
            +
                  - ! '*'
         
     | 
| 
      
 227 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 228 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 229 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 230 
     | 
    
         
            +
                  - Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 231 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 232 
     | 
    
         
            +
                  - nginx/1.4.7
         
     | 
| 
      
 233 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 234 
     | 
    
         
            +
                  - Express
         
     | 
| 
      
 235 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 236 
     | 
    
         
            +
                  - '620'
         
     | 
| 
      
 237 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 238 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 239 
     | 
    
         
            +
                body:
         
     | 
| 
      
 240 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 241 
     | 
    
         
            +
                  string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.475Z","credentials":{"district_username":"schoen.seth","district_password":"aiX0iayai"},"district":"4fd43cc56d11340000000005","email":"seth_schoen@example.org","last_modified":"2014-02-26T21:15:01.477Z","name":{"first":"Seth","middle":"C","last":"Schoen"},"school":"530e595026403103360ff9fe","sis_id":"69","teacher_number":"256742","title":"Kindergarten
         
     | 
| 
      
 242 
     | 
    
         
            +
                    Teacher","id":"530e5955d50c310f36112c03"},"uri":"/v1.1/teachers/530e5955d50c310f36112c03"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"}]}'
         
     | 
| 
      
 243 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 244 
     | 
    
         
            +
              recorded_at: Fri, 12 Sep 2014 20:51:28 GMT
         
     | 
| 
      
 245 
     | 
    
         
            +
            recorded_with: VCR 2.4.0
         
     | 
| 
         @@ -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:35 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:35 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:36 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:36 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:36 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:36 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:37 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:37 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:37 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:37 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:38 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:38 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:38 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:38 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:38 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:38 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:39 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:39 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:39 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:39 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:40 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:40 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:40 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:40 GMT
         
     | 
| 
       1171 
1171 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     |