Difference between revisions of "API Add School"

From zFairs Contest Management
Line 12: Line 12:
 
             Body: {
 
             Body: {
 
                 Name: '_ A Test School'
 
                 Name: '_ A Test School'
                 ,Address: '1219 34th State'
+
                 ,Address: '1219 34th State' //optional
                 ,Address2: 'Apt 3'
+
                 ,Address2: 'Apt 3'         //optional
                 ,City: 'Ogden'
+
                 ,City: 'Ogden'             //optional
                 ,State: 'Ut'
+
                 ,State: 'Ut'               //optional
                 ,Zip: '84403'
+
                 ,Zip: '84403'               //optional
                 ,County: 'Weber'
+
                 ,County: 'Weber'           //optional
                 ,Phone: '801-252-0903'
+
                 ,Phone: '801-252-0903'     //optional
                 ,WebsiteUrl: 'zfairs.com'
+
                 ,WebsiteUrl: 'zfairs.com'   //optional
                 ,SchoolType: 'Public' //{ Public, Private, Charter, Home}
+
                 ,SchoolType: 'Public'       //{ Public, Private, Charter, Home} //optional
                 ,PrincipalName: 'Mrs Bell'
+
                 ,PrincipalName: 'Mrs Bell'                 //optional
                 ,PrincipalPhone: '801-252-0000'
+
                 ,PrincipalPhone: '801-252-0000'           //optional
                 ,PrincipalEmail: 'MrsBell@zfairs.com'
+
                 ,PrincipalEmail: 'MrsBell@zfairs.com'     //optional
                 ,ContactFirstName: 'Joe'
+
                 ,ContactFirstName: 'Joe'                   //optional
                 ,ContactLastName: 'Homes'
+
                 ,ContactLastName: 'Homes'                 //optional
                 ,ContactPhone: '801-252-0001'
+
                 ,ContactPhone: '801-252-0001'             //optional
                 ,ContactEmail: 'jh@zfairs.com'
+
                 ,ContactEmail: 'jh@zfairs.com'             //optional
                 ,GradeLow: '0' //pre-k = -1, k = 0
+
                 ,GradeLow: '0'                             //pre-k = -1, k = 0         //optional
                 ,GradeHigh: '12'
+
                 ,GradeHigh: '12'                           //optional
                 ,Fax: '801-252-0003'
+
                 ,Fax: '801-252-0003'                       //optional
                 ,SchoolPaysFees: false, // optional values are true/false
+
                 ,SchoolPaysFees: false,                   //optional values are true/false
                 ,Id: 1234 //optional id of school, this will trigger an updated of that school
+
                 ,Id: 1234                                 //optional id of school, this will trigger an updated of that school
 +
                ,SchoolCode: '123'                        //optional
 +
                ,Affiliated: true                          //optional
 
             }
 
             }
 
         })
 
         })

Revision as of 16:26, 1 September 2020

Add Schools

You can use our api to add schools to your contest. To do this you need to POST a message to your site. Below is an example of what needs to be posted.

fetch('/api/data/school', {
    method:'POST',
    headers:{'Content-Type': 'application/json'},
    body: JSON.stringify({
            Username:'admin username',
            Password: 'password',
            Body: {
                Name: '_ A Test School'
                ,Address: '1219 34th State' //optional
                ,Address2: 'Apt 3'          //optional
                ,City: 'Ogden'              //optional
                ,State: 'Ut'                //optional
                ,Zip: '84403'               //optional
                ,County: 'Weber'            //optional
                ,Phone: '801-252-0903'      //optional
                ,WebsiteUrl: 'zfairs.com'   //optional
                ,SchoolType: 'Public'       //{ Public, Private, Charter, Home}  //optional
                ,PrincipalName: 'Mrs Bell'                 //optional
                ,PrincipalPhone: '801-252-0000'            //optional
                ,PrincipalEmail: 'MrsBell@zfairs.com'      //optional
                ,ContactFirstName: 'Joe'                   //optional
                ,ContactLastName: 'Homes'                  //optional
                ,ContactPhone: '801-252-0001'              //optional
                ,ContactEmail: 'jh@zfairs.com'             //optional
                ,GradeLow: '0'                             //pre-k = -1, k = 0         //optional
                ,GradeHigh: '12'                           //optional
                ,Fax: '801-252-0003'                       //optional
                ,SchoolPaysFees: false,                    //optional values are true/false
                ,Id: 1234                                  //optional id of school, this will trigger an updated of that school
                ,SchoolCode: '123'                         //optional
                ,Affiliated: true                          //optional 
            }
        })
})
.then(response => response.json())
.then(data=>{console.log('Success: ',data);})
.catch((error)=>{console.log('Error: ', error);});