Skip to content

abd1bayev/Contact-list-django-rest-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contact list django rest api

ROUTES TO IMPLEMENT (ACCOUNT)

METHOD ROUTE FUNCTIONALITY ACCESS
POST /account/profile/ Register new user All users
POST /account/login/ Login user All users
GET /account/profile/ Search accounts All users
GET /account/profile/{id}/ Account profile read All users
PUT /account/profile/{id}/ Account profile update All users
PATCH /account/profile/{id}/ Account profile partial update All users
DELETE /account/profile/{id}/ Account profile delete All users

ROUTES TO IMPLEMENT (CONTACT LIST)

METHOD ROUTE FUNCTIONALITY ACCESS
GET /contact/api/ contact list All users
POST /contact/api/ contact api create All users
GET /contact/api/{contact_id}/ contact api read All users
PUT /contact/api/{contact_id}/ contact api update All users
DELETE /contact/api/{contact_id}/ contact api delete All users

Releases

No releases published

Packages

No packages published

Languages