Skip to content

othreecodes/django-code-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-code-challenge

Requirements

CREATE USER ACCOUNT

`post`
{
    "first_name":"",
    "last_name":"",
    "username":"",
    "email":"",
    "password":"",
}

to `/user`

LOGIN TO OBTAIN TOKEN

`post`
{

    "username":"",
    "password":"",
}

to `/login`

Use token to access other parts of the API