HTTP PUT (update) a recipe review. DEPRECATED. Please see recipe/review/{reviewId} PUT for the new endpoint. We are moving to a string-based primary key system, no longer integers, for reviews and replies.
PUT
/recipe/{recipeId}/review/{reviewId}
Review
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api2.bigoven.com/recipe//review/'
Response Response Example
{
"ActiveMinutes": 0,
"Comment": "string",
"CreationDate": "2019-08-24T14:15:22Z",
"FeaturedReply": {
"Comment": "string",
"CreationDate": "2019-08-24T14:15:22Z",
"ID": "string",
"LastModified": "2019-08-24T14:15:22Z",
"Poster": {
"FirstName": "string",
"LastName": "string",
"PhotoUrl": "string",
"UserID": 0,
"UserName": "string"
},
"ReviewID": "string"
},
"GUID": "string",
"ID": "string",
"LastModified": "2019-08-24T14:15:22Z",
"ParentID": 0,
"Poster": {
"FirstName": "string",
"ImageUrl48": "string",
"IsKitchenHelper": true,
"IsPremium": true,
"IsUsingRecurly": true,
"LastName": "string",
"MemberSince": "2019-08-24T14:15:22Z",
"PhotoUrl": "string",
"PhotoUrl48": "string",
"PremiumExpiryDate": "2019-08-24T14:15:22Z",
"UserID": 0,
"UserName": "string",
"WebUrl": "string"
},
"Replies": [
{}
],
"ReplyCount": 0,
"ReviewID": 0,
"StarRating": 0,
"TotalMinutes": 0
}
Request
Path Params
reviewId
integerÂ
required
recipeId
integerÂ
required
Body Params application/x-www-form-urlencoded
ActiveMinutes
integerÂ
optional
Comment
stringÂ
optional
GUID
stringÂ
optional
MakeAgain
stringÂ
optional
ParentID
integerÂ
optional
StarRating
integerÂ
optional
TotalMinutes
integerÂ
optional
Responses
Modified at 2023-08-15 06:02:32
Previous
Get a given review - DEPRECATED. See recipe/review/{reviewId} for the current usage.
Beginning in January 2017, BigOven moded from an integer-based ID system to a GUID-style string-based ID system for reviews and replies.
We are
Next
Get paged list of reviews for a recipe. Each review will have at most one FeaturedReply, as well as a ReplyCount.