Here's a guide to common HTTP status codes and their meanings:
100 Continue
- Description: The server has received the initial part of the request and expects the client to continue.
- Example: Used in chunked transfer encoding when the client sends a request body.
200 OK
- Description: The request was successfully processed.
- Example: Standard response for successful HTTP requests.
301 Moved Permanently
- Description: The requested resource has been permanently moved to a new URI.
- Example: Redirecting to a new URL after a resource is moved.
302 Found
- Description: The requested resource temporarily moved to a different URI.
- Example: Redirecting to a new URL for temporary purposes.
400 Bad Request
- Description: The server could not understand the request due to invalid syntax.
- Example: Missing required parameters or malformed request.
404 Not Found
- Description: The server cannot find the requested resource.
- Example: Invalid URL or deleted resource.
500 Internal Server Error
- Description: The server encountered an unexpected condition.
- Example: Unexpected errors during request processing.
For more details, check our API Reference Guide. 📘