So far, we have covered sending a GET & POST Request in our tutorial on Apache HttpClient. If you haven’t checked that, lets check ‘Sending GET Request’ by clicking this link and also check ‘Sending POST request’ using this link. Now, in this example, we are going to see “How to send a PUT request with JSON as request body using Apache HttpClient by utilizing HttpPut method?”.

Put_Request_HttpClient_Techndeck

Simple example of PUT Request with JSON using Apache HttpClient...!!! Click To Tweet

In this tutorial, we are going to cover below topics:

  1. What is HTTP PUT Request?
  2. How to send PUT request with JSON using Apache HttpClient?

Check out: PUT REQUEST using another popular API testing Framework – REST ASSURED

Let’s begin:

1. What is HTTP PUT Request?

PUT method requests for the enclosed entity are stored under the Request-URI. An update operation will happen if the Request-URI refers to already existing resource otherwise there will be a create operation takes place if Request-URI is a valid resource URI.

Some key points of PUT requests:

  • PUT is idempotent means if you try to make a request multiple times, it would result in the same output as it would have no effect.
  • PUT should be used when you want to modify a resource which is already a part of resource collection as PUT method would replace the resource entirely.
  • PUT resource can be cached.

2. How to send PUT request with JSON using Apache HttpClient?

In this tutorial, we will test the ‘Dummy Sample Rest API’ which is available here. This page contains Fake Online REST API for the testing purposes which are performing various CRUD operations.

Let’s take an example of one of the API PUT endpoint available at the above-mentioned website which is ‘/update/{id}’. The full-service URL with endpoint is ‘http://dummy.restapiexample.com/api/v1/update/{id}’.

At the above resource URL, we are going to submit data in the form of JSON to update an existing employee which is having ‘id’ as ‘4710’.

NOTE: This ‘id’ belongs to the employee which is generated during the POST call to create the employee. So, this id : 4710 generated for me when I had executed the create employee using the POST call. In order to get yours, first execute the POST Request call available at this link and grab the ‘id‘ from the response and use it in your PUT Request Test below in place where I am using ‘4710’. 

JSON Request Body:

Here is the code to send the PUT request (containing request body in JSON format) to the above mentioned REST API Service Endpoint:

Let’s try to understand the code:

1. Specify the URL and set up CloseableHttpClient object

2. Create a basic Put Request and pass the resource URI to it and also assign headers to this put object

3. Supply the json request into the StringEntity object and assign it to the put object.

4. Submit the Request using HttpPut -> Execute method

5. Create a BufferedReader object and store the raw Response content into it.

6. Throw runtime exception if status code isn’t 200

7. Create the StringBuffer object and store the response into it.

8. Finally, Lets validate if a text ’employee_salary’ is present in the response

Eclipse Console Output:

That’s it, it’s that simple to make a PUT Request with JSON body using Apache HttpClient: ?

Simple example of PUT Request with JSON using Apache HttpClient...!!! Click To Tweet

If you like this post , please check out my other useful blog posts

Other Useful References: