GET
Last updated
Was this helpful?
Last updated
Was this helpful?
This document serves as a guide for automating a simple GET request API without authentication. The API endpoint used in this tutorial is https://api-generator.retool.com/7kbSLy/data/1
, which is designed to return data for a specified ID.
Step 1: Importing the cURL command into Postman
The cURL command for the GET request is as follows:
Upon importing this cURL into Postman, it translates into an interface with the request and response sections, as seen in the screenshot.
Step 2: Template for Scriptless Automation
To automate the example without writing scripts, the following template can be used:
This template sets up a test for the GET request by specifying the endpoint, method, parameters, and the expected response.
Step 3: Execution and Report Generation
When the test case is executed using the template, the automation tool generates a report that records each step performed during the test. The report includes:
The type of request and the endpoint used.
The type of request and the response received.
Validation of the response code.
Validation of response elements (shown with Pink/Green arrows in the below` screenshot).
Relaxed HTTPS Validation
For environments where HTTPS certificate validation is not required, or in cases where self-signed certificates are in use, the automation tool supports relaxed HTTPS validation. This means the tool will not enforce strict validation of the SSL certificate, allowing the GET request to proceed even if the SSL certificate cannot be validated. To use the Relaxed HTTPS for GET request change GET -> RELAX_GET, below is the example.
The automation checks for:
The HTTP status code, which is expected to be 200
.
The presence and value of id
and Column 1
in the JSON response.
The expected value for Column 1
in the response is "Aigneis Ravillas" for the ID "1".