5 ms·
PUT can be used for Create too, if the user ID is generated by the client
by plextoria 2y ago
PUT can be used for Create too, if the user ID is generated by the client
- ascar 2y agoAccording to the RFC's PUT can be used to create a resource as long as the request has a clear target. That doesn't necessarily mean an ID, but just some kind of identifier (composite key, hash of content, url, etc.). When a create instead of update happens the server should respond with a 201 CREATED, which should indicate the location or identifier of the created resource.