BetterMenu
Studio

Delete Recipe

Delete recipe with soft delete.

Business Rules:

  • Only OWNER can delete recipes
  • Recipe must exist and not be already deleted
  • Deletion is soft delete (sets deleted_at timestamp)
DELETE
/studio/recipes/{recipe_id}

Authorization

BearerAuth
AuthorizationBearer <token>

JWT Bearer token authentication

In: header

Path Parameters

recipe_id*string

Response Body

application/json

curl -X DELETE "https://loading/studio/recipes/string"
Empty
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}