{"id":42719,"date":"2026-02-09T08:53:00","date_gmt":"2026-02-09T07:53:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=42719"},"modified":"2026-01-28T21:54:40","modified_gmt":"2026-01-28T20:54:40","slug":"ogg-08116-when-creating-a-connection-with-goldengate-rest-api","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/","title":{"rendered":"OGG-08116 when creating a connection with GoldenGate REST API"},"content":{"rendered":"\n<p>When playing around with the GoldenGate REST API, you might have encountered the <code>OGG-08116<\/code> error. It happens when using the <em><strong>Create Connection<\/strong><\/em> REST API call, with the following endpoint given in the <a href=\"https:\/\/docs.oracle.com\/en\/middleware\/goldengate\/core\/26\/oggra\/rest-endpoints.html\" target=\"_blank\" rel=\"noreferrer noopener\">GoldenGate documentation<\/a>.<\/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=\"234\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png\" alt=\"Create Connection endpoint in GoldenGate documentation\" class=\"wp-image-42720\" style=\"width:578px;height:auto\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-300x69.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-768x175.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>The <code>OGG-08116<\/code> error is defined as such in the documentation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>OGG-08116: Connections with names of the form 'domain.alias' are read-only\n\nCause: Connections with names of the form domain.alias are automatically created from credentials and are read-only.\n\nAction: Remove the period from the connection name<\/code><\/pre>\n\n\n\n<p>So what is the problem exactly ? When navigating through the GoldenGate deployment&#8217;s web UI, you create a connection in the <em><strong>DB Connections<\/strong><\/em> tab (see below). However, the <em><strong>Create connection<\/strong><\/em> API endpoint doesn&#8217;t serve the same purpose !<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"606\" height=\"240\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-36.png\" alt=\"DB Connections panel in GoldenGate web UI\" class=\"wp-image-42721\" style=\"aspect-ratio:2.525028357252059;width:524px;height:auto\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-36.png 606w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-36-300x119.png 300w\" sizes=\"auto, (max-width: 606px) 100vw, 606px\" \/><\/figure>\n<\/div>\n\n\n<p>The correct endpoint you should use to create a GoldenGate connection is actually named <em><strong>Create Alias<\/strong><\/em>.<\/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=\"206\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_endpoint_doc-1024x206.png\" alt=\"Create alias endpoint in GoldenGate documentation\" class=\"wp-image-42725\" style=\"width:598px;height:auto\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_endpoint_doc-1024x206.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_endpoint_doc-300x60.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_endpoint_doc-768x155.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_endpoint_doc.png 1092w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>And with this one, everything works fine ! I give below a working example of a <strong>Python script to create a connection\/alias with the GoldenGate REST API<\/strong>. If you want to learn more about building GoldenGate API calls with Python, I wrote a <a href=\"https:\/\/www.dbi-services.com\/blog\/goldengate-rest-api-basics-with-python\/\">blog<\/a> on the topic.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import requests\n\nalias = \"cdb01\"\ndomain = \"OracleGoldenGate\"\nurl = f\"http:\/\/vmogg:7810\/services\/v2\/credentials\/{domain}\/{alias}\"\nauth = (\"ogg_user\", \"ogg_password\")\ndata = {\n    \"userid\": \"c##oggadmin@vmora:1521\/CDB01\",\n\u00a0\u00a0\u00a0 \"password\": \"your_password\"\n}\n\nresult = requests.post(url, auth=auth, json=data)<\/code><\/pre>\n\n\n\n<p>Running the requests command and checking in the web UI, we can see the newly created alias.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt;&gt;&gt; result.ok\nTrue\n&gt;&gt;&gt; result.json()\n{'$schema': 'api:standardResponse', 'links': &#091;{'rel': 'canonical', 'href': 'https:\/\/vmogg:7810\/services\/v2\/credentials\/OracleGoldenGate\/cdb01', 'mediaType': 'application\/json'}, {'rel': 'self', 'href': 'https:\/\/vmogg:7810\/services\/v2\/credentials\/OracleGoldenGate\/cdb01', 'mediaType': 'application\/json'}], 'messages': &#091;{'$schema': 'ogg:message', 'title': 'Credential store altered.', 'code': 'OGG-15114', 'severity': 'INFO', 'issued': '2026-01-28T20:41:56Z', 'type': 'https:\/\/docs.oracle.com\/en\/middleware\/goldengate\/core\/23.26\/error-messages\/'}]}<\/code><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"181\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_restapi-1024x181.png\" alt=\"Connection created in the Web UI\" class=\"wp-image-42728\" style=\"aspect-ratio:5.657756261839613;width:702px;height:auto\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_restapi-1024x181.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_restapi-300x53.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_restapi-768x135.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/ogg_blog_create_alias_restapi.png 1282w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>Keep in mind that the Create Connection endpoint is read-only, and should never be used !<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When playing around with the GoldenGate REST API, you might have encountered the OGG-08116 error. It happens when using the Create Connection REST API call, with the following endpoint given in the GoldenGate documentation. The OGG-08116 error is defined as such in the documentation: So what is the problem exactly ? When navigating through the [&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,3829,1521,3767],"type_dbi":[3834,3801,3832,3740,3830,3800,3769],"class_list":["post-42719","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-alias","tag-api","tag-connection","tag-goldengate","tag-ogg-08116","tag-rest","tag-restapi","type-alias","type-api","type-connection","type-goldengate","type-ogg-08116","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>OGG-08116 when creating a connection with GoldenGate REST API - dbi Blog<\/title>\n<meta name=\"description\" content=\"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.\" \/>\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\/ogg-08116-when-creating-a-connection-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=\"OGG-08116 when creating a connection with GoldenGate REST API\" \/>\n<meta property=\"og:description\" content=\"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-09T07:53:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1068\" \/>\n\t<meta property=\"og:image:height\" content=\"244\" \/>\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\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"OGG-08116 when creating a connection with GoldenGate REST API\",\"datePublished\":\"2026-02-09T07:53:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\"},\"wordCount\":184,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png\",\"keywords\":[\"alias\",\"api\",\"connection\",\"GoldenGate\",\"ogg-08116\",\"rest\",\"restapi\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\",\"name\":\"OGG-08116 when creating a connection with GoldenGate REST API - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png\",\"datePublished\":\"2026-02-09T07:53:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png\",\"width\":1068,\"height\":244},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OGG-08116 when creating a connection 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":"OGG-08116 when creating a connection with GoldenGate REST API - dbi Blog","description":"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.","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\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/","og_locale":"en_US","og_type":"article","og_title":"OGG-08116 when creating a connection with GoldenGate REST API","og_description":"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.","og_url":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/","og_site_name":"dbi Blog","article_published_time":"2026-02-09T07:53:00+00:00","og_image":[{"width":1068,"height":244,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.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\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"OGG-08116 when creating a connection with GoldenGate REST API","datePublished":"2026-02-09T07:53:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/"},"wordCount":184,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png","keywords":["alias","api","connection","GoldenGate","ogg-08116","rest","restapi"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/","url":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/","name":"OGG-08116 when creating a connection with GoldenGate REST API - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37-1024x234.png","datePublished":"2026-02-09T07:53:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"OGG-08116 error is generated by GoldenGate RESTAPI when using a read-only endpoint instead of the create alias designated endpoint.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/image-37.png","width":1068,"height":244},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/ogg-08116-when-creating-a-connection-with-goldengate-rest-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OGG-08116 when creating a connection 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\/42719","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=42719"}],"version-history":[{"count":9,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/42719\/revisions"}],"predecessor-version":[{"id":42894,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/42719\/revisions\/42894"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=42719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=42719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=42719"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=42719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}