Types of requests in postman

0 Comment

GET Request: Retrieves data from a server. It is the most common type of request used in API testing. POST Request: Sends data to a server for processing and updates the existing data on the server. PUT Request: Replaces existing data on the server with new data. DELETE Request: Deletes data from the server. PATCH…

How To Format Form Data as JSON?

0 Comment

To format form data as JSON, follow these steps: Collect form data: You can either collect form data using HTML form elements like text fields, radio buttons, select boxes, etc. or you can use a JavaScript form library. Store form data: Store the form data in a JavaScript object. You can use the object to…

What is Postman collection?

0 Comment

Postman collection is a group of API requests that can be saved, organized, and shared with others. A collection is a way of grouping related API requests together in one place, making it easier to manage and maintain them. The requests in a collection can be run individually or as a group, and they can…

What is Postman?

0 Comment

Postman is a powerful API development and testing tool for developers and testers. It allows you to make HTTP requests, test API endpoints, and manage API collections and environments. With Postman, you can easily create, save, and share API requests, and view response data in a variety of formats, including JSON, XML, and HTML. It…