action bigoven_note_delete { label: "Delete a review \n do a DELETE Http request of /note/{ID}" provider: bigoven method: DELETE path: "/recipe/{recipeId}/note/{noteId}" encoding: json input: { type: "object" properties: { noteId: { type: "integer" format: "int32" } recipeId: { type: "integer" format: "int32" } } required: ["noteId", "recipeId"] additionalProperties: false } output: { type: "object" properties: {} } }