Table Name: User

Key Value required unique
first_name string true
last_name string true
password string true
email string true true

Endpoints Needed

Registering User

This endpoint will be used for registering a new user

Endpoint URL: user/register

Request Body Example

{
    "first_name": "Bob",
    "last_name": "Smith",
    "email": "[email protected]",
    "password": "1234"
}