<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community:  Dev Kumar Gupta</title>
    <description>The latest articles on DEV Community by  Dev Kumar Gupta (@dev_ikr).</description>
    <link>https://dev.to/dev_ikr</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F636132%2F6b64a4ba-aac5-4d26-883c-631bdc26eb75.jpg</url>
      <title>DEV Community:  Dev Kumar Gupta</title>
      <link>https://dev.to/dev_ikr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dev_ikr"/>
    <language>en</language>
    <item>
      <title>APIs 101 with POSTMAN: A Beginners Guide (2022)</title>
      <dc:creator> Dev Kumar Gupta</dc:creator>
      <pubDate>Mon, 07 Mar 2022 19:52:54 +0000</pubDate>
      <link>https://dev.to/dev_ikr/apis-101-with-postman-a-beginners-guide-2022-3gi9</link>
      <guid>https://dev.to/dev_ikr/apis-101-with-postman-a-beginners-guide-2022-3gi9</guid>
      <description>&lt;p&gt;&lt;strong&gt;Postman&lt;/strong&gt; has become a popular tool for developers for Creating, Testing and Managing APIs. But what are APIs in the first place and why are they used?&lt;br&gt;
👉Let’s find out what is an API, what is it used for, what is Postman and it's role as an API management tool.&lt;/p&gt;

&lt;p&gt;So, the &lt;em&gt;Agenda of the Blog&lt;/em&gt; is:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Introduction to APIs and Postman&lt;/li&gt;
&lt;li&gt;Requests and Responses&lt;/li&gt;
&lt;li&gt;Hands on detailed lab session&lt;/li&gt;
&lt;li&gt;Follow-up Opportunities and Learning Resources&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;API&lt;/strong&gt; stands for Application Programming Interface&lt;br&gt;
To explain what an API is, we take a simple example...&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;APIs: A Digital Restaurant&lt;/strong&gt;&lt;br&gt;
Suppose you, the customer, visit your favourite restaurant and request for a bowl of ice-cream for which the waiter acts as a mode of communication between you and the chef. The function of the waiter is to communicate to you whether there is a stock of ice-cream or not, if there is, he will bring it for you.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--aDpbxvZU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ee6cj5crs0ewp59nvayg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--aDpbxvZU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ee6cj5crs0ewp59nvayg.png" alt="APIs: A Digital Restaurant" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Similarly, the role of an API is to act as the middleman for the communicator between softwares. [ Remember, don’t call the waiter at your favourite restaurant an API, he probably won’t understand 🙂 ]&lt;/p&gt;

&lt;p&gt;The above depiction shows us how in the Software Development World, the client (the person requiring the data), sends a request which is taken by the API to the Server (where the data is stored) and the action is performed accordingly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why do we use APIs and not directly access the data from the servers??&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dI-rqyh6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x7t5hf7n7j608zovnk8a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dI-rqyh6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x7t5hf7n7j608zovnk8a.png" alt="What is an API" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;APIs make the task of developers easier by removing the need to create every service from scratch.&lt;/p&gt;




&lt;p&gt;You must have used the Instagram app.&lt;br&gt;
Let me demonstrate how the APIs help us with an example of it's simple implementation on Instagram.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--alaa0PrC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qyqyirfby8yry2evaakc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--alaa0PrC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qyqyirfby8yry2evaakc.png" alt="APIs through Instagram" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 1: You select a photograph from your gallery to upload (API required to fetch that photograph)&lt;br&gt;
Step 2: You modify the photograph by applying filters (API to modify this photograph)&lt;br&gt;
Step 3: You finally publish this photograph (API sends this photograph to the server to store it)&lt;br&gt;
Step 4: Instagram displays the photograph to you and your followers (API fetched the photograph from the server)&lt;/p&gt;

&lt;p&gt;So, you see that the process which happens within seconds on our devices, runs a lot of API calls in the background, but thanks to the developers of Instagram, you do not experience the lag in service.&lt;/p&gt;

&lt;p&gt;Let us now understand the role of Postman.&lt;/p&gt;

&lt;h2&gt;
  
  
  WHAT IS POSTMAN?
&lt;/h2&gt;

&lt;p&gt;Postman is a collaborative API development platform that makes it easy for us to create, test and monitor APIs. It's environment makes it a popular Industry standard equipment for companies like PayPal, Uber, Atlassian etc.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--j69NHmdM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nd7x3q6inpavyrwvh7sg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--j69NHmdM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nd7x3q6inpavyrwvh7sg.png" alt="What is Postman" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In earlier days, the complex structure of the command line interface, while implementing API requests, made it difficult to read and manage the code. So, to solve this problem, Postman was created which had a minimalistic UI (User Interface) helping developers manage APIs.&lt;/p&gt;

&lt;p&gt;Now, let’s dive into the "Technical Part" about APIs… don’t stop, I assure you it’s &lt;em&gt;very&lt;/em&gt; simple 😎&lt;/p&gt;

&lt;p&gt;The interaction with the API starts with making a &lt;strong&gt;REQUEST&lt;/strong&gt;, which carries the following parameters …&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Method (GET, POST, PUT etc.)&lt;/li&gt;
&lt;li&gt;Address/Endpoint (URL – Uniform Resource Locator)&lt;/li&gt;
&lt;li&gt;Path&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;1. Requests – Methods and Endpoints:&lt;/strong&gt;&lt;br&gt;
The Method parameter specifies which type of action will be performed in our API call, some main actions are -&lt;br&gt;
&lt;strong&gt;GET&lt;/strong&gt; – for retrieving information&lt;br&gt;
&lt;strong&gt;POST&lt;/strong&gt; – for sending information&lt;br&gt;
&lt;strong&gt;PUT/PATCH&lt;/strong&gt; – for updating information&lt;br&gt;
&lt;strong&gt;DELETE&lt;/strong&gt; – for deleting the information&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Q765Yw_Z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/s7h0n2jfklh3bpnu1q37.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Q765Yw_Z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/s7h0n2jfklh3bpnu1q37.png" alt="Request Methods and Endpoints" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Address/Endpoint (Parts of a URL):&lt;/strong&gt;&lt;br&gt;
The &lt;strong&gt;Protocol&lt;/strong&gt; is the scheme of the request, here it is an &lt;a href="https://developer.mozilla.org/en-US/docs/Glossary/https"&gt;HTTPS&lt;/a&gt; request.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;Host&lt;/strong&gt; is the address of the server, the place where the code lives which you need to connect to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The Path&lt;/strong&gt; is the destination where the request can be heard or executed.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;Body&lt;/strong&gt; is that part of the API which contains the data that we want send or receive.&lt;/p&gt;




&lt;h2&gt;
  
  
  Request Body:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JKqHpeim--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e8x0r56z3wh96hj4s807.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JKqHpeim--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e8x0r56z3wh96hj4s807.png" alt="Requests Body" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The data payload (which is the data sent by the client to your API), is optional but often supplied with the POST and PUT requests.&lt;br&gt;
The Data can be sent in various formats; Text, HTML, XML etc. but the most used format is &lt;a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON"&gt;JSON&lt;/a&gt; or JavaScript Object Notation. &lt;/p&gt;




&lt;p&gt;&lt;strong&gt;A feel of the Postman platform:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hw0AGy6G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1q6v4ffkwp65z1pgkgbj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hw0AGy6G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1q6v4ffkwp65z1pgkgbj.png" alt="Postman Platform:" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We enter the public workspace on the platform which is made to be visible to everyone and to learn how to interact with APIs.&lt;/p&gt;

&lt;p&gt;Now, we &lt;strong&gt;should not tamper&lt;/strong&gt; with the &lt;strong&gt;original code&lt;/strong&gt; unless we are absolutely sure about what we are doing. So, to avoid problems in the public workspace, we fork a copy of the public workspace into our personal workspace (which only we have access to). This function is similar to forking a git repository from &lt;a href="https://github.com/"&gt;Github&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--v4pxZEZ4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yl82fd1h4zb86oyl90uz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--v4pxZEZ4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yl82fd1h4zb86oyl90uz.png" alt="My Workspace" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Forked public workspace is now in “My workspace”.&lt;/p&gt;

&lt;p&gt;Now, to understand what we are about to do, we read the &lt;a href="https://www.geeksforgeeks.org/overview-software-documentation/"&gt;Documentation&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vEA721PS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x479z8tnc8304z9ihx3p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vEA721PS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x479z8tnc8304z9ihx3p.png" alt="Documentation" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To perform our very first action, we accessed the Get Data file and we sent a valid API call to google.com and received a status &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200"&gt;200 OK&lt;/a&gt;.&lt;br&gt;
Status 200 OK – means that the request was correct and the desired response has been sent to the client.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--li4Y3adQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0xk31vix3wd70ehbfv95.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--li4Y3adQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0xk31vix3wd70ehbfv95.png" alt="Status 200 OK" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, whenever we google something, we can see this on the URL bar: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ls2dnE2j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/euwqt84ysdgny58yirkp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ls2dnE2j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/euwqt84ysdgny58yirkp.png" alt="Google Search" width="880" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This &lt;strong&gt;q&lt;/strong&gt; symbolizes &lt;a href="https://www.wordstream.com/blog/ws/2012/12/10/three-types-of-search-queries"&gt;Query&lt;/a&gt;, the term which we are looking for (here  q=Postman). Basically, it tells the search engine what we are looking for.&lt;/p&gt;

&lt;p&gt;On Postman, we can set the query parameter in a similar way.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Retrieving Data using API call:&lt;/strong&gt;&lt;br&gt;
We then navigate to the Book API and used the &lt;strong&gt;GET&lt;/strong&gt; method to call the Base URL set to a path - /book which retrieved random books from the database and displayed it in JSON format.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--l1AOIJAm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7bcsb16p3bzs1njgzqah.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--l1AOIJAm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7bcsb16p3bzs1njgzqah.png" alt="GET Method" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To get a particular book, we set the path parameter, &lt;strong&gt;id&lt;/strong&gt;, to different values. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Adding Data using API call:&lt;/strong&gt; &lt;br&gt;
We then added a request to add data to the server by using the &lt;strong&gt;POST&lt;/strong&gt; method. But first read the documentation to get a idea on what code to add in the JSON.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mXyhJm6G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f2f830vjz0iflsq5qk6b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mXyhJm6G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f2f830vjz0iflsq5qk6b.png" alt="POST Method" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Whenever we want to add some information, we enclose it within the Body of the request and select type as JSON.&lt;/p&gt;

&lt;p&gt;Every book should have a unique id. Hence, we take an arbitrary value of id and send in the API call. Upon successful adding of the data, we get a &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201"&gt;201 Created&lt;/a&gt; which is for a new resource being created.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LPd3QBQa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/06pa8ygr51pqxhu8ohcj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LPd3QBQa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/06pa8ygr51pqxhu8ohcj.png" alt="201 Created" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To verify if your data was sent correctly, we go to the Get data tab and enter the id we sent for the post request.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pp1g93LD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ebztufqdyp5mcbi6wuow.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pp1g93LD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ebztufqdyp5mcbi6wuow.png" alt="Checking GET Method" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If we get back the same data we added in the POST method, then our implementation was correctly executed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Modifying Data using API call:&lt;/strong&gt;&lt;br&gt;
To Modify the data, we use the &lt;strong&gt;PUT&lt;/strong&gt; method and we add this request in a new tab.&lt;br&gt;
We input the JSON text from the documentation in the similar way to POST method.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vUrX-aRn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/epfh3le0kc6q52ye5shy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vUrX-aRn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/epfh3le0kc6q52ye5shy.png" alt="204 No Content" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We get a &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204"&gt;204 No Content&lt;/a&gt; because it is a confirmation that the data was added correctly, but there is nothing to return here.&lt;br&gt;
We can again verify the information by requesting a GET data method.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deleting Data using API call:&lt;/strong&gt;&lt;br&gt;
To delete a particular book, we add a new request with the &lt;strong&gt;DELETE&lt;/strong&gt; method.&lt;br&gt;
We specify the path (/book) and an id to delete the book at that id.&lt;br&gt;
On running the command, we get an output “Book with id ___ is deleted.”&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zJUnhBZz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9ipvaa2ayj8y53wc3hgo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zJUnhBZz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9ipvaa2ayj8y53wc3hgo.png" alt="DELETE Method" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;On checking in Get Data, we get a message saying “Book not found” because it has been deleted successfully. &lt;/p&gt;

&lt;p&gt;We also had this UI which made it simple to understand the various changes to the data by presenting it visually.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8yjJ3gK5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o3ugzxdy07v7fl9xbt1b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8yjJ3gK5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o3ugzxdy07v7fl9xbt1b.png" alt="UI for checking API Implementation" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Wrapping Up:&lt;/strong&gt; 🌠&lt;br&gt;
We learnt about APIs and it’s uses, why is Postman used and how to implement basic API calls using Postman 🤩&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Way forward:&lt;/strong&gt; 📈&lt;br&gt;
We can continue Learning APIs as a Student Expert and get certified 🎓&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---8sn4XHo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/90c7yohzrq9y0wa7uy2j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---8sn4XHo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/90c7yohzrq9y0wa7uy2j.png" alt="Get Certified by Postman" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Credits
&lt;/h2&gt;

&lt;p&gt;This Blog is my complete breakdown of the Session - APIs 101 with Postman by &lt;strong&gt;Satabrata Paul&lt;/strong&gt; &lt;a href="https://twitter.com/SatabrataYo"&gt;@SatabrataYo&lt;/a&gt; (Postman Student Expert and Core Member GDSC HITK) which was conducted on 5th March, 2022.&lt;/p&gt;

&lt;p&gt;You can find the complete YouTube tutorial &lt;a href="https://www.youtube.com/watch?v=JAouM2q0g68"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 You can follow me on Twitter &lt;a href="https://twitter.com/Dev_ikr"&gt;@Dev_ikr&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Thanks for sticking around till the end 😃&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;#PostmanStudent #PostmanAPI &lt;a href="https://dev.tourl"&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>beginners</category>
      <category>api</category>
      <category>postman</category>
    </item>
  </channel>
</rss>
