Features & Scenarios
Manage Test Cases
Test Cases for Android & iOS Apps
Test Cases for Mobile Web Apps
Test Case List Actions
Importing Postman Collections and Environments
Custom Fields for Test Cases
Label Management
Update Test Case Result in a Test Plan- Test Step Types
Type: Natural Language
Type: REST API
Type: Step Group
Type: For Loop
Type: While Loop
Type: Block
Type: If Condition
Nested Step Groups
Image Injection
Cross-application testing
Parameters
Adding parameters in RESTful API Testing is the process of sending data to a server in order to receive a response. This data is usually sent in the form of a query string or as part of the URL. Parameters can be used to specify the type of data that is being requested, the format of the response, and other information that the server needs to process the request.
- Query parameters are appended to the end of the request URL, following ? and listed in key-value pairs, separated by the & symbol. Sample Syntax: ?id=1&type=new.
- Path parameters form part of the request URL and are referenced using placeholders preceded by, as in the following example: /customer/:id
Send a Query Parameter
- Add parameterized URL path directly in the URL field, as shown below. It will automatically update key-value fields. For example, in the request,
. https://jsonplaceholder.typicode.com/?name=Joel&type=abcxyz@mail.com.Adding URL in Parameter - Open the Parameters and enter the key and value. Value fields can be replaced with test data types, as shown below. Enter page key field and 2 in the value field, for example.

- When you enter your query parameters in the Parameters fields, these values will automatically update in the parameterized URL path. Enter Name in the key field and Joel in the value field; type in the key field and abcxyz@mail.com in the value field, for example.

- Click Send to fetch the Response in real time. Set up body data, headers, and authorization as required.