
HTTP response code for POST when resource already exists
Sep 30, 2010 · My feeling is 409 Conflict is the most appropriate, however, seldom seen in the wild of course: The request could not be completed due to a conflict with the current state of the resource. …
Excel Number Format: What is " [$-409]"? - Stack Overflow
The [$-409] is a locale code, given in hexadecimal. Prefixing a date with a certain locale code determines what is shown when you use the various date time format codes.
Reasons for a 409/Conflict HTTP error when uploading a file to ...
Jul 22, 2011 · I encountered similar issue when uploading a file returned 409. Besides issues mentioned above it can also happen due to file size restrictions for POST on the server side.
Is returning HTTP 409 appropriate for a validation check?
Jun 29, 2012 · It's obvious that a successful validation will return a 200 OK. But I don't feel that a success status code is appropriate for a validation failure. I'm leaning towards a 409 Conflict, but I've …
Edit conflicts and 409 vs. 412 responses - Stack Overflow
Edit conflicts and 409 vs. 412 responses Asked 12 years, 5 months ago Modified 6 years, 8 months ago Viewed 6k times
rest - What to return with a 409 conflict? - Stack Overflow
Jul 27, 2022 · If the user is already registered by that email, I'll return a 409 CONFLICT status. However, I'm not quite sure what the proper content is required to return with that -- for example, do I return …
Return an object along with a 409 Conflict error in a Web API 2 POST ...
Aug 7, 2015 · I have a C# Entity Framework Web API 2 controller. Currently when an attempt is made via the POST method to create an object with the same text for the main text field, I return a 409 …
Distinguishing HTTP status code 403 and 409 in practice (or 400)
Even after reading many documents, books, spec I couldn't 100% be certain whether I should use http status code 403 or 409 in my case. Some argue that 403 should be used only with an authorization...
deployment - maven deploy:deploy-file fails (409 Conflict), yet ...
I have a project in Jenkins where I use the promotion plugin to deploy my artifacts in Maven via the deploy:deploy-file goal. This works for several other projects I have in Maven, but it fails for this …
422 or 409 status code for existing email during signup
Jun 20, 2018 · I think 409 is most appropriate in this described example as the request is conflicting with an already existing registration. For example, if the service couldn't accept a .de domain based email …