DELETE

Overview

This document serves as a guide for automating a simple DELETE request API without authentication. The API endpoint used in this tutorial ishttps://api-generator.retool.com/7kbSLy/data/53, which is designed to return data for a specified ID.

Automating DELETE Request

Step 1: Importing the cURL command into Postman

The cURL command for the DELETE request is as follows:

curl --location --request DELETE 'https://api-generator.retool.com/7kbSLy/data/53'

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:

DEPENDANT_TEST_CASE,NONE,
END_POINT,https://api-generator.retool.com/7kbSLy/data/53,
METHOD,DELETE,
PARAMS:KEY,NONE,
PARAMS:VALUE,NONE,
AUTH:KEY,NONE,
AUTH:VALUE,NONE,
HEADERS:KEY,NONE,
HEADERS:VALUE,NONE,
BODY:KEY,NONE,
BODY:VALUE,NONE,
RESPONSE:CODE,200,
RESPONSE:JSON_PATH,NONE,
RESPONSE:EXPECTED_VALUE,NONE,
RESPONSE:STORE_VALUE,NONE,

This template sets up a test for the DELETE 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.

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 DELETE request to proceed even if the SSL certificate cannot be validated. To use the Relaxed HTTPS for DELETE request change DELETE -> RELAX_DELETE.

Validating the Response

The automation checks for:

  • The HTTP status code, which is expected to be 200.

In this example DELETE request doesn't have the body

Last updated

Was this helpful?