How to extract the whole JSON response as a string in Rest Assured?


We can extract the whole JSON as a string in Rest Assured. This is achieved with the help of the extract method. It shall extract the whole response as a string using the asString method.

We shall send a GET request via Postman on a mock API, observe the Response.

Example

Using Rest Assured, we shall get the whole response in string format.

Code Implementation

import org.testng.annotations.Test;
import static io.restassured.RestAssured.given;
import io.restassured.RestAssured;
public class NewTest {
   @Test
   public void getResponseAsString() {

      //base URL
      RestAssured.baseURI = "https://run.mocky.io/v3";

      String r = RestAssured.given().when()

      //get request
      .get("/cd3a7e12-9057-4b51-bf2d-a2d4e2ddad8d")

      //get response as string
      .then().extract().response().asString();

      System.out.println(r);
   }
}

Output

Updated on: 17-Nov-2021

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements