Similar to HTTP status code 500-Internal Server Error,200-OK,201 Created etc... Is there any code for "Already Existing" to be giver as response from server, While trying to create a new object (if the object with same values exists) ??
|
|
If your client sends an
Then if the same resource exists, you can respond with a 412 Precondition Failed:
Instead of * (which means "if anything exists") you can also use an Etag, which basically is a checksum of the entity that is calculated by the server. You can detect identical entities by identical Etags. |
||||
|
|
