Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterakande/todolistapi
TodoListApi
https://github.com/peterakande/todolistapi
Last synced: 7 days ago
JSON representation
TodoListApi
- Host: GitHub
- URL: https://github.com/peterakande/todolistapi
- Owner: PeterAkande
- Created: 2022-04-10T06:15:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-15T20:02:30.000Z (over 2 years ago)
- Last Synced: 2024-11-16T06:28:24.928Z (2 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TodoListApi
TodoListApiA simple Todo list Api, built with Django rest framework.
It features a simple custom username, email and password signup and
email and password login.## Endpoints
To get the list of todos
> ```localhost:3000/```## To sign up
Endpoint
> ```localhost:3000/auth/signup/```Request Type
> ```POST```
* Request body
>```json
>{
> "username": "unique_username",
> "email": "[email protected]",
> "last_name": "Last name",
> "first_name": "First name",
> "password": "123456789"
>}
>```# To sign in
Endpoint
> ```localhost:3000/auth/signin/```
Request Type
> ```POST```
* Request body
>```json
>{
> "email": "[email protected]",
> "password": "123456789"
>}
>```This project uses token based authentication.
The token is returned in the response after each sign in or sign up request.Still an unfinished project.