Difference between revisions of "API Get Info"

From zFairs Contest Management
Line 17: Line 17:
 
.then(data=>{console.log('Success: ',data);})
 
.then(data=>{console.log('Success: ',data);})
 
.catch((error)=>{console.log('Error: ', error);});
 
.catch((error)=>{console.log('Error: ', error);});
 +
 +
</syntaxhighlight>
 +
 +
This will return an object like so
 +
 +
<syntaxhighlight lang="JavaScript" line>
 +
 +
{
 +
Categories : [{
 +
Id: 123,
 +
Name: "math",
 +
Abbreviation: "ma"
 +
}, ...],
 +
SubCategories : [{
 +
Id: 123,
 +
Name: "hard math",
 +
Abbreviation: "hm"
 +
}, ...],
 +
JudgingSessions: [{
 +
Id: 123,
 +
Name: "early morning",
 +
MinGrade: "6",
 +
MaxGrade: "12",
 +
StartTime: "",
 +
EndTime: "",
 +
}, ...],
 +
SpecialAwards: [{
 +
Id: 123,
 +
Name: "big winner",
 +
}, ...],
 +
CategoryAward: [{
 +
Id: 123,
 +
Name: "first place",
 +
}, ...],
 +
PaperworkFileTypes: [{
 +
Id: 123,
 +
Name: "form 1c",
 +
}, ...]
 +
}
 +
  
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 20:01, 2 December 2020

Get Info

Some of our api calls will require you to have additional information such as category ids or judging session ids. This api call will provide that information. The results of this api call will grow as our api expands.

fetch('/api/data/info', {
    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: {}
        })
})
.then(response => response.json())
.then(data=>{console.log('Success: ',data);})
.catch((error)=>{console.log('Error: ', error);});

This will return an object like so

{
	Categories : [{
		Id: 123,
		Name: "math",
		Abbreviation: "ma"
	}, ...],
	SubCategories : [{
		Id: 123,
		Name: "hard math",
		Abbreviation: "hm"
	}, ...],
	JudgingSessions: [{
		Id: 123,
		Name: "early morning",
		MinGrade: "6",
		MaxGrade: "12",
		StartTime: "",
		EndTime: "",
	}, ...],
	SpecialAwards: [{
		Id: 123,
		Name: "big winner",
	}, ...],
	CategoryAward: [{
		Id: 123,
		Name: "first place",
	}, ...],
	PaperworkFileTypes: [{
		Id: 123,
		Name: "form 1c",
	}, ...]
}