In This Tutorial, we will Learn About Different REST Response Codes, Types of REST Requests, and Some Best Practices to be Followed:
In the previous tutorial, REST API Architecture And Constraints, we have learned about web services, REST Architecture, POSTMAN, etc.
We may refer to the REST API first tutorial for more information on this.
Whenever you search any word or phrase in a search engine, the search engine sends the request to the webserver. The web server returns a three-digit response code which indicates the status of the request.
What You Will Learn:
Rest API Response Codes
Here are some sample Response Codes which we will normally see while performing REST API testing over POSTMAN or over any REST API client.
#1) 100 Series
These are temporary Responses
- 100 Continue
- 101 Switching Protocols
- 102 Processing
#2) 200 Series
The client accepts the Request, being processed successfully at the server.
- 200 β OK
- 201 β Created
- 202 β Accepted
- 203 β Non-Authoritative Information
- 204 β No Content
- 205 β Reset Content
- 206 β Partial Content
- 207 β Multi-Status
- 208 β Already Reported
- 226 β IM Used
#3) 300 Series
Most of the codes related to this series are for URL Redirection.
- 300 β Multiple Choices
- 301 β Moved Permanently
- 302 β Found
- 303 β Check Other
- 304 β Not Modified
- 305 β Use Proxy
- 306 β Switch Proxy
- 307 β Temporary Redirect
- 308 β Permanent Redirect
#4) 400 Series
These are specific to client-side error.
- 400 β Bad Request
- 401 β Unauthorised
- 402 β Payment Required
- 403 β Forbidden
- 404 β Not Found
- 405 β Method Not Allowed
- 406 β Not Acceptable
- 407 β Proxy Authentication Required
- 408 β Request Timeout
- 409 β Conflict
- 410 β Gone
- 411 β Length Required
- 412 β Precondition Failed
- 413 β Payload Too Large
- 414 β URI Too Long
- 415 β Unsupported Media Type
- 416 β Range Not Satisfiable
- 417 β Expectation Failed
- 418 β Iβm a teapot
- 421 β Misdirected Request
- 422 β Unprocessable Entity
- 423 β Locked
- 424 β Failed Dependency
- 426 β Upgrade Required
- 428 β Precondition Required
- 429 β Too Many Requests
- 431 β Request Header Fields Too Large
- 451 β Unavailable For Legal Reasons
#5) 500 Series
These are specific to the server-side error.
- 500 β Internal Server Error
- 501 β Not Implemented
- 502 β Bad Gateway
- 503 β Service Unavailable
- 504 β Gateway Timeout
- 505 β HTTP Version Not Supported
- 506 β Variant Also Negotiates
- 507 β Insufficient Storage
- 508 β Loop Detected
- 510 β Not Extended
- 511 βΒ Network Authentication Required
Apart from this, there are several different codes that exist but those will deviate us from our current discussion.
Different Type Of REST Requests
Here we will discuss each and every method of REST API along with the collections.
Method | Description |
---|---|
GET | Fetch status line, Response body, Header etc. |
HEAD | Same as GET, but only fetch status line and header section |
POST | Perform request using request payload mostly in creating a record at the server |
PUT | Useful in manipulating/updating the resource using Request payload |
DELETE | Deletes information relating to the target resource. |
OPTIONS | Describe the communication options for the target resource |
PATCH | Very much similar to put but it is more like a minor manipulation of resource content |
Note: There are so many methods that exist, which we can do using POSTMAN but we will be discussing only the following methods using POSTMAN.
We shall use a dummy URL to demonstrateΒ http://jsonplaceholder.typicode.com. This URL shall give us the desired responses but there will not be any creation, modification in the server.
#1) GET
Request Parameters:
Method: GET
Request URI: http://jsonplaceholder.typicode.com/posts
Query Parameter: id=3;
Response Received:
Response Status Code: 200 OK
Response body:
#2) HEAD
Request Parameters:
Method: HEAD
Request URI: http://jsonplaceholder.typicode.com/posts
#3) POST
#4) PUT
#5) OPTIONS
Request Parameters:
Method: OPTIONS
Request URI: http://jsonplaceholder.typicode.com/
Headers: Content-type = Application/JSON
#6) PATCH
Best Practices While Validating A REST API
#1) CRUD Operations
Consist of minimum 4 methods provided and should be working in the Web API.
GET, POST, PUT and DELETE.
#2) Error Handling
Possible hints for the API consumers about the error and why it has occurred. It also should provide granular level error messages.
#3) API Versioning
Use the letter βvβ in the URL to denote the API version. For example-
http://restapi.com/api/v3/passed/319
Additional parameter at the end of the URL
http://restapi.com/api/user/invaiiduser?v=6.0
#4) Filtering
Enabling the user to specify, select the desired data instead of providing them all at a time.
/contact/sam?name, age, designation, office
/contacts?limit=25&offset=20
#5) Security
Timestamp in each and every API Request and Response. Use of access_token to make sure that API is invoked by the trust parties.
#6) Analytics
Having Analytics in your REST API will give you a good insight of API under test especially when the number of records fetched is very high.
#7) Documentation
Proper documentation is to be provided so that API consumers can use it and consume the services effectively.
#8) URL Structure
URL structure should remain simple and a user should be able to read the domain name easily over it.
For Example, https://api.testdomain.com.
Operations to be performed over the Rest API should also be very easy to understand and perform.
For Example, for an Email client:
GET: read/inbox/messages β Retrieves the list of all message under inbox
GET: read/inbox/messages/10 β Reads 10th message in inbox
POST: create/inbox/folders β Create a new folder under inbox
DELETE: Delete/spam/messages β DeleteΒ all the messages under spam folder
PUT: folders/inbox/subfolder β Update the information relating to the subfolder under inbox.
Conclusion
Many organizations prefer to implement REST Web API since it is very easy to implement, has lesser standards and rules to follow, easy to access, lightweight, and easy to understand. POSTMAN has its advantages when used with RESTful API due to its user-friendly UI, ease of use and test, faster response rate and new RUNNER feature.
In the next tutorial in this Rest API Tutorial series, we will automate the test cases which we have executed manually.