Skip to content

Commit

Permalink
DEVDOCS-5454 [Update] Add 499 response code (#2079)
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-traciporter authored Oct 17, 2023
1 parent f592bcc commit 682d521
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/api-docs/getting-started/api-status-codes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This article covers [REST](#rest-api-http-status-codes) and [GraphQL](#graphql-a
| **400** | **Bad Request** | Issued when a malformed request was sent. The request could not be completed due to a URL restriction. Check the URL for ports that may conflict with site permissions. |
| **401** | **Unauthorized** | This response is sent when your client failed to provide credentials or its credentials were invalid. |
| **403** | **Forbidden** | Returned when permissions do not allow the operation. |
| **404** | **Does not exist** | The requested entity does not exist. |
| **404** | **Does Not Exist** | The requested entity does not exist. |
| **405** | **Method Not Allowed** | The resource was found, but doesn't support the request method. Issued when either a specific method isn’t yet implemented on a resource, or the resource doesn’t support the method at all. For example, a `PUT` on `/orders` is invalid, but a `PUT` on `/orders/{_id_}` is valid. |
| **406** | **Not Acceptable** | When the client specifies a response content type in the `Accept` header that is not supported. |
| **409** | **Conflict** | A change requested by the client is being rejected, due to a condition imposed by the server. The exact reasons for this response will vary from one resource to the next. An example might be attempting to delete a category whose deletion would cause products to be orphaned. Additional information about the conflict, and about how to resolve it, might be available in the response's `details` section. |
Expand All @@ -50,6 +50,7 @@ This article covers [REST](#rest-api-http-status-codes) and [GraphQL](#graphql-a
| **422** | **Missing or Invalid Data** | The request cannot be processed either because it omitted required fields or because it contained invalid data. See the response for more details. |
| **423** | **Locked Status Code** | The requested resource is currently locked and unavailable.|
| **429** | **Too Many Requests** | When an OAuth client exceeds the [rate limit](/api-docs/getting-started/best-practices#api-rate-limits) for API requests to a store. |
| **499** | **Client Closed Request** | A client terminates the connection before receiving a response. |

### 5xx Server Error

Expand Down

0 comments on commit 682d521

Please sign in to comment.