{"id":43563,"date":"2026-03-26T08:38:00","date_gmt":"2026-03-26T07:38:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=43563"},"modified":"2026-03-26T13:52:55","modified_gmt":"2026-03-26T12:52:55","slug":"deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/","title":{"rendered":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS"},"content":{"rendered":"\n<p>Among all the automation I was doing around a GoldenGate installation for DB2, I recently ended up with an <code>INS-85037<\/code> error when running the configuration assistant <code>oggca.sh<\/code>. And because this error is quite common and has many different possible root causes, I wanted to write about it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-differences-in-goldengate-setup-between-oracle-and-db2\">Differences in GoldenGate setup between Oracle and DB2<\/h2>\n\n\n\n<p>If you&#8217;re wondering how to set up <strong>GoldenGate 26ai for DB2 z\/OS<\/strong>, it is <strong>very similar<\/strong> to what you would do with GoldenGate for Oracle. For more information on standard GoldenGate setups, you can read my blog posts about both <a href=\"https:\/\/www.dbi-services.com\/blog\/goldengate-26ai-installation-and-new-administration-features\/\">26ai<\/a> and <a href=\"https:\/\/www.dbi-services.com\/blog\/goldengate-23ai-installation-graphic-and-silent-mode-comparison-for-automation\/\">23ai<\/a> installations.<\/p>\n\n\n\n<p>For the binary installation, the main difference is that <code>INSTALL_OPTION<\/code> should be set to <code>DB2ZOS<\/code>. A complete <code>oggcore.rsp<\/code> response file would look like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>oracle.install.responseFileVersion=\/oracle\/install\/rspfmt_ogginstall_response_schema_v23_1_0\nINSTALL_OPTION=DB2ZOS\nSOFTWARE_LOCATION=\/u01\/app\/oracle\/product\/oggzos\nINVENTORY_LOCATION=\/u01\/app\/oraInventory\nUNIX_GROUP_NAME=oinstall<\/code><\/pre>\n\n\n\n<p>When running the configuration assistant, some options are not available, but the main difference is in the environment variables section of the response file. You should have an <code>IBMCLIDRIVER<\/code> variable set to your DB2 driver&#8217;s path.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ENV_LD_LIBRARY_PATH=${IBMCLIDRIVER}\/1ib:${OGG_HOME}\/1ib\nIBMCLIDRIVER=\/path\/to\/ibmclidriver\nENV_USER_VARS=<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-possible-solution-for-ins-85037\">Possible Solution for INS-85037<\/h2>\n\n\n\n<p>That being said, here is the exact error I had when running the Configuration Assistant <code>oggca.sh<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#091;FATAL] &#091;INS-85037] Deployment creation failed.\n\u00a0 ACTION: Check logs at \/u01\/app\/oraInventory\/logs\/OGGCAConfigActions2026-03-22_15-19-15PM for more information.\n*MORE DETAILS*\nReturn code 503 (Service Unavailable) does not match the expected code 201 (Created).\nVerification failed for REST call to 'http:\/\/127.0.0.1:7810\/services\/v2\/authorizations\/security\/ogguser'\nResults for \"Add a new deployment\":\n...\"Verifying Service Manager deployment status.\": SUCCEEDED\n...\"Adding 'zos_test' deployment.\": SUCCEEDED\n....\"Configuring and starting the Administration Service.\": SUCCEEDED\n...\"Verifying the initial Administration Service configuration.\": SUCCEEDED\n...\"Adding user 'ogguser' to administer the deployment.\": FAILED\nLog of this session available at: \/u01\/app\/oraInventory\/logs\/OGGCAConfigActions2026-03-22_15-19-15PM\nThe deployment creation failed and the associated files will be deleted from disk. Oracle recommends that if you want to keep the log files, you should move them to another location.\nLog files will be copied to:\n\/u01\/app\/oraInventory\/logs\/OGGCAConfigActions2026-03-22_15-19-15PM\/userdeploy_logs_2026-03-22_15-19-15PM\n&#091;WARNING] &#091;INS-32090] Software installation was unsuccessful.\nACTION: Refer to the log files for details or contact Oracle Support Services.<\/code><\/pre>\n\n\n\n<p>Unfortunately, the installation logs did not show anything other than the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SEVERE: Deployment creation job failed.\nINFO: Service Manager deployment that was created as part of the process needs to be removed.\nINFO: Running clean-up job for Service Manager.\nSEVERE: Removing Service Manager deployment.<\/code><\/pre>\n\n\n\n<p>The deployment and the service manager get deleted after the installation failure, but the logs are also copied to the <code>oraInventory<\/code> installation logs. Looking at the <code>ServiceManager.log<\/code> in the <code>smdeploy<\/code> folder, we don&#8217;t get much information.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ERROR| Configuration does not contain a 'config\/network' specification. (ServiceManager.Topology)<\/code><\/pre>\n\n\n\n<p>The same applies to the <code>restapi.log<\/code>, where the logs start after the initial deployment creation error. Unfortunately, none of this was really helpful in my case. After quite some digging, I found that the <strong>response file I was using<\/strong> when running <code>oggca.sh<\/code> had <strong>an error<\/strong>. In the custom section for environment variables, I had the following settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># SECTION G - ENVIRONMENT VARIABLES\nENY_LD_LIBRARY_PATH-S{IBMCLIDRIVER}\/1ib:${OGG_HOME}\/11b\nIBMCLIDRIVER=\/u01\/app\/ibm\/db2_odbc_cli_11_5\nENV_USER_VARS=<\/code><\/pre>\n\n\n\n<p>It looks like what I gave earlier, except that the path for the clidriver was incomplete.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>oracle@vmogg:\/home\/oracle\/ &#091;ogg] ls -l \/u01\/app\/ibm\/db2_odbc_cli_11_5\ndrwxr-xr-x 3 oracle oinstall 23 Mar 22 2026 odbc_cli\n\noracle@vmogg:\/home\/oracle\/ &#091;ogg] ls -l \/u01\/app\/ibm\/db2_odbc_cli_11_5\/odbc_cli\/clidriver\/\n-r-xr-xr-x 1 oracle oinstall 4170 Mar 17 2021 Readme.txt\ndrwxr-xr-x 2 oracle oinstall 36 Mar 22 2026 adm\ndrwxr-xr-x 2 oracle oinstall 122 Mar 22 2026 bin\ndrwxr-xr-x 2 oracle oinstall 197 Mar 22 2026 bnd\ndrwxr-xr-x 2 oracle oinstall 157 Mar 22 09:16 cfg\ndrwxr-xr-x 2 oracle oinstall 24 Mar 22 2026 cfecache\ndrwxr-xr-x 4 oracle oinstall 27 Mar 22 2026 conv\ndrwxr-xr-x 3 oracle oinstall 49 Mar 22 09:26 db2dump\ndrwxr-xr-x 3 oracle oinstall 217 Mar 22 2026 lib\ndrwxr-xr-x 3 oracle oinstall 124 Mar 22 09:26 license\ndrwxr-xr-x 3 oracle oinstall 28 Mar 22 2026 msg\ndrwxr-xr-x 3 oracle oinstall 21 Mar 22 2026 properties\ndrwxr-xr-x 3 oracle oinstall 20 Mar 22 2026 security32\ndrwxr-xr-x 3 oracle oinstall 20 Mar 22 2026 security64<\/code><\/pre>\n\n\n\n<p>After correcting the <code>oggca.rsp<\/code> response file with the correct path, the configuration assistant ran successfully.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>oracle@vmogg:\/u01\/app\/oracle\/product\/ogg26\/bin &#091;ogg] oggca.sh -silent -responseFile \/home\/oracle\/oggca.rsp\nSuccessfully Setup Software.<\/code><\/pre>\n\n\n\n<p>Next time you encounter an error like this when setting up GoldenGate for DB2, make sure to check not only the variable value but also the actual content of the <code>IBMCLIDRIVER<\/code> directory !<\/p>\n\n\n\n<p><em><strong>NB:<\/strong> If you had this error for any other kind of setup, make sure to always check all the content of the response file you are using, as well as the prerequisites. (CLIDRIVER in this case, but it could be XAG, etc.)<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Among all the automation I was doing around a GoldenGate installation for DB2, I recently ended up with an INS-85037 error when running the configuration assistant oggca.sh. And because this error is quite common and has many different possible root causes, I wanted to write about it. Differences in GoldenGate setup between Oracle and DB2 [&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":[3827,3927,56,769,328,57,3925,3730,3718,96,3923],"type_dbi":[3828,3928,3922,3818,3740,3929,3926,3881,3884,2728,3924],"class_list":["post-43563","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-3827","tag-clidriver","tag-db2","tag-deployment","tag-goldengate","tag-ibm","tag-ins-85037","tag-ogg","tag-oggca","tag-oracle","tag-zos","type-3828","type-clidriver","type-db2","type-deployment","type-goldengate","type-ibm","type-ins-85037","type-ogg","type-oggca","type-oracle","type-zos"],"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>Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS - dbi Blog<\/title>\n<meta name=\"description\" content=\"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2\" \/>\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\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS\" \/>\n<meta property=\"og:description\" content=\"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-26T07:38:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-26T12:52:55+00:00\" \/>\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\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS\",\"datePublished\":\"2026-03-26T07:38:00+00:00\",\"dateModified\":\"2026-03-26T12:52:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\"},\"wordCount\":390,\"commentCount\":0,\"keywords\":[\"26\",\"clidriver\",\"DB2\",\"Deployment\",\"GoldenGate\",\"IBM\",\"INS-85037\",\"ogg\",\"oggca\",\"Oracle\",\"zOS\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\",\"name\":\"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2026-03-26T07:38:00+00:00\",\"dateModified\":\"2026-03-26T12:52:55+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS\"}]},{\"@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":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS - dbi Blog","description":"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2","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\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/","og_locale":"en_US","og_type":"article","og_title":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS","og_description":"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2","og_url":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/","og_site_name":"dbi Blog","article_published_time":"2026-03-26T07:38:00+00:00","article_modified_time":"2026-03-26T12:52:55+00:00","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\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS","datePublished":"2026-03-26T07:38:00+00:00","dateModified":"2026-03-26T12:52:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/"},"wordCount":390,"commentCount":0,"keywords":["26","clidriver","DB2","Deployment","GoldenGate","IBM","INS-85037","ogg","oggca","Oracle","zOS"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/","url":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/","name":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2026-03-26T07:38:00+00:00","dateModified":"2026-03-26T12:52:55+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"How to solve INS-85037 when setting up GoldenGate ? The error is common to many installations, but here is a possible solution for DB2","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deployment Creation INS-85037 Error With GoldenGate 26ai for DB2 z\/OS"}]},{"@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\/43563","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=43563"}],"version-history":[{"count":5,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43563\/revisions"}],"predecessor-version":[{"id":43578,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/43563\/revisions\/43578"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=43563"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=43563"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=43563"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=43563"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}