{"id":168,"date":"2015-11-12T13:06:46","date_gmt":"2015-11-12T13:06:46","guid":{"rendered":"http:\/\/www.softreeconsulting.com\/?p=168"},"modified":"2015-11-12T13:06:46","modified_gmt":"2015-11-12T13:06:46","slug":"enable-or-disable-audience-targeting-of-a-list-in-sharepoint","status":"publish","type":"post","link":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/","title":{"rendered":"Enable or Disable Audience targeting of a list in SharePoint"},"content":{"rendered":"<p>Below code describes how to enable or Disable Audience targeting of a list in sharepoint using client side object model<\/p>\n<ol>\n<li>Add reference \u201cMicrosoft.sharepoint.client.dll\u201d and \u201cMicrosoft.sharepoint.client.Runtime.dll\u201d.<\/li>\n<li>Write Below Code.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000;\"><span style=\"color: #0000ff;\">using<\/span> Microsoft.SharePoint.Client;<\/span><\/p>\n<p><span style=\"color: #000000;\"><span style=\"color: #0000ff;\">namespace<\/span> ConsoleApplication<\/span><\/p>\n<p><span style=\"color: #000000;\">{\u00a0\u00a0<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">class<\/span> <span style=\"color: #71ab9e;\">Program<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0 {<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">static<\/span> <span style=\"color: #0000ff;\">void<\/span> Main(<span style=\"color: #0000ff;\">string<\/span>[] args)<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0{<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">using<\/span> (<span style=\"color: #71ab9e;\">ClientContext<\/span> ctx=<span style=\"color: #0000ff;\">new<\/span> <span style=\"color: #71ab9e;\">ClientContext<\/span>(<span style=\"color: #993300;\">&#8220;SiteUrl&#8221;<\/span>))<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #008000;\">\/\/Apply Credential<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Credentials = <span style=\"color: #0000ff;\">new<\/span> System.Net.<span style=\"color: #71ab9e;\">NetworkCredential<\/span>(<span style=\"color: #993300;\">&#8220;UserName&#8221;<\/span>, <span style=\"color: #993300;\">&#8220;Password&#8221;<\/span>);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">Web<\/span> web = ctx.Web;<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Load(web,w=&gt;w.Lists);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">List<\/span> list = web.Lists.GetByTitle(<span style=\"color: #993300;\">&#8220;New List&#8221;<\/span>);<span style=\"color: #008000;\">\/\/Load list<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Load(list, l =&gt; l.Fields);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.ExecuteQuery();<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/Enable Audience Targetting<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">try<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">Guid<\/span> guid = <span style=\"color: #0000ff;\">new<\/span> <span style=\"color: #71ab9e;\">Guid<\/span>(<span style=\"color: #993300;\">&#8220;61cbb965-1e04-4273-b658-eedaa662f48d&#8221;<\/span>);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">Field<\/span> field = list.Fields.GetById(guid);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Load(field);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.ExecuteQuery(); \/\/if field is not present then it will give exception<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">catch<\/span> (<span style=\"color: #71ab9e;\">Exception<\/span> ex)<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #0000ff;\">string<\/span> fieldSchema = <span style=\"color: #993300;\">&#8220;&lt;Field ID=&#8221;61cbb965-1e04-4273-b658-eedaa662f48d&#8221; Type=&#8221;TargetTo&#8221; \u00a0 \u00a0 DisplayName=&#8221;Target Audiences&#8221; Name=&#8221;TargetTo&#8221; Required=&#8221;True&#8221; \/&gt;&#8221;<\/span>;<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 list.Fields.AddFieldAsXml(fieldSchema, <span style=\"color: #0000ff;\">true<\/span>, <span style=\"color: #71ab9e;\">AddFieldOptions<\/span>.AddToDefaultContentType);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 list.Update();<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0ctx.ExecuteQuery();<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #008000;\">\/\/Disable Audience Targetting<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">Guid<\/span> newGuid = <span style=\"color: #0000ff;\">new<\/span> <span style=\"color: #71ab9e;\">Guid<\/span>(<span style=\"color: #993300;\">&#8220;61cbb965-1e04-4273-b658-eedaa662f48d&#8221;<\/span>);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <span style=\"color: #71ab9e;\">Field<\/span> fields = list.Fields.GetById(newGuid);<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 fields.DeleteObject();<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.ExecuteQuery();<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }<\/span><\/p>\n<p><span style=\"color: #000000;\">\u00a0\u00a0\u00a0 }<\/span><\/p>\n<p><span style=\"color: #000000;\">}<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Below code describes how to enable or Disable Audience targeting of a list in sharepoint using client side object model Add reference \u201cMicrosoft.sharepoint.client.dll\u201d and \u201cMicrosoft.sharepoint.client.Runtime.dll\u201d. Write Below Code. &nbsp; using Microsoft.SharePoint.Client; namespace ConsoleApplication {\u00a0\u00a0 \u00a0\u00a0\u00a0 class Program \u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 static void Main(string[] args) \u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0{ \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 using (ClientContext ctx=new ClientContext(&#8220;SiteUrl&#8221;)) \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/Apply Credential \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Credentials = new [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[43],"tags":[50,51,52,53,54,55,56,57],"class_list":["post-168","post","type-post","status-publish","format-standard","hentry","category-sharepoint","tag-client-object-model","tag-disable-audience-targeting-of-a-list-in-sharepoint-2013","tag-enable-audience-targeting-of-a-list-in-sharepoint-2013","tag-enable-audience-targeting-programmatically","tag-enable-audience-targeting-programmatically-csom","tag-enable-or-disable-audience-targeting-of-a-list-in-sharepoint-2013","tag-sharepoint","tag-sharepoint-client-object-model"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Enable or Disable Audience targeting of a list in SharePoint - Softree Technology<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enable or Disable Audience targeting of a list in SharePoint - Softree Technology\" \/>\n<meta property=\"og:description\" content=\"Below code describes how to enable or Disable Audience targeting of a list in sharepoint using client side object model Add reference \u201cMicrosoft.sharepoint.client.dll\u201d and \u201cMicrosoft.sharepoint.client.Runtime.dll\u201d. Write Below Code. &nbsp; using Microsoft.SharePoint.Client; namespace ConsoleApplication {\u00a0\u00a0 \u00a0\u00a0\u00a0 class Program \u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 static void Main(string[] args) \u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0{ \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 using (ClientContext ctx=new ClientContext(&#8220;SiteUrl&#8221;)) \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/Apply Credential \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Credentials = new [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/\" \/>\n<meta property=\"og:site_name\" content=\"Softree Technology\" \/>\n<meta property=\"article:published_time\" content=\"2015-11-12T13:06:46+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enable or Disable Audience targeting of a list in SharePoint - Softree Technology","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:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/","og_locale":"en_US","og_type":"article","og_title":"Enable or Disable Audience targeting of a list in SharePoint - Softree Technology","og_description":"Below code describes how to enable or Disable Audience targeting of a list in sharepoint using client side object model Add reference \u201cMicrosoft.sharepoint.client.dll\u201d and \u201cMicrosoft.sharepoint.client.Runtime.dll\u201d. Write Below Code. &nbsp; using Microsoft.SharePoint.Client; namespace ConsoleApplication {\u00a0\u00a0 \u00a0\u00a0\u00a0 class Program \u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 static void Main(string[] args) \u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0{ \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 using (ClientContext ctx=new ClientContext(&#8220;SiteUrl&#8221;)) \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/Apply Credential \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ctx.Credentials = new [&hellip;]","og_url":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/","og_site_name":"Softree Technology","article_published_time":"2015-11-12T13:06:46+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/#article","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/"},"author":{"name":"admin","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/98740297642f06debccdcee2de84086b"},"headline":"Enable or Disable Audience targeting of a list in SharePoint","datePublished":"2015-11-12T13:06:46+00:00","mainEntityOfPage":{"@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/"},"wordCount":203,"commentCount":1,"publisher":{"@id":"https:\/\/softreetechnology.com\/blog\/#organization"},"keywords":["Client Object Model","Disable Audience targeting of a list in SharePoint 2013","Enable Audience targeting of a list in SharePoint 2013","enable audience targeting programmatically","enable audience targeting programmatically csom","Enable or Disable Audience targeting of a list in SharePoint 2013","SharePoint","SharePoint; Client Object Model"],"articleSection":["SharePoint"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/","url":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/","name":"Enable or Disable Audience targeting of a list in SharePoint - Softree Technology","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/#website"},"datePublished":"2015-11-12T13:06:46+00:00","breadcrumb":{"@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/softreetechnology.com\/blog\/sharepoint\/enable-or-disable-audience-targeting-of-a-list-in-sharepoint\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/softreetechnology.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Enable or Disable Audience targeting of a list in SharePoint"}]},{"@type":"WebSite","@id":"https:\/\/softreetechnology.com\/blog\/#website","url":"https:\/\/softreetechnology.com\/blog\/","name":"Softree Technology","description":"Celebrating 10+ Years in SharePoint Consulting !","publisher":{"@id":"https:\/\/softreetechnology.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/softreetechnology.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/softreetechnology.com\/blog\/#organization","name":"Softree Technology","url":"https:\/\/softreetechnology.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2023\/03\/cropped-white-logo-soft.png","contentUrl":"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2023\/03\/cropped-white-logo-soft.png","width":844,"height":230,"caption":"Softree Technology"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/98740297642f06debccdcee2de84086b","name":"admin","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6fc78c8a7aa3fb0bf43c3b9a2e3962d7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6fc78c8a7aa3fb0bf43c3b9a2e3962d7?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/softreeconsulting.com"],"url":"https:\/\/softreetechnology.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/168","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/comments?post=168"}],"version-history":[{"count":0,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/168\/revisions"}],"wp:attachment":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/media?parent=168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/categories?post=168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/tags?post=168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}