Make Selenium Easy

REST Assured Tutorial 12 – Let’s Write First DELETE Request in REST Assured

As a part of End to End REST Assured Tutorial , in this post We will write first DELETE request in REST assured.

I will strongly recommended you to learn basics of API testing from here.

To learn what is DELETE request and how can you hit a DELETE request in Postman tool, must refer this post.

We will delete a booking details using “DeleteBooking” API provided by Restful Booker. Once deleted, we will verify it using GetBooking API.

Refer Delete Booking API documentation to understand how authentication and body need to be provided to request.

Below points summarize the above documentation :-

  1. We need to pass booking id which you want to delete in URI. E.g. https://restful-booker.herokuapp.com/booking/1 where “1” is booking id.
  2. Authentication token need to pass as cookie. Cookie name is “token” and value is generated auth token. ‘Cookie: token=<generatedToken>’.
  3. You don’t required to pass body to DELETE request.

Let’s see existing details of a Booking ID 1 using Postman:-

Let’s generate token which I have already covered in Previous post. Perform all above steps in Postman tool as of now. We will see in upcoming posts to chain different requests in REST Assured.

Generate Token:-

Let’s write DELETE request in REST Assured:-

Non-BDD Style:-

BDD Style:-

Note:- You need to generate access token every time you hit the request otherwise you will get error code as 403.

You can clone/download example repo here.

If you have any doubt, feel free to comment below.
If you like my posts, please like, comment, share and subscribe.
#ThanksForReading
#HappyLearning

You can find all Selenium related post here.
You can find all API manual and automation related posts here.
You can find frequently asked Java Programs here.

Author: Amod Mahajan

A software Tester who is paid to judge products developed by others. Currently getting paid in American Dollars. Writing technical posts and creating YouTube videos are my hobbies.

2 thoughts on “REST Assured Tutorial 12 – Let’s Write First DELETE Request in REST Assured

Leave a Reply

Please wait...

Subscribe to new posts to become automation expert

Want to be notified when my new post is published? Get my posts in your inbox.