How To Test API CRUD Operations In Postman(The Better Way)

CRUD (Create, Read, Update and Delete) operations are the fundamentals of API’s.In this article, we will delve into the process of testing CRUD operations in Postman. What is Rest Representational state transfer known as Rest is an architecture style, that was created to guide the development of the APIs. It uses XML or JSON to … Read more

How To Build Rest Assured Framework Step-by-Step

API testing is an important part of the software development and testing process. Several tools and frameworks are available to test and automate API testing to ensure the robustness and performance of the API. In this article, I will guide you on creating a REST Assured Framework from scratch to streamline your API testing process. … Read more

How To Pass JSON Data In POST Request

In API development and testing, HTTP methods are used to send JSON/XML payloads to the server for data exchange and submission. In this guide, we will explore multiple ways using which we can pass JSON data in Post request. What is Payload in API Payload is the information or data that is exchanged between the … Read more

How To Do JSON Schema Validation

In this article, we will understand what is JSON Schema validation and how we can achieve it. What is JSON Schema? JSON refers to JavaScript Object Notation. It is a widely used data interchange format where data is stored in the form of key-value pair. JSON Schema is a format or document that is written … Read more