Tag: API

  • Agile Testing Days USA 2023

    My first international conference is HUSTEF. Last year in Budapest, Hungary, I had a fantastic experience. To learn more about my experiences, read this blog. Last year, as I was submitting proposals for several conferences, an email stating that “I am selected for Agile Testing Days USA 2023” with the topic of “API Testing for…

  • How to Visualize your JSON πŸ•΅πŸΌ?

    How to Visualize your JSON πŸ•΅πŸΌ?

    A simple way to view and segregate the complex JSON Hello Peeps, Welcome back to another blog πŸ˜‰. I hope everything is going well for you. Many people prefer the JSON format for APIs, databases, and other applications for a variety of reasons. Some JSON requests or responses are simple and only contain a few objects.…

  • How to mock the APIs and how is that helpful?

    How to mock the APIs and how is that helpful?

      When and how to use Mock Servers and how to set up a Mock server in Postman? What is a Mock Server? During your API Testing journey, you cannot wait every time for your API to be completely ready. We might have the API documentation with the sample responses. So what do we? Using the sample…

  • How to integrate the Postman Monitors with β€œMicrosoft Teams”

    Β  Hello Everyone, How are you all? I hope everyone is doing good. I am back today with another topic in Postman. By now most of us are aware of this functionality. If not, let me try to explain it here. Wherever we are testing the APIs in Postman, you might have tried to integrate…

  • Importing Swagger files into Postman

    Β  Hello Peeps, How are you doing? I am back with a simple blog post this time. When I was running my internal Postman workshop, one of the attendees had a question if there’s an option to migrate from Swagger to Postman. She mentioned that they are using Swagger to hit the endpoints of the…

  • Maintaining Secrets as part of your Postman Variables!!

    Β  Masking the values of the variables Hello People, How are you all doing? I thought of writing a small article with one of the small features added to Postman, it looks small but its powerful and useful feature. If you are new to the concept of variables, kindly read this blog post before proceeding…

  • Being a Postman Supernova!!

    Being a Postman Supernova!!

     Dear People, I hope you are all doing great. Often I am asked the question that β€œWhat is the Postman Supernova program?”. Of course, the official portal displays all the required information. And here I will share my own journey/experiences as a Postman Supernova. How? If you are one among the million users of Postman,…

  • ASSERTIONS IN POSTMAN

    Hello everyone, So far we learned about the basics of API, how to build an API request, Examples of REST and SOAP API, and how to do a JSON schema validation for your responses. Other than schema validation, we have to check some more attributes from the API response. So how do we do that?…

  • How to handle SOAP API and parsing the response in Postman??

    Β SOAP is an XML-based protocol for accessing web services over HTTP. It has some specifications which could be used across all applications. SOAP is known as the Simple Object Access Protocol, but in later times was just shortened to SOAP v1.2. SOAP is a protocol or in other words is a definition of how web…

  • How to handle REST API and parsing the response in Postman??

     REST (Representational State Transfer) is an architectural style for providing standards between computer systems on the web, making it easier for systems to communicate with each other. REST-compliant systems, often called RESTful systems, are characterized by how they are stateless and separate the concerns of client and server. Most commonly used nowadays. Separation of Client…