NODE JS

Backend API to manage Tasks and Authentication

Tasks 5

Backend API to manage Tasks

Description

Get task with specified id

Description

Update task with new details

Body
{ "task_name": "My updated first Task", "task_description": "This will create our first ever Task in database", "task_priority": "Low" }
Description

Create new task

Body
{ "task_name": "My first Task", "task_description": "This will create our first ever Task in database", "task_priority": "Medium" }
Description

Delete task with specified id

Authentication 3

Backend API to manage Authentication usong JWT and Cookie

Description

Register new user

Body
{ "name": "Mayur Parve", "email": "mayur.parve@autoflowtech.com", "password": "123456", "role": "Admin" }
Description

Login user

Body
{ "email": "mayur.parve@autoflowtech.com", "password": "123456" }