BigOven · Example Payload

Review_Putlegacy

Review

Review_Putlegacy is an example object payload from BigOven, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathtagssummaryparametersrequestBodyresponse

Example Payload

Raw ↑
{
  "operationId": "Review_PutLegacy",
  "method": "PUT",
  "path": "/recipe/{recipeId}/review/{reviewId}",
  "tags": [
    "Review"
  ],
  "summary": "HTTP PUT (update) a recipe review. DEPRECATED. Please see recipe/review/{reviewId} PUT for the new endpoint.\r\n            We are moving to a string-based primary key system, no longer integers, for reviews and replies.",
  "parameters": [
    {
      "name": "reviewId",
      "in": "path",
      "required": true,
      "description": "reviewId (int)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "recipeId (int)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/API2.Controllers.WebAPI.ReviewController.ReviewRequestLegacy"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.API.Review"
    }
  }
}