https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/
https://dev.api.example.com/
https://stg.api.example.com/
https://phronesis-inspironix.redocly.app/{{OUR_SERVER}}/
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients
https://dev.api.example.com/ingredients
https://stg.api.example.com/ingredients
https://phronesis-inspironix.redocly.app/{{OUR_SERVER}}/ingredients
curl -i -X GET \
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "object": "string", "page": { "endCursor": "string", "startCursor": "string", "hasNextPage": true, "hasPrevPage": true, "limit": 0, "total": 0 }, "items": [ { … } ], "total": 0 }
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients
https://dev.api.example.com/ingredients
https://stg.api.example.com/ingredients
https://phronesis-inspironix.redocly.app/{{OUR_SERVER}}/ingredients
curl -i -X POST \
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"quantity": 0,
"unit": "string",
"useBefore": "2019-08-24T14:15:22Z"
}'
{ "id": "string", "object": "string", "kitchenId": "string", "name": "string", "quantity": 0, "unit": "string", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients/{id}
https://dev.api.example.com/ingredients/{id}
https://stg.api.example.com/ingredients/{id}
https://phronesis-inspironix.redocly.app/{{OUR_SERVER}}/ingredients/{id}
curl -i -X DELETE \
'https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients/{id}
https://dev.api.example.com/ingredients/{id}
https://stg.api.example.com/ingredients/{id}
https://phronesis-inspironix.redocly.app/{{OUR_SERVER}}/ingredients/{id}
curl -i -X GET \
'https://phronesis-inspironix.redocly.app/_mock/apis/kitchen-api/openapi/ingredients/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "id": "string", "object": "string", "kitchenId": "string", "name": "string", "quantity": 0, "unit": "string", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }