<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Postman Archives | Gleamsol Solutions | AI, Software &amp; Digital Transformation</title>
	<atom:link href="http://www.gleamsol.com/category/postman/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.gleamsol.com/category/postman/</link>
	<description>Custom Software • AI Solutions • Mobile Apps • Business Automation</description>
	<lastBuildDate>Sun, 29 Jan 2023 13:53:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>http://www.gleamsol.com/wp-content/uploads/2019/11/cropped-favicon-32x32.png</url>
	<title>Postman Archives | Gleamsol Solutions | AI, Software &amp; Digital Transformation</title>
	<link>https://www.gleamsol.com/category/postman/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Types of requests in postman</title>
		<link>http://www.gleamsol.com/types-of-requests-in-postman/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=types-of-requests-in-postman</link>
					<comments>http://www.gleamsol.com/types-of-requests-in-postman/#respond</comments>
		
		<dc:creator><![CDATA[Gleamsol Solutions]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 13:52:07 +0000</pubDate>
				<category><![CDATA[Postman]]></category>
		<guid isPermaLink="false">https://www.gleamsol.com/?p=2768</guid>

					<description><![CDATA[<p>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...</p>
<p>The post <a href="http://www.gleamsol.com/types-of-requests-in-postman/">Types of requests in postman</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<ol class="wp-block-list"><li>GET Request: Retrieves data from a server. It is the most common type of request used in API testing.</li><li>POST Request: Sends data to a server for processing and updates the existing data on the server.</li><li>PUT Request: Replaces existing data on the server with new data.</li><li>DELETE Request: Deletes data from the server.</li><li>PATCH Request: Modifies a specific part of the existing data on the server.</li><li>HEAD Request: Retrieves only the headers of a response, without the body content.</li><li>OPTIONS Request: Determines the capabilities of a server and what types of requests it supports.</li><li>CONNECT Request: Establishes a network connection to the server.</li><li>TRACE Request: Returns the request message received by the server, including any modifications made by intermediate servers.</li><li>PROPFIND Request: Retrieves the properties of a resource.</li><li>COPY Request: Copies a resource to a new location on the server.</li><li>MOVE Request: Moves a resource to a new location on the server.</li></ol>
<p>The post <a href="http://www.gleamsol.com/types-of-requests-in-postman/">Types of requests in postman</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.gleamsol.com/types-of-requests-in-postman/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Format Form Data as JSON?</title>
		<link>http://www.gleamsol.com/how-to-format-form-data-as-json/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-format-form-data-as-json</link>
					<comments>http://www.gleamsol.com/how-to-format-form-data-as-json/#respond</comments>
		
		<dc:creator><![CDATA[Gleamsol Solutions]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 13:50:16 +0000</pubDate>
				<category><![CDATA[Postman]]></category>
		<guid isPermaLink="false">https://www.gleamsol.com/?p=2766</guid>

					<description><![CDATA[<p>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...</p>
<p>The post <a href="http://www.gleamsol.com/how-to-format-form-data-as-json/">How To Format Form Data as JSON?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">To format form data as JSON, follow these steps:</p>



<ol class="wp-block-list"><li>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.</li><li>Store form data: Store the form data in a JavaScript object. You can use the object to store the values of all the form fields.</li><li>Convert form data to JSON: You can use the JSON.stringify() method to convert the form data object to JSON. This method takes the JavaScript object as an argument and returns a JSON string.</li></ol>



<p class="wp-block-paragraph">Example:</p>



<pre class="wp-block-code"><code>&lt;form id="myForm"&gt;
  &lt;input type="text" name="name" id="name"&gt;
  &lt;input type="email" name="email" id="email"&gt;
  &lt;input type="submit" value="Submit"&gt;
&lt;/form&gt;

&lt;script&gt;
  document.getElementById("myForm").addEventListener("submit", function(event) {
    event.preventDefault();
    var formData = {
      name: document.getElementById("name").value,
      email: document.getElementById("email").value
    };
    var jsonData = JSON.stringify(formData);
    console.log(jsonData);
  });
&lt;/script&gt;</code></pre>



<p class="wp-block-paragraph">In this example, the form data is collected when the form is submitted and stored in the formData object. The JSON.stringify() method is then used to convert the formData object to a JSON string, which is logged to the console.</p>
<p>The post <a href="http://www.gleamsol.com/how-to-format-form-data-as-json/">How To Format Form Data as JSON?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.gleamsol.com/how-to-format-form-data-as-json/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Postman collection?</title>
		<link>http://www.gleamsol.com/what-is-postman-collection/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-postman-collection</link>
					<comments>http://www.gleamsol.com/what-is-postman-collection/#respond</comments>
		
		<dc:creator><![CDATA[Gleamsol Solutions]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 13:48:35 +0000</pubDate>
				<category><![CDATA[Postman]]></category>
		<guid isPermaLink="false">https://www.gleamsol.com/?p=2763</guid>

					<description><![CDATA[<p>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...</p>
<p>The post <a href="http://www.gleamsol.com/what-is-postman-collection/">What is Postman collection?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">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 be used to test, debug, and document API endpoints. Postman collections provide a convenient way to share and collaborate on API testing and development with others.</p>
<p>The post <a href="http://www.gleamsol.com/what-is-postman-collection/">What is Postman collection?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.gleamsol.com/what-is-postman-collection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Postman?</title>
		<link>http://www.gleamsol.com/what-is-postman/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-postman</link>
					<comments>http://www.gleamsol.com/what-is-postman/#respond</comments>
		
		<dc:creator><![CDATA[Gleamsol Solutions]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 13:47:36 +0000</pubDate>
				<category><![CDATA[Postman]]></category>
		<guid isPermaLink="false">https://www.gleamsol.com/?p=2760</guid>

					<description><![CDATA[<p>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...</p>
<p>The post <a href="http://www.gleamsol.com/what-is-postman/">What is Postman?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">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.</p>



<p class="wp-block-paragraph">It also provides features such as request history, environment variables, data persistence, and collaboration tools. Postman is available as a native app for Mac, Windows, and Linux, and as a browser extension for Chrome.</p>
<p>The post <a href="http://www.gleamsol.com/what-is-postman/">What is Postman?</a> appeared first on <a href="http://www.gleamsol.com">Gleamsol Solutions | AI, Software &amp; Digital Transformation</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.gleamsol.com/what-is-postman/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
