Cooking process operations
POST /v1/cook/simmer HTTP/1.1 Host: api.tomatopy.example.com Content-Type: application/json Accept: */* Content-Length: 184 { "ingredients": [ { "id": "text", "name": "text", "amount": 1, "unit": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ], "temperature": 1, "duration": "text", "stirring_frequency": "text" }
Successful simmering process
{ "id": "text", "name": "text", "ingredients": [ { "id": "text", "name": "text", "amount": 1, "unit": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ], "temperature": 1, "duration": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } }
POST /v1/cook/roast HTTP/1.1 Host: api.tomatopy.example.com Content-Type: application/json Accept: */* Content-Length: 183 { "ingredients": [ { "id": "text", "name": "text", "amount": 1, "unit": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ], "temperature": 1, "duration": "text", "turning_frequency": "text" }
Successful roasting operation
[ { "id": "text", "name": "text", "ingredients": [ { "id": "text", "name": "text", "amount": 1, "unit": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ], "temperature": 1, "duration": "text", "properties": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ]
Was this helpful?