Difference between revisions of "API Judging Scores"

From zFairs Contest Management
(Created page with "== Judging Scores == You can use our api to access your judges scores for a given round. To do this you need to POST a message to your site. Below is an example of what needs...")
 
Line 12: Line 12:
 
             FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
 
             FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
 
             Body: {
 
             Body: {
RoundId: 1,
+
RoundId: 1, // [[API Get Info|Get Round Id]]
 
             }
 
             }
 
         })
 
         })

Revision as of 17:13, 14 June 2021

Judging Scores

You can use our api to access your judges scores for a given round. To do this you need to POST a message to your site. Below is an example of what needs to be posted. You can get round Id from the get info api call, judge id, and project key are returned when a judge or project is added.

fetch('/api/data/JudgingScores', {
    method:'POST',
    headers:{'Content-Type': 'application/json'},
    body: JSON.stringify({
            Username:'admin username',
            Password: 'password',
            FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
            Body: {
				RoundId: 1, // [[API Get Info|Get Round Id]]
            }
        })
})
.then(response => response.json())
.then(data=>{console.log('Success: ',data);})
.catch((error)=>{console.log('Error: ', error);});