index
API OVERVIEW
AUTHENTICATION
API PROTOCOL
API DATA
- Recipes
- Recipe Reviews
- Recipe Images
- Recipe Search Results
- Food Glossary
- Favorites
- Try Soons
- Grocery List
- User Profile
DATA MANAGEMENT
BRANDING, LEGAL & FINANCIAL
Favorites
The Favorites object refers to the collection of favorite recipes for a BigOven user. The following methods are supported for the Recipe Review object.
| CREATE | READ | UPDATE | DELETE | |
| Favorites | Yes | Yes | N/A | Yes |
Creating a Favorite (HTTP POST)
Add a new favorite for the authenticated user.
POST http://api.bigoven.com/favorites
| Parameter | Description | Required? |
| rid | Primary key(ID) of recipe. | Yes |
Reading a Favorite (HTTP GET)
Read all favorites for the authenticated user.
GET http://api.bigoven.com/favorites
| Parameter | Description | Required? |
| N/A | N/A | N/A |
Updating a Favorite (HTTP PUT)
This method is not applicable.
Deleting a Favorite (HTTP DELETE)
Delete a favorite for the authenticated user.
DELETE http://api.bigoven.com/favorites
| Parameter | Description | Required? |
| rid | Primary key(ID) of recipe. | Yes |
