{"id":6214,"date":"2022-11-15T23:08:11","date_gmt":"2022-11-15T23:08:11","guid":{"rendered":"https:\/\/serviceobjects.wpaladdin.com\/dots-address-validation-us-3-2\/adi-code-snippets-and-sample-code\/adi-soap\/"},"modified":"2024-03-29T09:04:54","modified_gmt":"2024-03-29T16:04:54","slug":"adi-soap","status":"publish","type":"page","link":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/","title":{"rendered":"ADI &#8211; SOAP"},"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# 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=\"\">public partial class ADI_Form : System.Web.UI.Page\n   {\n       const string TrialURL = \"https:\/\/trial.serviceobjects.com\/adi\/soap.svc\";\n       \/\/ A trial license key is not compatible with the backup datacenter.\n       \/\/ The backup url is provided with a production license key.\n       const string BackupURL = \"https:\/\/trial.serviceobjects.com\/adi\/soap.svc\";\n       protected void Page_Load(object sender, EventArgs e)\n       {\n           ErrorLabel.Visible = false;\n       }\n       protected void btn_Validate_Click(object sender, EventArgs e)\n       {\n           try\n           {\n               ADI.ResponseObject response = FindBestCountry();\n               PrintResponse(response);\n           }\n           catch (Exception ex)\n           {\n               ErrorLabel.Visible = true;\n               ErrorLabel.Text = ex.Message;\n           }\n       }\n       protected ADI.ResponseObject FindBestCountry()\n       {\n           ADI.ResponseObject Response = null;\n  \n           try\n           {\n               using (ADI.SOAPClient Client = new ADI.SOAPClient())\n               {\n                   \/\/ Implement Failover logic here\n                   try\n                   {\n                       Response = Client.FindBestCountry(\"\", \"\", \"\", \"\",\n                                                         inputAddress1.Text,\n                                                         inputAddress2.Text,\n                                                         inputAddress3.Text,\n                                                         inputAddress4.Text,\n                                                         inputAddress5.Text,\n                                                         inputAddress6.Text,\n                                                         inputAddress7.Text,\n                                                         inputAddress8.Text,\n                                                         inputLocality.Text,\n                                                         inputAdminArea.Text,\n                                                         inputPostalCode.Text,\n                                                         inputPhoneNumber.Text,\n                                                         inputPhoneNumber2.Text,\n                                                         inputPhoneNumber3.Text,\n                                                         inputEmail.Text,\n                                                         inputIPAddress.Text,\n                                                         inputDomain.Text,\n                                                         inputLicenseKey.Text);\n                   }\n                   catch (WebException)\n                   {\n                       Client.Endpoint.Address = new System.ServiceModel.EndpointAddress(BackupURL);\n                       Response = Client.FindBestCountry(\"\", \"\", \"\", \"\",\n                                                         inputAddress1.Text,\n                                                         inputAddress2.Text,\n                                                         inputAddress3.Text,\n                                                         inputAddress4.Text,\n                                                         inputAddress5.Text,\n                                                         inputAddress6.Text,\n                                                         inputAddress7.Text,\n                                                         inputAddress8.Text,\n                                                         inputLocality.Text,\n                                                         inputAdminArea.Text,\n                                                         inputPostalCode.Text,\n                                                         inputPhoneNumber.Text,\n                                                         inputPhoneNumber2.Text,\n                                                         inputPhoneNumber3.Text,\n                                                         inputEmail.Text,\n                                                         inputIPAddress.Text,\n                                                         inputDomain.Text,\n                                                         inputLicenseKey.Text);\n                   }\n                   catch (CommunicationException)\n                   {\n                       Client.Abort();\n                   }\n                   catch (TimeoutException)\n                   {\n                       Client.Abort();\n                   }\n                   catch (Exception)\n                   {\n                       Client.Abort();\n                   }\n               }\n           }\n           catch (Exception)\n           {\n               \/\/ throw;\n           }\n           return Response;\n       }\n       protected void PrintResponse(ADI.ResponseObject response)\n       {\n           DataTable dtProvider = new DataTable();\n           \/\/Proccess result\n           \/\/We just output it here but this would be a good place to save data\n           \/\/to a database or send an email etc.\n           dtProvider.Columns.Add(new DataColumn(\"Output\", typeof(string)));\n           dtProvider.Columns.Add(new DataColumn(\"Values\", typeof(string)));\n           if (response.ContainsKey(\"CountryDetectionResponse\"))\n           {\n               ADI.ResultObject ro = response[\"CountryDetectionResponse\"];\n               \/\/Loop throught he fields\n               \/*\n               foreach (string Key in ro[0].Keys)\n               {\n                   dtProvider.Rows.Add(Key, ro[0][Key]);\n               }\n               *\/\n                 \n               \/\/Or access the fields directly.\n               dtProvider.Rows.Add(\"Status\", ro[0].ContainsKey(\"Status\") ? ro[0][\"Status\"] : \"\");\n               dtProvider.Rows.Add(\"TotalScore\", ro[0].ContainsKey(\"TotalScore\") ? ro[0][\"TotalScore\"] : \"\");\n               dtProvider.Rows.Add(\"NotesDesc\", ro[0].ContainsKey(\"NotesDesc\") ? ro[0][\"NotesDesc\"] : \"\");\n               dtProvider.Rows.Add(\"Best_CountryName\", ro[0].ContainsKey(\"Best_CountryName\") ? ro[0][\"Best_CountryName\"] : \"\");\n               dtProvider.Rows.Add(\"Best_CountryISO2\", ro[0].ContainsKey(\"Best_CountryISO2\") ? ro[0][\"Best_CountryISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Best_CountryISO3\", ro[0].ContainsKey(\"Best_CountryISO3\") ? ro[0][\"Best_CountryISO3\"] : \"\");\n               dtProvider.Rows.Add(\"Address_Score\", ro[0].ContainsKey(\"Address_Score\") ? ro[0][\"Address_Score\"] : \"\");\n               dtProvider.Rows.Add(\"Address_CountryName\", ro[0].ContainsKey(\"Address_CountryName\") ? ro[0][\"Address_CountryName\"] : \"\");\n               dtProvider.Rows.Add(\"Address_CountryISO2\", ro[0].ContainsKey(\"Address_CountryISO2\") ? ro[0][\"Address_CountryISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Address_CountryISO3\", ro[0].ContainsKey(\"Address_CountryISO3\") ? ro[0][\"Address_CountryISO3\"] : \"\");\n               dtProvider.Rows.Add(\"Address_AllCountriesFoundISO2\", ro[0].ContainsKey(\"Address_AllCountriesFoundISO2\") ? ro[0][\"Address_AllCountriesFoundISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Phone1_Score\", ro[0].ContainsKey(\"Phone1_Score\") ? ro[0][\"Phone1_Score\"] : \"\");\n               dtProvider.Rows.Add(\"Phone1_CountryName\", ro[0].ContainsKey(\"Phone1_CountryName\") ? ro[0][\"Phone1_CountryName\"] : \"\");\n               dtProvider.Rows.Add(\"Phone1_CountryISO2\", ro[0].ContainsKey(\"Phone1_CountryISO2\") ? ro[0][\"Phone1_CountryISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Phone1_CountryISO3\", ro[0].ContainsKey(\"Phone1_CountryISO3\") ? ro[0][\"Phone1_CountryISO3\"] : \"\");\n               dtProvider.Rows.Add(\"Phone1_AllCountriesFoundISO2\", ro[0].ContainsKey(\"Phone1_AllCountriesFoundISO2\") ? ro[0][\"Phone1_AllCountriesFoundISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Email_Score\", ro[0].ContainsKey(\"Email_Score\") ? ro[0][\"Email_Score\"] : \"\");\n               dtProvider.Rows.Add(\"Email_CountryISO2\", ro[0].ContainsKey(\"Email_CountryISO2\") ? ro[0][\"Email_CountryISO2\"] : \"\");\n               dtProvider.Rows.Add(\"Email_CountryISO3\", ro[0].ContainsKey(\"Email_CountryISO3\") ? ro[0][\"Email_CountryISO3\"] : \"\");\n               dtProvider.Rows.Add(\"Email_AllCountriesFoundISO2\", ro[0].ContainsKey(\"Status\") ? ro[0][\"Email_AllCountriesFoundISO2\"] : \"\");\n           }\n           else\n           {\n               if (response.ContainsKey(\"Error\"))\n               {\n                   ADI.ResultObject roError = response[\"Error\"];\n                   \/\/Loop throught he fields\n                   \/*\n                   foreach (string Key in roError[0].Keys)\n                   {\n                       dtProvider.Rows.Add(Key, roError[0][Key]);\n                   }\n                   *\/\n                   \/\/Or access the fields directly.\n                   dtProvider.Rows.Add(\"Type\", roError[0].ContainsKey(\"Type\") ? roError[0][\"Type\"] : \"\");\n                   dtProvider.Rows.Add(\"TypeCode\", roError[0].ContainsKey(\"TypeCode\") ? roError[0][\"TypeCode\"] : \"\");\n                   dtProvider.Rows.Add(\"Desc   \", roError[0].ContainsKey(\"Desc \") ? roError[0][\"Desc   \"] : \"\");\n                   dtProvider.Rows.Add(\"DescCode\", roError[0].ContainsKey(\"DescCode\") ? roError[0][\"DescCode\"] : \"\");\n               }\n           }\n           ResultGrid.DataSource = new DataView(dtProvider);\n           ResultGrid.DataBind();\n       }\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 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=\"\">String CompanyName = request.getParameter(\"CompanyName\");\nString FullName = request.getParameter(\"FullName\");\nString FirstName = request.getParameter(\"FirstName\");\nString LastName = request.getParameter(\"LastName\");\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\");\nCompanyName = URLEncoder.encode(CompanyName, \"UTF-8\").replaceAll(\"+\", \"%20\");\nFullName = URLEncoder.encode(FullName, \"UTF-8\").replaceAll(\"+\", \"%20\");\nFirstName = URLEncoder.encode(FirstName, \"UTF-8\").replaceAll(\"+\", \"%20\");\nLastName = URLEncoder.encode(LastName, \"UTF-8\").replaceAll(\"+\", \"%20\");\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  \nSOAP soap = new SOAP();\nISOAP client = soap.getDOTSAddressDetectiveInternational();\nResponseObject addressDetectiveInternational = client.findBestCountry(CompanyName, FullName, FirstName, LastName, Address1, Address2, Address3, Address4, Address5, Address6, Address7, Address8, Locality, AdminArea, PostalCode, Phone1, Phone2, Phone3, Email, IPAddress, Domain, LicenseKey);\nList&lt;Response> responses = addressDetectiveInternational.getResponse();\n \n\/\/Loop through response and fields to find the specific you are targeting.\n\/\/A helper method couldb ecreated and used to make this part look nicer but\n\/\/essentially it would be doing the same thing so we leave it to you to\n\/\/make that decision.\nfor(Response res : responses){\n    ResultObject resList = res.getValue();\n    String resultKey = res.getKey();\n    List&lt;FieldObject> results = resList.getResult();\n    for(FieldObject result : results){\n        List&lt;Field> fields = result.getField();\n        for(FieldObject.Field kvp : fields){\n            String key = kvp.getKey();\n            String value = kvp.getValue();\n        }\n    }\n}<\/pre>\n<\/div>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":2747,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6214","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 - SOAP<\/title>\n<meta name=\"description\" content=\"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =\" \/>\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 - SOAP\" \/>\n<meta property=\"og:description\" content=\"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =\" \/>\n<meta property=\"og:url\" content=\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/\" \/>\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-29T16:04:54+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-soap\/\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/\",\"name\":\"ADI - SOAP\",\"isPartOf\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#website\"},\"datePublished\":\"2022-11-15T23:08:11+00:00\",\"dateModified\":\"2024-03-29T16:04:54+00:00\",\"description\":\"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =\",\"breadcrumb\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/#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; SOAP\"}]},{\"@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 - SOAP","description":"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =","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 - SOAP","og_description":"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =","og_url":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/","og_site_name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","article_modified_time":"2024-03-29T16:04:54+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-soap\/","url":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/","name":"ADI - SOAP","isPartOf":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#website"},"datePublished":"2022-11-15T23:08:11+00:00","dateModified":"2024-03-29T16:04:54+00:00","description":"C#Java Address Detective International C# Code Snippet public partial class ADI_Form : System.Web.UI.Page { const string TrialURL =","breadcrumb":{"@id":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/test.serviceobjects.com\/docs\/dots-address-detective-international\/adi-code-snippets-and-sample-code\/adi-soap\/#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; SOAP"}]},{"@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\/6214","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=6214"}],"version-history":[{"count":6,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/6214\/revisions"}],"predecessor-version":[{"id":9952,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/6214\/revisions\/9952"}],"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=6214"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}