{"id":6212,"date":"2022-11-15T23:07:36","date_gmt":"2022-11-15T23:07:36","guid":{"rendered":"https:\/\/serviceobjects.wpaladdin.com\/dots-address-validation-us-3-2\/adi-code-snippets-and-sample-code\/adi-rest\/"},"modified":"2024-03-29T08:49:02","modified_gmt":"2024-03-29T15:49:02","slug":"adi-rest","status":"publish","type":"page","link":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/","title":{"rendered":"ADI &#8211; REST"},"content":{"rendered":"\n<div class=\"wp-block-create-block-tabs\"><ul class=\"tab-labels\" role=\"tablist\" aria-label=\"tabbed content\"><li class=\"tab-label active\" role=\"tab\" aria-selected=\"true\" aria-controls=\"C#\" tabindex=\"0\">C#<\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"Java\" tabindex=\"0\">Java<\/li><\/ul><div class=\"tab-content\">\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong>Address Detective International C# Rest Code Snippet<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">string primaryurl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\" + format + \"\/FindBestCountry?CompanyName=\" + companyName + \"&amp;FullName=\" + fullName + \"&amp;FirstName=\" + firstName + \"&amp;LastName=\" + lastName + \"&amp;Address1=\" + address1 + \"&amp;Address2=\" + address2 + \"&amp;Address3=\" + address3 + \"&amp;Address4=\" + address4 + \"&amp;Address5=\" + address5 + \"&amp;Address6=\" + address6 + \"&amp;Address7=\" + address7 + \"&amp;Address8=\" + address8 + \"&amp;Locality=\" + locality + \"&amp;AdminArea=\" + adminArea + \"&amp;PostalCode=\" + postalCode + \"&amp;Phone1=\" + phone1 + \"&amp;Phone2=\" + phone2 + \"&amp;Phone3=\" + phone3 + \"&amp;Email=\" + email + \"&amp;IPAddress=\" + ipAddress + \"&amp;LicenseKey=\" + licensekey;\n  \nstring backupurl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\" + format + \"\/FindBestCountry?CompanyName=\" + companyName + \"&amp;FullName=\" + fullName + \"&amp;FirstName=\" + firstName + \"&amp;LastName=\" + lastName + \"&amp;Address1=\" + address1 + \"&amp;Address2=\" + address2 + \"&amp;Address3=\" + address3 + \"&amp;Address4=\" + address4 + \"&amp;Address5=\" + address5 + \"&amp;Address6=\" + address6 + \"&amp;Address7=\" + address7 + \"&amp;Address8=\" + address8 + \"&amp;Locality=\" + locality + \"&amp;AdminArea=\" + adminArea + \"&amp;PostalCode=\" + postalCode + \"&amp;Phone1=\" + phone1 + \"&amp;Phone2=\" + phone2 + \"&amp;Phone3=\" + phone3 + \"&amp;Email=\" + email + \"&amp;IPAddress=\" + ipAddress + \"&amp;LicenseKey=\" + licensekey;\ntry\n{\n     \n    wsresponse = httpGet(primaryurl);\n    \/\/checks if a response was returned from the service, uses the backup url if response is null or a fatal error occured.\n    if (wsresponse == null || (wsresponse.Error != null &amp;&amp; wsresponse.Error.TypeCode == \"3\"))\n    {\n        throw new Exception(\"Primary Call Received an Unhandled erros\");\n    }\n}\ncatch (Exception ex)\n{\n    try\n    {\n        wsresponse = httpGet(backupurl);\n    }\n    catch (Exception err)\n    {\n        \/\/Displays the relevant error mesasge if both backup and primary urls failed. You will likely want to log this somewhere\n        StatusLabel.Text = err.Message;\n        StatusLabel.Visible = true;\n    }\n    \/\/Displays the relevant error mesasge if both backup and primary urls failed.\n    StatusLabel.Text = ex.Message;\n    StatusLabel.Visible = true;\n}\nif (wsresponse.Error != null)\n{\n    ProcessErrorResponse(wsresponse.Error);\n}\nelse\n{\n    ProcessSuccessfulResponse(wsresponse);\n}\n \nprivate CountryDetectionResponse httpGet(string url)\n{\ntry\n{\n    \/\/NOTE: URL encoding occurs automatically when creating the web request\n    HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;\n    request.Timeout = 15000;\/\/timeout for get operation\n    using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)\n    {\n        if (response.StatusCode != HttpStatusCode.OK)\n            throw new Exception(String.Format(\n            \"Server error (HTTP {0}: {1}).\",\n            response.StatusCode,\n            response.StatusDescription));\n        \/\/parses XML response into the AVIResponse object\n        XmlSerializer serializer = new XmlSerializer(typeof(CountryDetectionResponse));\n        StreamReader reader = new StreamReader(response.GetResponseStream());\n        CountryDetectionResponse output = new CountryDetectionResponse();\n        output = (CountryDetectionResponse)serializer.Deserialize(reader);\n        return output;\n    }\n}\ncatch (Exception e)\n{\n    throw e;\n}\n}\n \nprivate void ProcessSuccessfulResponse(CountryDetectionResponse outputs)\n{\n    DataTable dtoutput = new DataTable();\n    dtoutput.Columns.Add(\"Outputs\", typeof(string));\n    dtoutput.Columns.Add(\"Values\", typeof(string));\n    dtoutput.Rows.Add(\"Status\", outputs.CountryDetection.Status);\n    dtoutput.Rows.Add(\"TotalScore\", outputs.CountryDetection.TotalScore);\n    dtoutput.Rows.Add(\"Notes\", outputs.CountryDetection.Notes);\n    dtoutput.Rows.Add(\"NotesDesc\", outputs.CountryDetection.NotesDesc);\n    dtoutput.Rows.Add(\"Warnings\", outputs.CountryDetection.Warnings);\n    dtoutput.Rows.Add(\"WarningsDesc\", outputs.CountryDetection.WarningsDesc);\n    .\n    .\n    .\n    dtoutput.Rows.Add(\"Email_CountryISO2\", outputs.CountryDetection.Email_CountryISO2);\n    dtoutput.Rows.Add(\"Email_CountryISO3\", outputs.CountryDetection.Email_CountryISO3);\n    dtoutput.Rows.Add(\"Email_AllCountriesFoundISO2\", outputs.CountryDetection.Email_AllCountriesFoundISO2);\n \n    \/\/Checks for the existence of the Information Compoents object and then prints the resulting values if they arise.\n    ResultGrid.Visible = true;\n    StatusLabel.Visible = true;\n    ResultGrid.DataSource = new DataView(dtoutput);\n    ResultGrid.DataBind();\n}\nprivate void ProcessErrorResponse(Error errorResponse)\n{\n    DataTable dtError = new DataTable();\n    dtError.Columns.Add(\"Outputs\", typeof(string));\n    dtError.Columns.Add(\"Values\", typeof(string));\n    dtError.Rows.Add(\"Type\", errorResponse.Type);\n    dtError.Rows.Add(\"TypeCode\", errorResponse.TypeCode);\n    dtError.Rows.Add(\"Desc\", errorResponse.Desc);\n    dtError.Rows.Add(\"DescCode\", errorResponse.DescCode);\n    ResultGrid.Visible = true;\n    StatusLabel.Visible = true;\n    ResultGrid.DataSource = new DataView(dtError);\n    ResultGrid.DataBind();\n}<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong>Address Detective International Java Rest Code Snippet<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"java\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/We'll pull these values from the input form\nString Address1 = request.getParameter(\"address1\");\nString Address2 = request.getParameter(\"address2\");\nString Address3 = request.getParameter(\"address3\");\nString Address4 = request.getParameter(\"address4\");\nString Address5 = request.getParameter(\"address5\");\nString Address6 = request.getParameter(\"address6\");\nString Address7 = request.getParameter(\"address7\");\nString Address8 = request.getParameter(\"address8\");\nString Locality = request.getParameter(\"locality\");\nString AdminArea = request.getParameter(\"adminarea\");\nString PostalCode = request.getParameter(\"postalcode\");\nString Phone1 = request.getParameter(\"phone1\");\nString Phone2 = request.getParameter(\"phone2\");\nString Phone3 = request.getParameter(\"phone3\");\nString Email = request.getParameter(\"email\");\nString IPAddress = request.getParameter(\"ipaddress\");\nString Domain = request.getParameter(\"domain\");\nString LicenseKey = request.getParameter(\"licensekey\");\n \nAddress1 = URLEncoder.encode(Address1,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress2 = URLEncoder.encode(Address2,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress3 = URLEncoder.encode(Address3,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress4 = URLEncoder.encode(Address4,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress5 = URLEncoder.encode(Address5,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress6 = URLEncoder.encode(Address6,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress7 = URLEncoder.encode(Address7,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAddress8 = URLEncoder.encode(Address8,\"UTF-8\").replaceAll(\"+\", \"%20\");\nLocality = URLEncoder.encode(Locality,\"UTF-8\").replaceAll(\"+\", \"%20\");\nAdminArea = URLEncoder.encode(AdminArea,\"UTF-8\").replaceAll(\"+\", \"%20\");\nPostalCode = URLEncoder.encode(PostalCode,\"UTF-8\").replaceAll(\"+\", \"%20\");\nPhone1 = URLEncoder.encode(Phone1,\"UTF-8\").replaceAll(\"+\", \"%20\");\nPhone2 = URLEncoder.encode(Phone2,\"UTF-8\").replaceAll(\"+\", \"%20\");\nPhone3 = URLEncoder.encode(Phone3,\"UTF-8\").replaceAll(\"+\", \"%20\");\nEmail = URLEncoder.encode(Email,\"UTF-8\").replaceAll(\"+\", \"%20\");\nIPAddress = URLEncoder.encode(IPAddress,\"UTF-8\").replaceAll(\"+\", \"%20\");\nDomain = URLEncoder.encode(Domain,\"UTF-8\").replaceAll(\"+\", \"%20\");\nLicenseKey = URLEncoder.encode(LicenseKey,\"UTF-8\").replaceAll(\"+\", \"%20\");\n \n\/\/Set the primary and backup URLs as necessary. In production, the primary endpoint should be pointed to sws.serviceobjects.com and the backup should be pointed to swsbackup.serviceobjects.com\nString mainUrl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/XML\/FindBestCountry?CompanyName=\" + CompanyName + \"&amp;FullName=\" + FullName+ \"&amp;FirstName=\" + FirstName + \"&amp;LastName=\" + LastName + \"&amp;Address1=\" + Address1 + \"&amp;Address2=\" + Address2 + \"&amp;Address3=\" + Address3 + \"&amp;Address4=\" + Address4 + \"&amp;Address5=\" + Address5 + \"&amp;Address6=\" + Address6 + \"&amp;Address7=\" + Address7 + \"&amp;Address8=\" + Address8 + \"&amp;Locality=\" + Locality + \"&amp;AdminArea=\" + AdminArea + \"&amp;PostalCode=\" +PostalCode + \"&amp;Phone1=\" + Phone1 + \"&amp;Phone2=\" + Phone2 + \"&amp;Phone3=\" + Phone3 +\"&amp;Email=\" + Email + \"&amp;IPAddress=\" + IPAddress + \"&amp;Domain=\" + Domain + \"&amp;LicenseKey=\" + LicenseKey;\nString backupUrl = \"https:\/\/trial.serviceobjects.com\/\/adi\/api.svc\/XML\/FindBestCountry?CompanyName=\" + CompanyName + \"&amp;FullName=\" + FullName+ \"&amp;FirstName=\" + FirstName + \"&amp;LastName=\" + LastName + \"&amp;Address1=\" + Address1 + \"&amp;Address2=\" + Address2 + \"&amp;Address3=\" + Address3 + \"&amp;Address4=\" + Address4 + \"&amp;Address5=\" + Address5 + \"&amp;Address6=\" + Address6 + \"&amp;Address7=\" + Address7 + \"&amp;Address8=\" + Address8 + \"&amp;Locality=\" + Locality + \"&amp;AdminArea=\" + AdminArea + \"&amp;PostalCode=\" +PostalCode + \"&amp;Phone1=\" + Phone1 + \"&amp;Phone2=\" + Phone2 + \"&amp;Phone3=\" + Phone3 +\"&amp;Email=\" + Email + \"&amp;IPAddress=\" + IPAddress + \"&amp;Domain=\" + Domain + \"&amp;LicenseKey=\" + LicenseKey;\n \nADIRest adirestClient = new ADIRest();\nJSONObject results = new JSONObject();\n \nresults = adirestClient.AddressResponse(mainUrl, backupUrl);\nif (results.getJSONObject(\"CountryDetectionResponse\").has(\"Error\") )\n{\nJSONObject errorResponse = results.getJSONObject(\"CountryDetectionResponse\").getJSONObject(\"Error\") ;\nstring Type = errorResponse.get(\"Type\");\n.\n.\n.\n}else{\nJSONObject validresponse = results.getJSONObject(\"CountryDetectionResponse\").getJSONObject(\"CountryDetection\");\nstring status = validresponse.get(\"Status\");\n.\n.\n.\nstring totalScore = validresponse.get(\"TotalScore\");\n}<\/pre>\n<\/div>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":2747,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6212","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ADI - REST<\/title>\n<meta name=\"description\" content=\"C#Java Address Detective International C# Rest Code Snippet string primaryurl = &quot;https:\/\/trial.serviceobjects.com\/adi\/api.svc\/&quot; + format +\" \/>\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=\"ADI - REST\" \/>\n<meta property=\"og:description\" content=\"C#Java Address Detective International C# Rest Code Snippet string primaryurl = &quot;https:\/\/trial.serviceobjects.com\/adi\/api.svc\/&quot; + format +\" \/>\n<meta property=\"og:url\" content=\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/\" \/>\n<meta property=\"og:site_name\" content=\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-29T15:49:02+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/\",\"name\":\"ADI - REST\",\"isPartOf\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#website\"},\"datePublished\":\"2022-11-15T23:07:36+00:00\",\"dateModified\":\"2024-03-29T15:49:02+00:00\",\"description\":\"C#Java Address Detective International C# Rest Code Snippet string primaryurl = \\\"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\\\" + format +\",\"breadcrumb\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DOTS Address Detective &#8211; International\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ADI &#8211; Code Snippets and Sample Code\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"ADI &#8211; REST\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#website\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/\",\"name\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/test.serviceobjects.com\/docs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#organization\",\"name\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png\",\"contentUrl\":\"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png\",\"width\":2560,\"height\":1440,\"caption\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\"},\"image\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ADI - REST","description":"C#Java Address Detective International C# Rest Code Snippet string primaryurl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\" + format +","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":"ADI - REST","og_description":"C#Java Address Detective International C# Rest Code Snippet string primaryurl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\" + format +","og_url":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/","og_site_name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","article_modified_time":"2024-03-29T15:49:02+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/","url":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/","name":"ADI - REST","isPartOf":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#website"},"datePublished":"2022-11-15T23:07:36+00:00","dateModified":"2024-03-29T15:49:02+00:00","description":"C#Java Address Detective International C# Rest Code Snippet string primaryurl = \"https:\/\/trial.serviceobjects.com\/adi\/api.svc\/\" + format +","breadcrumb":{"@id":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-rest\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/test.serviceobjects.com\/docs\/"},{"@type":"ListItem","position":2,"name":"DOTS Address Detective &#8211; International","item":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/"},{"@type":"ListItem","position":3,"name":"ADI &#8211; Code Snippets and Sample Code","item":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/"},{"@type":"ListItem","position":4,"name":"ADI &#8211; REST"}]},{"@type":"WebSite","@id":"https:\/\/test.serviceobjects.com\/docs\/#website","url":"https:\/\/test.serviceobjects.com\/docs\/","name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","description":"","publisher":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/test.serviceobjects.com\/docs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/test.serviceobjects.com\/docs\/#organization","name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","url":"https:\/\/test.serviceobjects.com\/docs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/","url":"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png","contentUrl":"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png","width":2560,"height":1440,"caption":"Service Objects | Contact, Phone, Email Verification | Data Quality Services"},"image":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/6212","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/comments?post=6212"}],"version-history":[{"count":7,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/6212\/revisions"}],"predecessor-version":[{"id":10018,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/6212\/revisions\/10018"}],"up":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/2747"}],"wp:attachment":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/media?parent=6212"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}