Authorization: ********************curl --location --request PUT 'https://test.your-api-server.com/api/recipe/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"description": "string",
"ingredients": [
{
"material": "string",
"quantity": 0,
"unit": "string"
}
],
"instructions": "string"
}'