{"id":651,"date":"2021-11-30T19:34:44","date_gmt":"2021-11-30T19:34:44","guid":{"rendered":"https:\/\/www.naveedulhaq.com\/?p=651"},"modified":"2021-11-30T19:36:54","modified_gmt":"2021-11-30T19:36:54","slug":"integrate-with-cj-dropshipping-api-using-asp-net-c","status":"publish","type":"post","link":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/","title":{"rendered":"Integrate with CJ Dropshipping API using ASP.NET C#"},"content":{"rendered":"\n<p>CJ dropshipping is one of the best dropshipping services available for eCommerce websites that run on a dropship model. One can use tools provided by CJ dropshipping to integrate with their Shopify, Magento or WooCommerce etc website. But there is always a gap for website build on ASP.NET C#. There is no utility or tool written for these websites. In addition to that, there is no inventory sync available.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"256\" src=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/cj-dropshipping.png\" loading=\"lazy\" alt=\"CJ dropshipping\" class=\"wp-image-653\" srcset=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/cj-dropshipping.png 640w, https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/cj-dropshipping-300x120.png 300w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/figure>\n\n\n\n<p>I have written a small program that let you connect with CJ dropshipping API and an open lot of possibilities. You can write a scheduled job to get products from API. you can manage inventory and pricing using this API and run your dropship website on true autopilot. <\/p>\n\n\n\n<p>So let&#8217;s get to the work.<\/p>\n\n\n\n<p>First of all, you need to go to CJ dropshipping account and create credentials for your API. Now add API access URL and Access token in the web.config<\/p>\n\n\n\n<pre><code>&lt;appSettings>\n\t\t&lt;add key=\"CjAccessUrl\" value=\"https:\/\/developers.cjdropshipping.com\/\"\/>\n\t\t&lt;add key=\"CjAccessToken\" value=\"your-access-token\"\/>\n\t&lt;\/appSettings><\/code><\/pre>\n\n\n\n<p>The next step is you need to create request and response objects.<\/p>\n\n\n\n<p>I have created a request object that takes SKU and my response object gives me data results.<\/p>\n\n\n\n<p><strong>Request Object<\/strong><\/p>\n\n\n\n<pre ><code>public class CjRequestBody\n    {\n        public string sku { get; set; }\n    }<\/code><\/pre>\n\n\n\n<p><strong>Response Object<\/strong><\/p>\n\n\n\n<pre><code>public class CjResponse\n    {\n        public bool Result { get; set; }\n        public string Message { get; set; }\n        public List&lt;Data> Data { get; set; }\n    }\n    public class Data\n    {\n        public string Img { get; set; }\n        public string ProductId { get; set; }\n        public float ShortSku { get; set; }\n        public string Price { get; set; }\n        public double SellDiscount { get; set; }\n        public string ShopId { get; set; }\n        public string VariantId { get; set; }\n        public string Title { get; set; }\n        public string Sku { get; set; }\n    }\n<\/code><\/pre>\n\n\n\n<p>Now we have everything we need to do a simple call to CJ dropshipping API and get product information<\/p>\n\n\n\n<pre ><code>var cjShoppingClient = new RestClient(ConfigurationManager.AppSettings.Get(\"CjAccessUrl\"));\n            var cjShoppingSecret = ConfigurationManager.AppSettings.Get(\"CjAccessToken\");\n            var request = new RestRequest(\"api\/product\/connectList\", Method.POST);\n            request.AddHeader(\"Content-Type\", \"application\/json\");\n            request.AddHeader(\"CJ-Access-Token\", cjShoppingSecret);\n\n            var requestBody = new CjRequestBody\n            {\n                sku = \"CJYDQTJM01607-USB\"\n            };\n\n            request.AddJsonBody(JsonConvert.SerializeObject(requestBody));\n            var response = cjShoppingClient.Execute&lt;CjResponse&gt;(request);\n            if (response.Data != null)\n            {\n                \/\/Do something\n            }<\/code><\/pre>\n\n\n\n<p>You can see in the above code we use CJ Access Url and Access token and call api\/product\/connect list  API and get product information based on the given SKU.<\/p>\n\n\n\n<p>This code is available on <a href=\"https:\/\/github.com\/nulhaq\/CJ-Dropship-API\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Github<\/a>. Please feel free to download &amp; enhance it.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CJ dropshipping is one of the best dropshipping services available for eCommerce websites that run on a dropship model. One can use tools provided by&#8230;<\/p>\n","protected":false},"author":1,"featured_media":641,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[11,8,32,23,35],"class_list":["post-651","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dot-net-core","tag-dot-net-core","tag-dot-net-framework","tag-developer","tag-development","tag-small-business"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog<\/title>\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.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"og:description\" content=\"CJ dropshipping is one of the best dropshipping services available for eCommerce websites that run on a dropship model. One can use tools provided by...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/\" \/>\n<meta property=\"og:site_name\" content=\"Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-30T19:34:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-30T19:36:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"240\" \/>\n\t<meta property=\"og:image:height\" content=\"240\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Naveed Ul-Haq\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Naveed Ul-Haq\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/\"},\"author\":{\"name\":\"Naveed Ul-Haq\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"headline\":\"Integrate with CJ Dropshipping API using ASP.NET C#\",\"datePublished\":\"2021-11-30T19:34:44+00:00\",\"dateModified\":\"2021-11-30T19:36:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/\"},\"wordCount\":260,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"keywords\":[\".net core\",\".net framework\",\"developer\",\"development\",\"Small business\"],\"articleSection\":[\".NET\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/\",\"name\":\"Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"datePublished\":\"2021-11-30T19:34:44+00:00\",\"dateModified\":\"2021-11-30T19:36:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"contentUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"width\":240,\"height\":240,\"caption\":\".net\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/integrate-with-cj-dropshipping-api-using-asp-net-c\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Integrate with CJ Dropshipping API using ASP.NET C#\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\",\"name\":\"Naveed Ul-Haq's blog\",\"description\":\"AI, Optimizely, Azure &amp; more\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.naveedulhaq.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\",\"name\":\"Naveed Ul-Haq\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"caption\":\"Naveed Ul-Haq\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\"},\"description\":\"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\\\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\\\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.\",\"sameAs\":[\"https:\\\/\\\/www.naveedulhaq.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/naveedulhaq\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog","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.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/","og_locale":"en_GB","og_type":"article","og_title":"Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog","og_description":"CJ dropshipping is one of the best dropshipping services available for eCommerce websites that run on a dropship model. One can use tools provided by...","og_url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/","og_site_name":"Naveed Ul-Haq&#039;s blog","article_published_time":"2021-11-30T19:34:44+00:00","article_modified_time":"2021-11-30T19:36:54+00:00","og_image":[{"width":240,"height":240,"url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","type":"image\/png"}],"author":"Naveed Ul-Haq","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Naveed Ul-Haq","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#article","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/"},"author":{"name":"Naveed Ul-Haq","@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"headline":"Integrate with CJ Dropshipping API using ASP.NET C#","datePublished":"2021-11-30T19:34:44+00:00","dateModified":"2021-11-30T19:36:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/"},"wordCount":260,"commentCount":0,"publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","keywords":[".net core",".net framework","developer","development","Small business"],"articleSection":[".NET"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/","url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/","name":"Integrate with CJ Dropshipping API using ASP.NET C# - Naveed Ul-Haq&#039;s blog","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#primaryimage"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","datePublished":"2021-11-30T19:34:44+00:00","dateModified":"2021-11-30T19:36:54+00:00","breadcrumb":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#primaryimage","url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","contentUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","width":240,"height":240,"caption":".net"},{"@type":"BreadcrumbList","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/integrate-with-cj-dropshipping-api-using-asp-net-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.naveedulhaq.com\/"},{"@type":"ListItem","position":2,"name":"Integrate with CJ Dropshipping API using ASP.NET C#"}]},{"@type":"WebSite","@id":"https:\/\/www.naveedulhaq.com\/#website","url":"https:\/\/www.naveedulhaq.com\/","name":"Naveed Ul-Haq's blog","description":"AI, Optimizely, Azure &amp; more","publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.naveedulhaq.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9","name":"Naveed Ul-Haq","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","caption":"Naveed Ul-Haq"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g"},"description":"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.","sameAs":["https:\/\/www.naveedulhaq.com","https:\/\/www.linkedin.com\/in\/naveedulhaq\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/651","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/comments?post=651"}],"version-history":[{"count":0,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/651\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media\/641"}],"wp:attachment":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media?parent=651"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/categories?post=651"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/tags?post=651"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}