django-backend
The documentation is part of the this project
- The API's manage the complete backend interaction with django models.
Overview
The concerned user should understand the working of a portfolio website and on that basis, he/she will be easily liable to change or customize the API's for their own purpose.
Error Codes
What errors and status codes can a user expect? The error codes are the standard error codes of HTTP methods.
POSTSign up
http://127.0.0.1:8080/api/signup/
POST user details for signup
Bodyformdata
email
name
password
Example Request
Sign up
201 Created
Example Response
Date
Server
Allow
Content-Type
Vary
Content-Length
X-Frame-Options
POSTLogin
http://127.0.0.1:8080/api/login/
Login using the signup credentials
Bodyformdata
username
password
Example Request
Logged in
200 OK
Example Response
Date
Server
Allow
Content-Type
Vary
Content-Length
X-Frame-Options
POSTCreate Portfolio for the loggedin user
http://127.0.0.1:8080/api/portfolio-update/
Create a portfolio for the corresponding loggedin user. Each user could only create one portfolio at a time. The portfolio could be accessbile by the public url api/user/user_name
HEADERS
Authorization
Content-Type
Bodyformdata
name
email
Example Request
http://127.0.0.1:8080/api/portfolio-update/
201 Created
Example Response
Date
Server
Allow
Content-Type
Location
Content-Length
X-Frame-Options
Vary