{"id":43525,"date":"2026-03-23T08:33:00","date_gmt":"2026-03-23T07:33:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=43525"},"modified":"2026-03-23T08:48:13","modified_gmt":"2026-03-23T07:48:13","slug":"creating-path-connections-with-goldengate-rest-api","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/","title":{"rendered":"Creating Path Connections with GoldenGate REST API"},"content":{"rendered":"\n<p>When automating your GoldenGate deployment management, you might want to <strong>create path connections with the GoldenGate REST API<\/strong>. This is an important aspect when <strong>connecting GoldenGate deployments<\/strong> with distribution paths. A first step towards this is to create a path connection on the same deployment as the distribution server where the distribution path will run.<\/p>\n\n\n\n<p>In the GoldenGate web UI, you can easily create <strong>Path Connections<\/strong>. Just go to the <strong><em>Path Connections<\/em><\/strong> tab, add a path, and specify the following information:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><em>Credential Alias<\/em><\/strong>: Alias used to connect to the target deployment. It doesn&#8217;t have to match any name on the target deployment.<\/li>\n\n\n\n<li><strong><em>User ID<\/em><\/strong>: Real username that must exist on the target deployment.<\/li>\n\n\n\n<li><strong><em>Password<\/em><\/strong>: Password associated with the User ID given before.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"393\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png\" alt=\"\" class=\"wp-image-43527\" style=\"width:600px\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-300x115.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-768x295.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png 1464w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-restapi-log-analysis\"><code>restapi.log<\/code> analysis<\/h2>\n\n\n\n<p>But what about the REST API ? When looking at the <a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/rest-endpoints.html\" target=\"_blank\" rel=\"noreferrer noopener\">list of endpoints<\/a> given by Oracle, no REST endpoint explicitly refers to <em>path connections<\/em>, so <strong>how to create path connections through the REST API<\/strong> ?<\/p>\n\n\n\n<p>The key point to understand is that <strong>path connections are not independent GoldenGate objects<\/strong>. In fact, they exist as a subset of another object, which you should know by now : aliases. <strong>Aliases<\/strong> are created to <strong>store credentials<\/strong> and are <strong>organized in domains<\/strong>. The default domain is called <code>OracleGoldenGate<\/code>, and Oracle has a reserved name for a subtype of domains : <code>Network<\/code>.<\/p>\n\n\n\n<p>We can see this easily when creating a path connection through the web UI, and then looking at the <code>restapi.log<\/code> file. Open the log file located in the <code>var\/log<\/code> folder of your deployment, or read the <a href=\"https:\/\/www.dbi-services.com\/blog\/querying-goldengate-rest-api-log-efficiently\/\" target=\"_blank\" rel=\"noreferrer noopener\">blog I wrote<\/a> about <code>restapi.log<\/code> analysis. Using this method, we see the endpoint and the content of the API call. Here, for instance, I created a path connection from the web UI, to connect to <code>ogg_user<\/code> with the <code>ogg_target<\/code> alias.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>oracle@vmogg: jq -c 'select (.request.context.verb == \"POST\" and .request.context.uriTemplate == \"\/services\/{version}\/credentials\/{domain}\/{alias}\")' restapi.ndjson\n\n{\"request\":{\"context\":{\"verb\":\"POST\",\"uri\":\"\/services\/v2\/credentials\/Network\/ogg_target\",\"uriTemplate\":\"\/services\/{version}\/credentials\/{domain}\/{alias}\"}},\"content\":{\"userid\":\"ogg_user\",\"password\":\"** Masked **\"},...}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-path-connection-creation-with-the-rest-api\">Path connection creation with the REST API<\/h2>\n\n\n\n<p>To summarize, <strong>path connections are just aliases in the <code>Network<\/code> domain<\/strong>. This simplifies the <strong>creation of path connections<\/strong>. You just need to make a <code>POST<\/code> <strong>API call to the alias endpoint<\/strong>, specifying <code>Network<\/code> as the domain. The exact endpoint is then <code>\/services\/{version}\/credentials\/Network\/{alias}<\/code>.<\/p>\n\n\n\n<p>Quick example: using the <a href=\"https:\/\/www.dbi-services.com\/blog\/production-ready-goldengate-rest-client-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">GoldenGate Python client<\/a> I presented in another blog, let&#8217;s create an alias in the <code>Network<\/code> domain :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt;&gt;&gt; from oggrestapi import OGGRestAPI\n\n&gt;&gt;&gt; ogg_client = OGGRestAPI(\n&nbsp;&nbsp;&nbsp; url=\"https:\/\/vmogg\",\n&nbsp;&nbsp;&nbsp; username=\"ogg\",\n&nbsp;&nbsp;&nbsp; password=\"ogg\")\nConnected to OGG REST API at https:\/\/vmogg\n\n&gt;&gt;&gt; ogg_client.create_alias(\n    alias='ogg_dbi_blog',\n    domain='Network',\n    data={\n&nbsp;&nbsp;&nbsp;&nbsp;    \"userid\": \"ogg_user_on_target\",\n&nbsp;&nbsp;&nbsp;&nbsp;    \"password\": \"***\"\n    }\n)\n{'$schema': 'api:standardResponse', 'links': &#091;{'rel': 'canonical', 'href': 'https:\/\/vmogg\/services\/v2\/credentials\/Network\/ogg_dbi_blog', 'mediaType': 'application\/json'}, {'rel': 'self', 'href': 'https:\/\/vmogg\/services\/v2\/credentials\/Network\/ogg_dbi_blog', 'mediaType': 'application\/json'}], 'messages': &#091;{'$schema': 'ogg:message', 'title': 'Credential store altered.', 'code': 'OGG-15114', 'severity': 'INFO', 'issued': '2026-03-22T10:14:01Z', 'type': 'https:\/\/docs.oracle.com\/en\/middleware\/goldengate\/core\/23.26\/error-messages\/'}]}<\/code><\/pre>\n\n\n\n<p>After refreshing the web UI, the newly created path connection is visible.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"641\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections-1-1024x641.png\" alt=\"\" class=\"wp-image-43528\" style=\"width:500px\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections-1-1024x641.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections-1-300x188.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections-1-768x481.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections-1.png 1042w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>When automating your GoldenGate deployment management, you might want to create path connections with the GoldenGate REST API. This is an important aspect when connecting GoldenGate deployments with distribution paths. A first step towards this is to create a path connection on the same deployment as the distribution server where the distribution path will run. [&hellip;]<\/p>\n","protected":false},"author":152,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[3787,59],"tags":[3833,979,3831,328,3730,3920,1089,1521,3767],"type_dbi":[3834,3801,3832,3740,3881,3921,3768,3800,3769],"class_list":["post-43525","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-alias","tag-api","tag-connection","tag-goldengate","tag-ogg","tag-path","tag-python","tag-rest","tag-restapi","type-alias","type-api","type-connection","type-goldengate","type-ogg","type-path","type-python","type-rest","type-restapi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Creating Path Connections with GoldenGate REST API - dbi Blog<\/title>\n<meta name=\"description\" content=\"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?\" \/>\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.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating Path Connections with GoldenGate REST API\" \/>\n<meta property=\"og:description\" content=\"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-23T07:33:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-23T07:48:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1464\" \/>\n\t<meta property=\"og:image:height\" content=\"562\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Julien Delattre\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Julien Delattre\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"Creating Path Connections with GoldenGate REST API\",\"datePublished\":\"2026-03-23T07:33:00+00:00\",\"dateModified\":\"2026-03-23T07:48:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\"},\"wordCount\":371,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png\",\"keywords\":[\"alias\",\"api\",\"connection\",\"GoldenGate\",\"ogg\",\"path\",\"Python\",\"rest\",\"restapi\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\",\"name\":\"Creating Path Connections with GoldenGate REST API - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png\",\"datePublished\":\"2026-03-23T07:33:00+00:00\",\"dateModified\":\"2026-03-23T07:48:13+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png\",\"width\":1464,\"height\":562},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating Path Connections with GoldenGate REST API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\",\"name\":\"Julien Delattre\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"caption\":\"Julien Delattre\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/juliendelattre\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Creating Path Connections with GoldenGate REST API - dbi Blog","description":"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?","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.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/","og_locale":"en_US","og_type":"article","og_title":"Creating Path Connections with GoldenGate REST API","og_description":"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?","og_url":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/","og_site_name":"dbi Blog","article_published_time":"2026-03-23T07:33:00+00:00","article_modified_time":"2026-03-23T07:48:13+00:00","og_image":[{"width":1464,"height":562,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png","type":"image\/png"}],"author":"Julien Delattre","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Julien Delattre","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"Creating Path Connections with GoldenGate REST API","datePublished":"2026-03-23T07:33:00+00:00","dateModified":"2026-03-23T07:48:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/"},"wordCount":371,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png","keywords":["alias","api","connection","GoldenGate","ogg","path","Python","rest","restapi"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/","url":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/","name":"Creating Path Connections with GoldenGate REST API - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation-1024x393.png","datePublished":"2026-03-23T07:33:00+00:00","dateModified":"2026-03-23T07:48:13+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"Creating a path connection in the web UI is very simple, but how to automate this creation in Python using the REST API ?","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/03\/ogg_blog_restapi_path_connections_creation.png","width":1464,"height":562},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/creating-path-connections-with-goldengate-rest-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Creating Path Connections with GoldenGate REST API"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e","name":"Julien Delattre","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","caption":"Julien Delattre"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/juliendelattre\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43525","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/152"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=43525"}],"version-history":[{"count":3,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43525\/revisions"}],"predecessor-version":[{"id":43532,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43525\/revisions\/43532"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=43525"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=43525"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=43525"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=43525"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}