Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

PUT or PUSH for modifying the existing data?

I have viewset,

class CompanyViewSet(viewsets.ModelViewSet):
    serializer_class = s.CompanySerializer   
    queryset = m.Company.objects.all()

Which shows the view on /api/companys

There is a button for POST

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

enter image description here

I can add the new data from this form.

Now I want to modify the existing data.

I have basic questions.

  1. PUSH can modify the data? or PUT should be implemented?

  2. How PUT can be implemented for ModelViewSet?

>Solution :

Mainly for updating(modify) data using PATH method, PUT for replace data

Description of methods:
https://www.restapitutorial.com/lessons/httpmethods.html

To define PUT method you can use follow example:

# define url
urlpatterns = [
    url('api/mydata/<id>', views.data_put),
]


# views
@api_view(['PUT'])
def data_put(r, d):
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading