Questions tagged [http-status-code-409]

409 is one of the status codes a http server can return to a client when processing a request. 409 is defined as Conflict.

HTTP 409 is one of the status codes an http server can return to a client when processing a request. 409 is defined as Conflict.

The request could not be completed due to a conflict with the current state of the resource. This code is only allowed in situations where it is expected that the user might be able to resolve the conflict and resubmit the request. The response body SHOULD include enough information for the user to recognize the source of the conflict. Ideally, the response entity would include enough information for the user or user agent to fix the problem; however, that might not be possible and is not required.

Conflicts are most likely to occur in response to a PUT request. For example, if versioning were being used and the entity being PUT included changes to a resource which conflict with those made by an earlier (third-party) request, the server might use the 409 response to indicate that it can't complete the request. In this case, the response entity would likely contain a list of the differences between the two versions in a format defined by the response Content-Type.

28 questions
0
votes
1 answer

Error while permanent deleting soft deleted blob through rest API

Please help with error PermanentDeleteNotSupportedOnRootBlob I generated SAStoken for BLOB with all permissions including Delete & Permanent Delete While making API call using below…
0
votes
1 answer

Getting 409 error when calling php from my React application

I am trying to call a simple php file from my React application which will send an email with the details from a contact form. For some reason when the React code executes the fetch of the PHP file, it returns a 409. However, if I manually post…
0
votes
0 answers

Checksum policy 'GEN_IF_ABSENT' rejected the artifact

I have 2 Artifactory servers I am running where one of them is the primary and the other is a caching server. The caching is done by adding remote repositories that will proxy package requests from the Primary local server and then cache a local…
0
votes
1 answer

Keycloak add attributes to user via API and 409 error

I am trying add attribute to existing user at Keycloak:10.0.1. @Override public void addAttribute(String userId, String value) throws UserDoesNotExistException { log.info("Trying add attribute to user: " + userId); Keycloak keycloak =…
TomasH
  • 51
  • 1
  • 9
0
votes
0 answers

EspoCRM - Page loading issue with 409 error

Recently I started using open source version of EspoCRM(Version 5.7.11) and it was all working fine. But recently some interfaces are not being loaded(Customers records table/grid view, Create new customer view, Edit customer view, Portal user edit…
Smiley
  • 187
  • 3
  • 11
0
votes
1 answer

Return status for PATCH call on locked record with no changes

I have a RESTful API that contains a typical PATCH call that allows fields to be updated under various conditions. Under some conditions (a particular status or combination of values), changes are "locked out" of a record. If a user makes a PATCH…
0
votes
1 answer

Dilemma between 2xx and 4xx status codes in api rest

I think this problem is not trivial, so I would like to express it in detail Domain: I have an endpoint (api rest) that receives a date and time of an appointment that I want to block (which will later be reserved). The operation is simple, when…
0
votes
0 answers

Impossible to install Gatsby 409 Conflict: convert-hrtime@^2.0.0

I am trying to install Gatsby on mac and this is what happens npm ERR! code E409 npm ERR! 409 Conflict: convert-hrtime@^2.0.0 Then I found how to install gatsby 2 like that npm install --global gatsby-cli@next and this is the result npm ERR! code…
0
votes
1 answer

ASP.NET HttpClient request returns 409 Error

I am doing a HTTP call like so: [HttpGet] public HttpResponseMessage updateRegistrant(string token, string registrantId, string firstname, string lastname, string postalCode, string phoneNumber, string city, string email) { using (HttpClient…
user979331
  • 11,039
  • 73
  • 223
  • 418
0
votes
1 answer

What does 409 error in case of delete in calendar API mean?

I can understand that 409 means duplicate entry in case of addition of events. But what does it signify when we try to delete an event? In case the event is already deleted I am getting 410(Gone) and I understand that perfectly. I am using Google…
0
votes
1 answer

Blocking duplicate http request using mod security

I am using mod security to look for specific values in post parameters and blocking the request if duplicate comes in. I am using mod security user collection to do just that. The problem is that my requests are long running so a single request can…
0
votes
1 answer

409 conflict response using TFS 2015 REST API to queue build

I have an application that encapsulates interaction with the TFS REST API in order to queue a build. The application simply sends the required json to the API and it worked for months until it suddenly started returning 409 - conflict. …
daughey
  • 639
  • 5
  • 10
-3
votes
1 answer

While calling a web service API, i'm getting HttpResponseException: Conflict

RequestParams params = new RequestParams(); params.put("mobile", mobile); params.put("is_online", "0"); params.put("name", name); params.put("latitude", latitude); /* */ String GcmToken =…
Ankit Dubey
  • 1,000
  • 1
  • 8
  • 12
1
2