Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
devTea240886yThere’s no rightway or written rule to do it, but most would say that PUT for update? Take it with a grain of salt
-
Different resources, different endpoints. Though sometimes you have to be a little pragmatic and do it your own way.
-
Rikan2856yUse two endpoints. For the first, create endpoint, use POST if you don't already have the resource identifier (like id, that gets created on server side), otherwise use PUT. The second endpoint should be PATCH if you update an exisiting resource.
-
2erXre525046ymy rule of thumb is: If you create somethin where you don't know the ID, use POST. If you update an object with a known ID and you will submit the whole object, use PUT (overwrite). If you update only a member of a setting (not whole object will be sent), then use PATCH.
In your use case it is not clear if the initial POST will or should trigger the other update mechanism as well or if the business logic is implemented on client side and those operations are independently. -
oxmox2916yIf your use case always includes two actions combine them in one one API call (in your case PUT or PATCH).
-
dodomo1006yYour API is not an interface to the Database. Your API is an interface to the Business Logic. Soooo depends on your Business Logic :D
But as a general Rule of Thumb:
Different Resources = Different URLs
Different Operations (update,create) = Different HTTP Verb (PUT, POST) -
nibor48776yRemember PUT should be idempotent whereas POST shouldn't be. Not that any api I've ever seen in the real world seems to respect that.
-
rantbook7356yThe REST in RESTful stands for what you won't get if using it and for what it should be left to do in peace.
Use GraphQL. -
dodomo1006y@h4xx3r patch is for partial updates, correct. Put is for overriding an entire resource.
-
h4xx3r17166y@dodomo good to know, never had the need to totally override something, patching all the way 😁
-
GET = getting info from id
POST = create an entry
PUT = overwrite all the object at id
PATCH = change a field in a row at id
OPTION = return values where post put patch can take
This is my little rule for rest api -
dodomo1006y@jak645 agreed. The only thing I understand differently is POST. I think I've read somewhere that it's kind of a default Verb. Not meaning anything particular. You can use it for anything the other verbs don't already do.
+ The ID part of your rule is a little misleading. It's all relative to the URI. -
gvnix19336yThe I would do is -
If my insertion is idempotent i.e. every insertion results in the same value then PUT (usually we just return an error, when someone tries to put the same resource again like Bad Request or Conflict)
POST for every other insertion or update.
Then when the request is received and controller is executed, you can call your business code via a service and do both db updates at once or just fire an event which can be processed by listeners.
These listeners then individually do the insertion part. -
retnikt68946yI would say POST for exclusive creation with no ID specified, and PUT for creation or updation (?) with a specific ID.
-
devs30816yIf the record in the other table have to be updated every time you post no matter what. If it’s unthinkable that someone would post something without needing to update that record also, then you should definitely only have a single endpoint.
Having to call two endpoints to perform one action is unintuitive -
devs30816yAlso, you can’t be sure that everyone using the api will remember to call both endpoints every time, meaning your data has the potential to end up inconsistent
Related Rants
-
fundor33313Client "Can you change your API? If a POST return 201 ours system crashes reading it" Me "Your system WHAT????...
-
bingumadness6The CEO at the company I work at has been telling our partners that our PIA is ready. It took me a week to fig...
-
BashJS5I knew I was right!! thanks stackoverflow for confirming. :D
RESTful API Question
Let's say when a user do an action, I need to insert a record into a table and then update a record in different table.
Should I write two API routes (PUT, POST) or one route (POST) ?
question
rest api
restful