Returns json data about an ingredient
http://justynjones.com/SubwayCalc/api.php
GET
Required:
name=[string]
Success Response:
Code: 200
Content: [{"Name":"Pickles","Calories":"10","Sugar":"0","Protein":"0","Fat":"0","Category":"Veggie"}]
Sample Call:
javascript $.get('api.php', {name:"pickles"} , function(data){ console.log(data); fillFields(data); });
Adds a new entry in the database
http://justynjones.com/SubwayCalc/api.php
POST
Required:
name=[string]
calorie=[string]
sugar=[string]
protein=[string]
fat=[string]
categorie=[string]
Success Response:
Code: 200
Content: None
Sample Call:
javascript $.post('api.php', {'name':"Guacamole",'calorie':"12",'sugar':"6",'protein':"9",'fat':"10", 'category':"Sauce"}, refreshTable);
Edit an existing entry in the database
http://justynjones.com/SubwayCalc/api.php
PUT
Required:
id=[string]
name=[string]
calorie=[string]
sugar=[string]
protein=[string]
fat=[string]
categorie=[string]
Success Response:
Code: 200
Content: None
Sample Call:
javascript $.put('api.php',{'id':"American",'name':"Cheddar",'calorie':"13",'sugar':"1",'protein':"3",'fat':"8", 'category':"Cheese"}, refreshTable);
Delete an existing entry from the database
http://justynjones.com/SubwayCalc/api.php
DELETE
Required:
id=[string]
Success Response:
Code: 200
Content: None
Sample Call:
javascript $.del('api.php', {id:"Cucumbers"}, refreshTable);
Present examples for each API call
http://justynjones.com/SubwayCalc/options.html
OPTIONS
Required: None
Success Response:
Code: 200
Content: None
Sample Call:
Button Click From Admin Page
Created By:
Jordan Sampilo
Pavandeep Bolena
Justyn Jones