{"id":979,"date":"2012-01-07T18:30:06","date_gmt":"2012-01-07T13:00:06","guid":{"rendered":"http:\/\/www.automationrepository.com\/?p=979"},"modified":"2012-01-07T18:34:47","modified_gmt":"2012-01-07T13:04:47","slug":"automating-outlook-using-qtp-working-with-outlook-folders","status":"publish","type":"post","link":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/","title":{"rendered":"Part 3: Automating Outlook using QTP | Working with Outlook Folders"},"content":{"rendered":"<div style=\"text-align: justify; font-family: Verdana;\">\n<p>Till now, we have covered the <a title=\"Part 1: Automating Outlook using QTP | General Introduction\" href=\"http:\/\/www.automationrepository.com\/2011\/12\/part-1-automating-outlook-using-qtp-general-introduction\/\" target=\"_blank\">basics of automating MS Outlook<\/a> as well as <a title=\"Part 2: Automating Outlook using QTP | Overview of Outlook Object Model\" href=\"http:\/\/www.automationrepository.com\/2011\/12\/automating-outlook-using-qtp-overview-of-outlook-object-model\/\" target=\"_blank\">overview of Outlook Object Model<\/a>. In this article, you&#8217;ll see how you can access the Outlook folders and work with them. You would see how to find specific folder by name, how to create a new folder in outlook, how to<!--more--> delete an existing folder and how to move\/copy folders to a given destination.<\/p>\n<p>To access Outlook folders, you would need to use the <strong>MAPIFolder<\/strong> class which contains the methods and properties needed to access, create and customize folders. <strong>MAPIFolder provides 16 default objects using which you can access different Outlook folders such as e-mail messages, tasks, contact items etc<\/strong>. Let us some examples on how you can access outlook folders and work with them.<br \/>\n<span><br \/>\n<\/span><br \/>\n<strong>Sample Code 1: Display total number of folders and name of each folder inside Inbox Folder.<\/strong> Let&#8217;s see the code that displays the number and names of folders inside Inbox folder. The figure below the code snippet shows the snapshot of Outlook Inbox folder and the output value.<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nDim iCount, sFolderNames\r\nsFolderNames = &quot;&quot;\r\n\r\nSet objOutlook = CreateObject(&quot;Outlook.Application&quot;)\r\nSet objNamespace = objOutlook.GetNamespace(&quot;MAPI&quot;)\r\n\r\n'Create reference to Inbox Folder\r\nSet oInbox = objNamespace.GetDefaultFolder(6)\r\n'Find list of all folders within Inbox Folder\r\nSet oAllFolders = oInbox.Folders\r\niCount = oAllFolders.Count\r\nsFolderNames = &quot;Total Folders = &quot; &amp; iCount &amp; vbcrlf &amp; vbcrlf\r\n\r\n'Get the names of the folders\r\nFor i = 1 to iCount\r\n\tsFolderNames = sFolderNames &amp; &quot;Folder &quot; &amp; i &amp; &quot; -&gt; &quot; &amp; oAllFolders(i).Name &amp; vbcrlf\r\nNext\r\n'Display folder count and folder names in msgbox\r\nmsgbox sFolderNames\r\n<\/pre>\n<div style=\"width: 377px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" title=\"Working with Outlook Folders\" src=\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png\" alt=\"Working with Outlook Folders\" width=\"367\" height=\"255\" \/><p class=\"wp-caption-text\">Working with Outlook Folders<\/p><\/div>\n<p><span><br \/>\n<\/span><br \/>\n<strong>Sample Code 2: Add and Delete folders in Outlook.<\/strong> In this example, we&#8217;ll add a new folder (named Folder1) and delete an already existing folder (Test3) from Outlook Inbox.<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nDim addFolderName, delFolderName\r\naddFolderName = &quot;Folder1&quot;\r\ndelFolderName = &quot;Test3&quot;\r\n\r\nSet objOutlook = CreateObject(&quot;Outlook.Application&quot;)\r\nSet objNamespace = objOutlook.GetNamespace(&quot;MAPI&quot;)\r\n\r\n'Create reference to Inbox Folder\r\nSet oInbox = objNamespace.GetDefaultFolder(6)\r\n\r\n'Add new folder in Outlook Inbox\r\noInbox.Folders.Add addFolderName\r\n\r\n'Find list of all folders within Inbox\r\nSet oAllFolders = oInbox.Folders\r\niCount = oAllFolders.Count\r\n\r\n'Delete folder from Outlook Inbox\r\nFor i = 1 to iCount\r\n If oAllFolders(i).Name = delFolderName Then\r\n  oAllFolders(i).Delete\r\n  Exit For\r\n End If\r\nNext\r\n<\/pre>\n<div style=\"width: 598px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" title=\"Add &amp; Delete Folders from Outlook\" src=\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/add-delete-folders-outlook.png\" alt=\"Add &amp; Delete Folders from Outlook\" width=\"588\" height=\"274\" \/><p class=\"wp-caption-text\">Add &amp; Delete Folders from Outlook<\/p><\/div>\n<p><span><br \/>\n<\/span><br \/>\n<strong>Sample Code 3: Copy and Move folders from one location to another.<\/strong> In this example, we&#8217;ll copy and move folders from Inbox to Junk Folder<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nSet objOutlook = CreateObject(&quot;Outlook.Application&quot;)\r\nSet objNamespace = objOutlook.GetNamespace(&quot;MAPI&quot;)\r\n\r\n'Create reference to Inbox &amp; JunkMail Folders\r\nSet oInbox = objNamespace.GetDefaultFolder(6)\r\nSet oJunk = objNamespace.GetDefaultFolder(23)\r\n\r\n'Find list of all folders within Inbox\r\nSet oAllFolders = oInbox.Folders\r\niCount = oAllFolders.Count\r\n\r\n'Delete folder from Outlook Inbox\r\nFor i = 1 to iCount\r\n    If oAllFolders(i).Name = &quot;Copy Folder&quot; Then\r\n      'Copy folder from Inbox to Junk Folder\r\n      oAllFolders(i).CopyTo(oJunk)\r\n    ElseIf oAllFolders(i).Name = &quot;Move Folder&quot; Then\r\n      'Move folder from Inbox to Junk Folder\r\n      oAllFolders(i).MoveTo(oJunk)\r\n    End If\r\nNext\r\n<\/pre>\n<div style=\"width: 397px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" title=\"Copy and Move Folders in Outlook\" src=\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/copy-move-folders-outlook.png\" alt=\"Copy and Move Folders in Outlook\" width=\"387\" height=\"271\" \/><p class=\"wp-caption-text\">Copy and Move Folders in Outlook<\/p><\/div>\n<p><span><br \/>\n<\/span><br \/>\nIn all the above examples, we have worked mostly with the Inbox folder (which was represented by integer value 6). If you want to work with any other folder in Outlook (such as Drafts, Sent Items, etc), all you need to do is use the enumeration value associated with that particular folder. <strong>For your reference, we have listed down all the 16 default outlook folder types with their enumerations.<\/strong><\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\"><strong>Name<\/strong><\/td>\n<td valign=\"top\">\n<p align=\"center\"><strong>Value<br \/>\n<\/strong><\/p>\n<\/td>\n<td valign=\"top\"><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderCalendar<\/td>\n<td valign=\"top\">9<\/td>\n<td valign=\"top\">The Calendar folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderConflicts<\/td>\n<td valign=\"top\">19<\/td>\n<td valign=\"top\">The Conflicts folder (subfolder of Sync Issues folder). Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderContacts<\/td>\n<td valign=\"top\">10<\/td>\n<td valign=\"top\">The Contacts folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderDeletedItems<\/td>\n<td valign=\"top\">3<\/td>\n<td valign=\"top\">The Deleted Items folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderDrafts<\/td>\n<td valign=\"top\">16<\/td>\n<td valign=\"top\">The Drafts folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderInbox<\/td>\n<td valign=\"top\">6<\/td>\n<td valign=\"top\">The Inbox folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderJournal<\/td>\n<td valign=\"top\">11<\/td>\n<td valign=\"top\">The Journal folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderJunk<\/td>\n<td valign=\"top\">23<\/td>\n<td valign=\"top\">The Junk E-Mail folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderLocalFailures<\/td>\n<td valign=\"top\">21<\/td>\n<td valign=\"top\">The Local Failures folder (subfolder of Sync Issues folder). Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderManagedEmail<\/td>\n<td valign=\"top\">29<\/td>\n<td valign=\"top\">The top-level folder in the Managed Folders group. For more information on Managed Folders, see Help in Microsoft Outlook. Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderNotes<\/td>\n<td valign=\"top\">12<\/td>\n<td valign=\"top\">The Notes folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderOutbox<\/td>\n<td valign=\"top\">4<\/td>\n<td valign=\"top\">The Outbox folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderSentMail<\/td>\n<td valign=\"top\">5<\/td>\n<td valign=\"top\">The Sent Mail folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderServerFailures<\/td>\n<td valign=\"top\">22<\/td>\n<td valign=\"top\">The Server Failures folder (subfolder of Sync Issues folder). Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderSyncIssues<\/td>\n<td valign=\"top\">20<\/td>\n<td valign=\"top\">The Sync Issues folder. Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderTasks<\/td>\n<td valign=\"top\">13<\/td>\n<td valign=\"top\">The Tasks folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderToDo<\/td>\n<td valign=\"top\">28<\/td>\n<td valign=\"top\">The To Do folder.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olPublicFoldersAllPublicFolders<\/td>\n<td valign=\"top\">18<\/td>\n<td valign=\"top\">The All Public Folders folder in the Exchange Public Folders store. Only available for an Exchange account.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\">olFolderRssFeeds<\/td>\n<td valign=\"top\">25<\/td>\n<td valign=\"top\">The RSS Feeds folder.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><span><br \/>\n<\/span><\/p>\n<p style=\"border: 1px solid #C38EC7; padding: 3mm; background: #EBDDE2;\">If you feel that we have missed out any important concept, or if you want any other topic to be covered here, please leave a comment or just drop in a mail to us. We&#8217;ll be more than happy to work on it.<\/p>\n<div style=\"font-family: Verdana,sans-serif; border: 1px solid #C8B560; padding: 3mm; background: #FFF8C6; text-align: center;\">\n<p>If you enjoyed this article, you can join our blog to get new posts delivered directly in your inbox.<\/p>\n<form style=\"text-align: center;\" action=\"http:\/\/feedburner.google.com\/fb\/a\/mailverify\" method=\"post\" onsubmit=\"window.open('http:\/\/feedburner.google.com\/fb\/a\/mailverify?uri=automationrepository\/feeds', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true\" target=\"popupwindow\"><input style=\"width: 160px; height: 20px;\" onfocus=\"if (this.value == 'Enter Your Email Address') {this.value = '';}\" onblur=\"if (this.value == '') {this.value = 'Enter Your Email Address';}\" type=\"text\" value=\"Enter Your Email Address\" \/> <input type=\"hidden\" name=\"uri\" value=\"automationrepository\/feeds\" \/> <input type=\"hidden\" name=\"loc\" value=\"en_US\" \/> <input type=\"submit\" value=\"Join Us\" \/><\/p>\n<p style=\"text-align: justify;\">\n<\/form>\n<\/div>\n<p><span><br \/>\n<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Till now, we have covered the basics of automating MS Outlook as well as overview of Outlook Object Model. In this article, you&#8217;ll see how you can access the Outlook folders and work with them. You would see how to find specific folder by name, how to create a new folder in outlook, how to<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,9],"tags":[54],"class_list":["post-979","post","type-post","status-publish","format-standard","hentry","category-advanced-concepts","category-qtp-concepts","tag-automating-outlook-using-qtp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Part 3: Automating Outlook | Working with Outlook Folders<\/title>\n<meta name=\"description\" content=\"You would see how to find specific folder by name, how to create a new folder in outlook, how to delete an existing folder and how to move\/copy folders to a given destination.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anish Pillai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/\",\"name\":\"Part 3: Automating Outlook | Working with Outlook Folders\",\"isPartOf\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png\",\"datePublished\":\"2012-01-07T13:00:06+00:00\",\"dateModified\":\"2012-01-07T13:04:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20\"},\"description\":\"You would see how to find specific folder by name, how to create a new folder in outlook, how to delete an existing folder and how to move\/copy folders to a given destination.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png\",\"contentUrl\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.automationrepository.com\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Part 3: Automating Outlook using QTP | Working with Outlook Folders\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/\",\"name\":\"XX\",\"description\":\"\\r\\nasas\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20\",\"name\":\"Anish Pillai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g\",\"caption\":\"Anish Pillai\"},\"description\":\"Find more about Anish Pillai on Google+\",\"sameAs\":[\"http:\/\/www.automationrepository.com\"],\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/author\/anish\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Part 3: Automating Outlook | Working with Outlook Folders","description":"You would see how to find specific folder by name, how to create a new folder in outlook, how to delete an existing folder and how to move\/copy folders to a given destination.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/","twitter_misc":{"Written by":"Anish Pillai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/","url":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/","name":"Part 3: Automating Outlook | Working with Outlook Folders","isPartOf":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage"},"image":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage"},"thumbnailUrl":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png","datePublished":"2012-01-07T13:00:06+00:00","dateModified":"2012-01-07T13:04:47+00:00","author":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20"},"description":"You would see how to find specific folder by name, how to create a new folder in outlook, how to delete an existing folder and how to move\/copy folders to a given destination.","breadcrumb":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#primaryimage","url":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png","contentUrl":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/outlook-inbox-folder.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.automationrepository.com\/wordpress\/2012\/01\/automating-outlook-using-qtp-working-with-outlook-folders\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.automationrepository.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Part 3: Automating Outlook using QTP | Working with Outlook Folders"}]},{"@type":"WebSite","@id":"https:\/\/www.automationrepository.com\/wordpress\/#website","url":"https:\/\/www.automationrepository.com\/wordpress\/","name":"XX","description":"\r\nasas","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20","name":"Anish Pillai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g","caption":"Anish Pillai"},"description":"Find more about Anish Pillai on Google+","sameAs":["http:\/\/www.automationrepository.com"],"url":"https:\/\/www.automationrepository.com\/wordpress\/author\/anish\/"}]}},"_links":{"self":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/979","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/comments?post=979"}],"version-history":[{"count":9,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/979\/revisions"}],"predecessor-version":[{"id":987,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/979\/revisions\/987"}],"wp:attachment":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/media?parent=979"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/categories?post=979"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/tags?post=979"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}