From 682d521cbf821b84aebc8a90b4b6af179233b0b7 Mon Sep 17 00:00:00 2001 From: Traci Porter Date: Tue, 17 Oct 2023 09:56:13 -0500 Subject: [PATCH] DEVDOCS-5454 [Update] Add 499 response code (#2079) --- docs/api-docs/getting-started/api-status-codes.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/api-docs/getting-started/api-status-codes.mdx b/docs/api-docs/getting-started/api-status-codes.mdx index 6995e4627..233169023 100644 --- a/docs/api-docs/getting-started/api-status-codes.mdx +++ b/docs/api-docs/getting-started/api-status-codes.mdx @@ -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. | @@ -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