Get Call

Returns json data about an ingredient

http://justynjones.com/SubwayCalc/api.php

GET

Required:

name=[string]

javascript $.get('api.php', {name:"pickles"} , function(data){ console.log(data); fillFields(data); });

Post Call

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]

javascript $.post('api.php', {'name':"Guacamole",'calorie':"12",'sugar':"6",'protein':"9",'fat':"10", 'category':"Sauce"}, refreshTable);

Put Call

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]

javascript $.put('api.php',{'id':"American",'name':"Cheddar",'calorie':"13",'sugar':"1",'protein':"3",'fat':"8", 'category':"Cheese"}, refreshTable);

Delete Call

Delete an existing entry from the database

http://justynjones.com/SubwayCalc/api.php

DELETE

Required:

id=[string]

javascript $.del('api.php', {id:"Cucumbers"}, refreshTable);

Options Call

Present examples for each API call

http://justynjones.com/SubwayCalc/options.html

OPTIONS

Required: None

Button Click From Admin Page

Created By:
Jordan Sampilo
Pavandeep Bolena
Justyn Jones