
HTTP response code for POST when resource already exists
Sep 30, 2010 · This is going to be a pretty long answer, the short summary of which is that HTTP 409 is the most appropriate status code to report the failure of an "add new resource" operation, in case a …
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 …
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.
REST HTTP status code if DELETE impossible - Stack Overflow
Aug 5, 2014 · A 409 Conflict response is definitely wrong if the client can't resolve the conflict and delete the request later. That is, unless the resource has state tracking whether it can be deleted or not, 409 …
Edit conflicts and 409 vs. 412 responses - Stack Overflow
Edit conflicts and 409 vs. 412 responses Asked 12 years, 10 months ago Modified 7 years, 1 month ago Viewed 7k times
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 …
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...
Azure durable function : 403 and 409 errors when writing internally to ...
Sep 13, 2023 · The http call to the function works, and the function starts doing its internal thing, but eventually fails. the end-to-end call shows errors 403 and 409 on those kinds of internal calls:
Reasons for a 409/Conflict HTTP error when uploading a file to ...
Jul 22, 2011 · In case the conflict had something to do with the file already existing, I added code to physically delete the file before uploading it, and i'm still getting some 409's.
c# - Alternative for BlobContainerClient ... - Stack Overflow
Sep 21, 2022 · The 409's in this use case are both expected and necessary outside of creating highly coupled code, try/catch/retry for first attempts or some external out of band process such as a …