{"id":44091,"date":"2026-04-28T08:38:00","date_gmt":"2026-04-28T06:38:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=44091"},"modified":"2026-04-27T20:40:54","modified_gmt":"2026-04-27T18:40:54","slug":"delete-a-goldengate-deployment-when-the-password-is-lost","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/","title":{"rendered":"Delete a GoldenGate deployment when the password is lost"},"content":{"rendered":"\n<p>Recently, I was asked how to recreate a GoldenGate deployment if the password for the <code>Security<\/code> user (the first user created with the deployment) was lost. This is an interesting question that I figured was worth writing about.<\/p>\n\n\n\n<p>As a reminder, you have two main ways of creating and deleting deployments in GoldenGate:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using the configuration assistant <code>oggca.sh<\/code><\/li>\n\n\n\n<li>Using the REST API and its deployment endpoints<\/li>\n<\/ul>\n\n\n\n<p>I already covered the creation and removal of deployments with the configuration assistant in a <a href=\"https:\/\/www.dbi-services.com\/blog\/goldengate-23ai-installation-graphic-and-silent-mode-comparison-for-automation\/\" target=\"_blank\" rel=\"noreferrer noopener\">previous blog<\/a>. I also wrote about <a href=\"https:\/\/www.dbi-services.com\/blog\/create-a-new-goldengate-deployment-with-the-rest-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">deployment creation with the REST API<\/a>, but not yet about deletion.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-deleting-the-deployment-from-oggca-sh-won-t-work\">Deleting the deployment from <code>oggca.sh<\/code> won&#8217;t work<\/h2>\n\n\n\n<p>From the GoldenGate Configuration Assistant (<code>oggca.sh<\/code> script), deleting a deployment is straightforward, but as shown below, you will be asked to input <strong>not only the Service Manager credentials, but also the deployment credentials<\/strong> !<\/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=\"739\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-1024x739.png\" alt=\"\" class=\"wp-image-44093\" style=\"width:800px\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-1024x739.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-300x217.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-768x555.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-1536x1109.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1.png 1590w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>This means that <code>oggca.sh<\/code> cannot be used for such a task.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-deleting-a-deployment-with-the-rest-api\">Deleting a deployment with the REST API<\/h2>\n\n\n\n<p>To overcome this issue, let&#8217;s list the steps taken by <code>oggca.sh<\/code> when deleting GoldenGate deployment:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Verify the deployment credentials<\/li>\n\n\n\n<li>Stop the deployment services<\/li>\n\n\n\n<li>Unregister the deployment in the Service Manager<\/li>\n<\/ul>\n\n\n\n<p>While asking for the deployment&#8217;s password might be relevant to avoid deleting the wrong deployment, you do not strictly need it. In fact, you can <strong>stop the deployment services from the Service Manager itself<\/strong>. To do so, use the <code><a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/op-services-version-deployments-deployment-patch.html\" target=\"_blank\" rel=\"noreferrer noopener\">update_deployment<\/a><\/code> endpoint (<code>PATCH \/services\/{version}\/deployments\/{deployment}<\/code>) to change the <code>status<\/code> of the deployment to <code>stopped<\/code>. Using the Python client I presented in <a href=\"https:\/\/www.dbi-services.com\/blog\/production-ready-goldengate-rest-client-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">another blog<\/a>, I will open a connection to the Service Manager and stop the deployment <code>ogg_test_01<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt;&gt;&gt; from oggrestapi import OGGRestAPI\n&gt;&gt;&gt; ogg_client = OGGRestAPI(url=\"http:\/\/vmogg:7809\", username=\"ogg\", password=\"***\")\n&gt;&gt;&gt; ogg_client.update_deployment('ogg_test_01', data={\"status\":\"stopped\"})\n{'$schema': 'api:standardResponse', 'links': &#091;{'rel': 'canonical', 'href': 'https:\/\/vmogg\/services\/ServiceManager\/v2\/deployments\/ogg_test_01', 'mediaType': 'application\/json'}, {'rel': 'self', 'href': 'https:\/\/vmogg\/services\/ServiceManager\/v2\/deployments\/ogg_test_01', 'mediaType': 'application\/json'}], 'messages': &#091;]}<\/code><\/pre>\n\n\n\n<p>Once this is done, you can unregister the deployment from the Service Manager with the <code><a href=\"https:\/\/docs.oracle.com\/en\/database\/goldengate\/core\/26\/oggra\/op-services-version-deployments-deployment-delete.html\" target=\"_blank\" rel=\"noreferrer noopener\">remove_deployment<\/a><\/code> endpoint (<code>DELETE \/services\/{version}\/deployments\/{deployment}<\/code>)<\/p>\n\n\n\n<p>And for this, we never needed the deployment password !<\/p>\n\n\n\n<p>To clean your installation, make sure to remove all files related to the old deployment. More specifically:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <code>deploymentConfiguration.dat<\/code> of your Service Manager was already edited, you do not need to clean it manually.<\/li>\n\n\n\n<li>You can delete or archive the deployment main directory.<\/li>\n\n\n\n<li>The <code>$OGG_SM_HOME\/var\/run<\/code> directory should be cleaned of the <code>.dat<\/code> files named after the deployment : <code>rm $OGG_SM_HOME\/var\/run\/ogg_test_01*<\/code><\/li>\n<\/ul>\n\n\n\n<p>That&#8217;s it. You have successfully deleted your deployment, and you can re-create it anytime you want. And this time, remember to store the password !<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, I was asked how to recreate a GoldenGate deployment if the password for the Security user (the first user created with the deployment) was lost. This is an interesting question that I figured was worth writing about. As a reminder, you have two main ways of creating and deleting deployments in GoldenGate: I already [&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":[979,808,769,328,4004,3730,997,3520,3767],"type_dbi":[3801,3941,3818,3740,4003,3881,4002,4001,3769],"class_list":["post-44091","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-api","tag-delete","tag-deployment","tag-goldengate","tag-lost","tag-ogg","tag-password","tag-remove","tag-restapi","type-api","type-delete","type-deployment","type-goldengate","type-lost","type-ogg","type-password","type-remove","type-restapi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Delete a GoldenGate deployment when the password is lost - dbi Blog<\/title>\n<meta name=\"description\" content=\"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.\" \/>\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\/delete-a-goldengate-deployment-when-the-password-is-lost\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Delete a GoldenGate deployment when the password is lost\" \/>\n<meta property=\"og:description\" content=\"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-28T06:38:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1590\" \/>\n\t<meta property=\"og:image:height\" content=\"1148\" \/>\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\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"Delete a GoldenGate deployment when the password is lost\",\"datePublished\":\"2026-04-28T06:38:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/\"},\"wordCount\":365,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/ogg_blog_deployment_removal_oggca-1-1024x739.png\",\"keywords\":[\"api\",\"delete\",\"Deployment\",\"GoldenGate\",\"lost\",\"ogg\",\"Password\",\"remove\",\"restapi\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/\",\"name\":\"Delete a GoldenGate deployment when the password is lost - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/ogg_blog_deployment_removal_oggca-1-1024x739.png\",\"datePublished\":\"2026-04-28T06:38:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/ogg_blog_deployment_removal_oggca-1.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/04\\\/ogg_blog_deployment_removal_oggca-1.png\",\"width\":1590,\"height\":1148},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/delete-a-goldengate-deployment-when-the-password-is-lost\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Delete a GoldenGate deployment when the password is lost\"}]},{\"@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":"Delete a GoldenGate deployment when the password is lost - dbi Blog","description":"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.","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\/delete-a-goldengate-deployment-when-the-password-is-lost\/","og_locale":"en_US","og_type":"article","og_title":"Delete a GoldenGate deployment when the password is lost","og_description":"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.","og_url":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/","og_site_name":"dbi Blog","article_published_time":"2026-04-28T06:38:00+00:00","og_image":[{"width":1590,"height":1148,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1.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\/delete-a-goldengate-deployment-when-the-password-is-lost\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"Delete a GoldenGate deployment when the password is lost","datePublished":"2026-04-28T06:38:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/"},"wordCount":365,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-1024x739.png","keywords":["api","delete","Deployment","GoldenGate","lost","ogg","Password","remove","restapi"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/","url":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/","name":"Delete a GoldenGate deployment when the password is lost - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1-1024x739.png","datePublished":"2026-04-28T06:38:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"If you lost the password of your GoldenGate deployment, you can still delete it without the configuration assistant.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/04\/ogg_blog_deployment_removal_oggca-1.png","width":1590,"height":1148},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/delete-a-goldengate-deployment-when-the-password-is-lost\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Delete a GoldenGate deployment when the password is lost"}]},{"@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\/44091","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=44091"}],"version-history":[{"count":2,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/44091\/revisions"}],"predecessor-version":[{"id":44096,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/44091\/revisions\/44096"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=44091"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=44091"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=44091"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=44091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}