{"id":985,"date":"2020-10-15T10:37:03","date_gmt":"2020-10-15T10:37:03","guid":{"rendered":"https:\/\/serkanseker.com\/?p=985"},"modified":"2020-12-09T18:22:21","modified_gmt":"2020-12-09T18:22:21","slug":"postman-web-api-testing-tool","status":"publish","type":"post","link":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/","title":{"rendered":"Postman Web API Testing Tool &#8211; ASP.NET Web API"},"content":{"rendered":"\n<p>Postman is a REST Client designed for back end developers. Many software developers use this REST Client to share, test, document and monitor APIs. It is one of the most preferred options among developers with its advanced interface and many features.<\/p>\n\n\n\n<p>In this tutorial, I will show how to test the Web API we created with the ASP.NET Core architecture via Postman without the need for a browser. Check out the <a href=\"https:\/\/serkanseker.com\/asp-net-core-web-api-entity-framework-scaffolding\/\" target=\"_blank\" rel=\"noreferrer noopener\">ASP.NET Core Web API Entity Framework Scaffolding<\/a> article if you missed it.<\/p>\n\n\n\n<p>First, let&#8217;s make the necessary preparations before we start.<\/p>\n\n\n\n<div class=\"schema-how-to wp-block-yoast-how-to-block\"><p class=\"schema-how-to-description\"><\/p> <ol class=\"schema-how-to-steps\"><li class=\"schema-how-to-step\" id=\"how-to-step-1603869790022\"><strong class=\"schema-how-to-step-name\"><a href=\"#download-launch-postman\">Download and Launch Postman<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869798688\"><strong class=\"schema-how-to-step-name\"><a href=\"#run-web-api-project\">Run the Web API Project<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869810852\"><strong class=\"schema-how-to-step-name\"><a href=\"#testing-get-request\">GET Request<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869826498\"><strong class=\"schema-how-to-step-name\"><a href=\"#testing-post-request\">POST Request<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869845301\"><strong class=\"schema-how-to-step-name\"><a href=\"#testing-put-request\">PUT Request<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869855502\"><strong class=\"schema-how-to-step-name\"><a href=\"#testing-delete-request\">DELETE Request<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><li class=\"schema-how-to-step\" id=\"how-to-step-1603869864890\"><strong class=\"schema-how-to-step-name\"><a href=\"#conclusion\">Conclusion<\/a><\/strong> <p class=\"schema-how-to-step-text\"><\/p> <\/li><\/ol><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"download-launch-postman\">Download and Launch Postman<\/h2>\n\n\n\n<p>Postman has both paid and free versions, but we&#8217;ll go over the free version here. Also, you can run it through the browser but I recommend downloading and installing it. All you have to do is <a href=\"https:\/\/www.postman.com\/downloads\/\" target=\"_blank\" rel=\"noreferrer noopener\">downlad <\/a>and install it on your PC.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Launch-Postman.jpg\" alt=\"Launch Postman\" class=\"wp-image-986\" width=\"1261\" height=\"717\"\/><figcaption>Launch Postman<\/figcaption><\/figure><\/div>\n\n\n\n<p>Here, open a new query window by clicking the plus button.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Postman-Query-Tab.jpg\" alt=\"Postman Query Tab\" class=\"wp-image-987\" width=\"1261\" height=\"716\"\/><figcaption>Postman Query Tab<\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"run-web-api-project\">Run the Web API Project<\/h2>\n\n\n\n<p>Now, open Visual Studio and run the existing Web API project. The project must be running in order to send commands via Postman.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"testing-get-request\">GET Request in Postman<\/h2>\n\n\n\n<p>The GET method is used to get data from servers. It is one of the most used methods.<\/p>\n\n\n\n<p>To test the GET method, type the appropriate URL for your API in the bar that says &#8220;<strong>Enter Request URL<\/strong>&#8221; and press the <strong>Send <\/strong>button.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Testing-GET-Request-in-Postman.jpg\" alt=\"Testing GET Request in Postman\" class=\"wp-image-988\" width=\"1024\" height=\"546\"\/><figcaption>Testing GET Request in Postman<\/figcaption><\/figure><\/div>\n\n\n\n<p>As a response, it would send the results from the database in JSON format with 200 OK Status.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"testing-post-request\">POST Request in Postman<\/h2>\n\n\n\n<p>You can print data to the server with the POST method. Request parameters can be sent both in the URL and in the message body. It is safer to send parameters inside the body.<\/p>\n\n\n\n<p>Since our data format is JSON here, we must specify application \/ json as Content-Type in Headers section before sending POST request. Otherwise, we&#8217;ll get a 415 Unsupported Media Type response.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Postman-Request-Header-Content-Type-Application-Json-1024x546.jpg\" alt=\"\" class=\"wp-image-989\" width=\"1024\" height=\"546\"\/><\/figure><\/div>\n\n\n\n<p>Then, choose POST as your method and come to the Body section and write the information you want to send in Raw format. Then send your request with the Send button.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Testing-POST-Request-in-Postman.jpg\" alt=\"Testing POST Request\" class=\"wp-image-990\" width=\"1024\" height=\"546\"\/><figcaption>Testing POST Request in Postman<\/figcaption><\/figure><\/div>\n\n\n\n<p>Status Code returned 201 Created and the data we sent was successfully added to the database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"testing-put-request\">PUT Request in Postman<\/h2>\n\n\n\n<p>You can update a resource on the service provider with the PUT method. Whichever resource you are going to update, it is mandatory to send the id of that resource.<\/p>\n\n\n\n<p>For example, in the Tags table of my database there is a tag named &#8220;red&#8221; with an id of 1006. I want to change the name of this tag to &#8220;pink&#8221;. For this, I choose the PUT method as the request and write the appropriate id in the URL bar. Next, I write the data I want to change in the Body section and send it. So much!<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Testing-PUT-Request-in-Postman.jpg\" alt=\"Testing PUT Request\" class=\"wp-image-991\" width=\"1366\" height=\"728\"\/><figcaption>Testing PUT Request in Postman<\/figcaption><\/figure><\/div>\n\n\n\n<p>The data we entered has changed in the database and returned 204 No Content responses.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"testing-delete-request\">DELETE Request in Postman<\/h2>\n\n\n\n<p>You can delete any data on the server with the DELETE method.<\/p>\n\n\n\n<p>To delete the data, select DELETE as the request method and type the id of the data you want to delete in the URL and send.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/10\/Testing-DELETE-Request-in-Postman.jpg\" alt=\"Testing DELETE Request\" class=\"wp-image-992\" width=\"1366\" height=\"728\"\/><figcaption>Testing DELETE Request in Postman<\/figcaption><\/figure><\/div>\n\n\n\n<p>The row of the id we entered was deleted from my database table and the status code was 200 OK.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>As a result, Visual Studio runs our Web API project on the local ISP. And, we can&#8217;t test all HTTP methods in local. That&#8217;s why tools like Postman make our job easier.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Related Links<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/serkanseker.com\/asp-net-core-web-api-entity-framework-scaffolding\/\" target=\"_blank\" rel=\"noreferrer noopener\">ASP.NET Core Web API Entity Framework Scaffolding<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Postman is a REST Client designed for back end developers. Many software developers use this REST Client to share, test, document and monitor APIs. It is one of the most preferred options among developers with its advanced interface and many features.<\/p>\n","protected":false},"author":1,"featured_media":205,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[49],"tags":[50,51],"class_list":["post-985","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-asp-net","tag-asp-net","tag-asp-net-core"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR\" \/>\n<meta property=\"og:description\" content=\"Postman is a REST Client designed for back end developers. Many software developers use this REST Client to share, test, document and monitor APIs. It is one of the most preferred options among developers with its advanced interface and many features.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"Serkan Seker TR\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-15T10:37:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-09T18:22:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1\" \/>\n\t<meta property=\"og:image:height\" content=\"1\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"serkanadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"serkanadmin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\"},\"author\":{\"name\":\"serkanadmin\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"headline\":\"Postman Web API Testing Tool &#8211; ASP.NET Web API\",\"datePublished\":\"2020-10-15T10:37:03+00:00\",\"dateModified\":\"2020-12-09T18:22:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\"},\"wordCount\":634,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg\",\"keywords\":[\"ASP.NET\",\"ASP.NET Core\"],\"articleSection\":[\"ASP.NET\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\",\"name\":\"Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg\",\"datePublished\":\"2020-10-15T10:37:03+00:00\",\"dateModified\":\"2020-12-09T18:22:21+00:00\",\"author\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"breadcrumb\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage\",\"url\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg\",\"contentUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/serkanseker.com\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Postman Web API Testing Tool &#8211; ASP.NET Web API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\",\"url\":\"https:\/\/serkanseker.com\/tr\/\",\"name\":\"Serkan Seker TR\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/serkanseker.com\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\",\"name\":\"serkanadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"caption\":\"serkanadmin\"},\"sameAs\":[\"https:\/\/serkanseker.com\"],\"url\":\"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/\"},{\"@type\":\"HowTo\",\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#howto-1\",\"name\":\"Postman Web API Testing Tool &#8211; ASP.NET Web API\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#article\"},\"description\":\"\",\"step\":[{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869790022\",\"text\":\"Download and Launch Postman\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869798688\",\"text\":\"Run the Web API Project\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869810852\",\"text\":\"GET Request\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869826498\",\"text\":\"POST Request\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869845301\",\"text\":\"PUT Request\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869855502\",\"text\":\"DELETE Request\"},{\"@type\":\"HowToStep\",\"url\":\"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869864890\",\"text\":\"Conclusion\"}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR","og_description":"Postman is a REST Client designed for back end developers. Many software developers use this REST Client to share, test, document and monitor APIs. It is one of the most preferred options among developers with its advanced interface and many features.","og_url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/","og_site_name":"Serkan Seker TR","article_published_time":"2020-10-15T10:37:03+00:00","article_modified_time":"2020-12-09T18:22:21+00:00","og_image":[{"url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg","width":1,"height":1,"type":"image\/jpeg"}],"author":"serkanadmin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"serkanadmin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#article","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/"},"author":{"name":"serkanadmin","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"headline":"Postman Web API Testing Tool &#8211; ASP.NET Web API","datePublished":"2020-10-15T10:37:03+00:00","dateModified":"2020-12-09T18:22:21+00:00","mainEntityOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/"},"wordCount":634,"commentCount":0,"image":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg","keywords":["ASP.NET","ASP.NET Core"],"articleSection":["ASP.NET"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/","name":"Postman Web API Testing Tool - ASP.NET Web API - Serkan Seker TR","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage"},"image":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg","datePublished":"2020-10-15T10:37:03+00:00","dateModified":"2020-12-09T18:22:21+00:00","author":{"@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"breadcrumb":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#primaryimage","url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg","contentUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Testing-ASP.NET-Web-API-Using-Postman.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/serkanseker.com\/tr\/"},{"@type":"ListItem","position":2,"name":"Postman Web API Testing Tool &#8211; ASP.NET Web API"}]},{"@type":"WebSite","@id":"https:\/\/serkanseker.com\/tr\/#website","url":"https:\/\/serkanseker.com\/tr\/","name":"Serkan Seker TR","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/serkanseker.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5","name":"serkanadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","caption":"serkanadmin"},"sameAs":["https:\/\/serkanseker.com"],"url":"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/"},{"@type":"HowTo","@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#howto-1","name":"Postman Web API Testing Tool &#8211; ASP.NET Web API","mainEntityOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#article"},"description":"","step":[{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869790022","text":"Download and Launch Postman"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869798688","text":"Run the Web API Project"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869810852","text":"GET Request"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869826498","text":"POST Request"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869845301","text":"PUT Request"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869855502","text":"DELETE Request"},{"@type":"HowToStep","url":"https:\/\/serkanseker.com\/tr\/postman-web-api-testing-tool\/#how-to-step-1603869864890","text":"Conclusion"}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/comments?post=985"}],"version-history":[{"count":0,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/985\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media\/205"}],"wp:attachment":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media?parent=985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/categories?post=985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/tags?post=985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}