action bigoven_review_put_reply { label: "Update (PUT) a reply to a given review. Authenticated user must be the original one that posted the reply." provider: bigoven method: PUT path: "/recipe/review/replies/{replyId}" encoding: form input: { type: "object" properties: { Comment: { type: "string" description: "The comment. If mentioning any user(s) (optional), include them as @username in the text body. Do not use @ symbol for anything but mentioning @usernames." } replyId: { type: "string" } } required: ["replyId"] additionalProperties: false } output: { type: "object" properties: { Comment: { type: "string" } CreationDate: { type: "string" format: "date-time" } ID: { type: "string" } LastModified: { type: "string" format: "date-time" } Poster: { type: "object" properties: { FirstName: { type: "string" } LastName: { type: "string" } PhotoUrl: { type: "string" } UserID: { type: "integer" format: "int32" } UserName: { type: "string" } } } ReviewID: { type: "string" } } } }