Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package webAPI;
import static io.restassured.RestAssured.*;
import org.junit.BeforeClass;
import org.junit.Test;
import io.restassured.path.json.JsonPath;
public class test1 extends token {
@Test
public void ewvPDFREferences() {
String endpoint = "ars/api/v1/pdfReference/getAllPdfReferences";
String respond = given()
.header("Authorization", "Bearer" + " " + OAT_TOKEN)
.when()
.get(baseURI + endpoint)
.andReturn()
//.getBody()
// .jsonPath();
.getStatusLine();
System.out.println(respond);
}
}