Hi! There's a new version available (api2), recommended for all new and future development.
We plan to continue to support the legacy version of the API well into 2017 (and later if you let us know), but we do recommend all developers migrate to the new api2 format as your development cycle allows. We strongly recommend that all new recipe and grocery API developers begin with https://api2.bigoven.com
API OVERVIEW
AUTHENTICATION
API PROTOCOL
API DATA
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 https://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 https://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 https://api.bigoven.com/favorites
Parameter | Description | Required? |
rid | Primary key(ID) of recipe. | Yes |