http://localhost:3000/user/new
Input :
{
"username":"testUser",
"password":"123456"
}
Output:
{
"User created"
}
http://localhost:3000/user/login
Input:
{
"username":"testUser",
"password":"123456"
}
Output
{
"Welcome, testUser"
}
http://localhost:3000/user/logout
Input:
{}
Output
{
"Successfully logged out"
}
http://localhost:3000/recipes
Input:
{}
Output:
{
{
"_id": "6376604cca8dba6ec666b7d3",
"title": "Mücver",
"ingredients": "1 tbsp of ingredients\n2 tbsp of other ingredients\n1 bottle of some ingredients",
"instructions": "The detailed instructions of mücver is written here",
"image": "uploads\\1668702284374.jpg",
"createdBy": "testUser",
"createdAt": "2022-11-17T16:24:44.387Z",
"updatedAt": "2022-11-17T16:24:44.387Z",
"__v": 0
},
{
"_id": "637656ad10fc0d1f612ce51a",
"title": "Another meal",
"ingredients": "1 tbsp of ingredients\n2 tbsp of other ingredients\n1 bottle of some ingredients",
"instructions": "The detailed instructions of another meal is written here",
"image": "uploads\\1668699821170.jpg",
"createdBy": "testUser",
"createdAt": "2022-11-17T15:43:41.185Z",
"updatedAt": "2022-11-17T15:43:41.185Z",
"__v": 0
}
}
http://localhost:3000/recipes/6376604cca8dba6ec666b7d3
Input:
{}
Output:
{
{
"_id": "6376604cca8dba6ec666b7d3",
"title": "Mücver",
"ingredients": "1 tbsp of ingredients\n 2 tbsp of other ingredients\n 1 bottle of some ingredients",
"instructions": "The detailed instructions of mücver is written here",
"image": "uploads\\1668702284374.jpg",
"createdBy": "testUser",
"createdAt": "2022-11-17T16:24:44.387Z",
"updatedAt": "2022-11-17T16:24:44.387Z",
"__v": 0
}
}
http://localhost:3000/recipes/new
Input:
{
"title": "Another unique meal",
"ingredients": "1 tbsp of ingredients\n 2 tbsp of other ingredients",
"instructions": "The detailed instructions of this unique meal is written here",
"image":"form-data-image.jpg"
}
Output:
{
"title": "Another unique meal",
"ingredients": "1 tbsp of ingredients\n2 tbsp of other ingredients",
"instructions": "The detailed instructions of this unique meal is written here",
"image": "uploads\\1668702939888.jpg",
"createdBy": "testUser",
"_id": "637662dbca8dba6ec666b7da",
"createdAt": "2022-11-17T16:35:39.895Z",
"updatedAt": "2022-11-17T16:35:39.895Z",
"__v": 0
}
http://localhost:3000/recipes/update
Input :
{
"_id": "6376604cca8dba6ec666b7d3",
"instructions": "The edited instructions of mücver is here."
}
Output :
{
"Document updated."
}
Updated document :
{
"_id": "6376604cca8dba6ec666b7d3",
"title": "Mücver",
"ingredients": "1 tbsp of ingredients\n2 tbsp of other ingredients\n1 bottle of some ingredients",
"instructions": "The edited instructions of mücver is here.",
"image": "uploads\\1668702284374.jpg",
"createdBy": "testUser",
"createdAt": "2022-11-17T16:24:44.387Z",
"updatedAt": "2022-11-17T16:42:41.282Z",
"__v": 0,
"updatedBy": "anotherTestUser"
}
http://localhost:3000/recipes/delete/6376693eca8dba6ec666b7e5
Input:
{}
Output:
{
"Document deleted"
}