{"id":42984,"date":"2016-03-11T16:27:02","date_gmt":"2016-03-11T16:27:02","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=42984"},"modified":"2026-01-16T10:14:55","modified_gmt":"2026-01-16T10:14:55","slug":"create-quote-and-order-programmatically-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/","title":{"rendered":"Create Quote And Order Programmatically In Magento2"},"content":{"rendered":"\n<p>This guide explains how to create a <strong>quote and order programmatically<\/strong> in Magento 2.<\/p>\n\n\n\n<p>You will learn how to use Magento core classes to create a cart, assign a customer, add products, and place an order.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Required Data for Order Creation<\/h3>\n\n\n\n<p>To create a quote and order, define your order data like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$tempOrder = [\n 'currency_id'  =&gt; 'USD',\n 'email'        =&gt; 'test@webkul.com',\n 'shipping_address' =&gt; [\n    'firstname' =&gt; 'jhon',\n    'lastname'  =&gt; 'Deo',\n    'street'    =&gt; 'xxxxx',\n    'city'      =&gt; 'xxxxx',\n    'country_id'=&gt; 'IN',\n    'region'    =&gt; 'UP',\n    'postcode'  =&gt; '43244',\n    'telephone' =&gt; '52332',\n    'fax'       =&gt; '32423',\n    'save_in_address_book' =&gt; 1\n ],\n 'items' =&gt; [\n    ['product_id' =&gt; '1','qty' =&gt; 1,'price' =&gt; 30],\n    ['product_id' =&gt; '2','qty' =&gt; 2,'price' =&gt; 40]\n ]\n];<\/pre>\n\n\n\n<p>This array holds customer email, address, and product details.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Create the Order Helper<\/h3>\n\n\n\n<p>Create a helper file to process the order logic.<\/p>\n\n\n\n<p>Use proper dependency injection for all <a href=\"https:\/\/developer.adobe.com\/commerce\/php\/module-reference\/module-quote\/\">quote<\/a>, customer, and sales classes.<\/p>\n\n\n\n<p>Here is the full class:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\nnamespace YourNameSpace\\ModuleName\\Helper;\n\nclass Data extends \\Magento\\Framework\\App\\Helper\\AbstractHelper\n{\n    protected $_storeManager;\n    protected $_product;\n    protected $cartRepositoryInterface;\n    protected $cartManagementInterface;\n    protected $customerFactory;\n    protected $customerRepository;\n    protected $order;\n\n    public function __construct(\n        \\Magento\\Framework\\App\\Helper\\Context $context,\n        \\Magento\\Store\\Model\\StoreManagerInterface $storeManager,\n        \\Magento\\Catalog\\Model\\Product $product,\n        \\Magento\\Quote\\Api\\CartRepositoryInterface $cartRepositoryInterface,\n        \\Magento\\Quote\\Api\\CartManagementInterface $cartManagementInterface,\n        \\Magento\\Customer\\Model\\CustomerFactory $customerFactory,\n        \\Magento\\Customer\\Api\\CustomerRepositoryInterface $customerRepository,\n        \\Magento\\Sales\\Model\\Order $order\n    ) {\n        $this-&gt;_storeManager = $storeManager;\n        $this-&gt;_product      = $product;\n        $this-&gt;cartRepositoryInterface = $cartRepositoryInterface;\n        $this-&gt;cartManagementInterface = $cartManagementInterface;\n        $this-&gt;customerFactory = $customerFactory;\n        $this-&gt;customerRepository = $customerRepository;\n        $this-&gt;order = $order;\n        parent::__construct($context);\n    }\n<\/pre>\n\n\n\n<p>This sets up all services needed to manage quotes and orders.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Create the Order Function<\/h3>\n\n\n\n<p>Add this function inside your helper class:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function createMageOrder($orderData) {\n    $store = $this-&gt;_storeManager-&gt;getStore();\n    $websiteId = $this-&gt;_storeManager-&gt;getStore()-&gt;getWebsiteId();\n\n    $customer = $this-&gt;customerFactory-&gt;create();\n    $customer-&gt;setWebsiteId($websiteId);\n    $customer-&gt;loadByEmail($orderData['email']);<\/pre>\n\n\n\n<p>Load existing customer by email or create a new customer if not found.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Customer Creation (if not exists)<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">if(!$customer-&gt;getEntityId()){\n    $customer-&gt;setWebsiteId($websiteId)\n             -&gt;setStore($store)\n             -&gt;setFirstname($orderData['shipping_address']['firstname'])\n             -&gt;setLastname($orderData['shipping_address']['lastname'])\n             -&gt;setEmail($orderData['email'])\n             -&gt;setPassword($orderData['email']);\n    $customer-&gt;save();\n}<\/pre>\n\n\n\n<p>This block creates a new customer when the email doesn\u2019t exist.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Build the Quote<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">$cartId = $this-&gt;cartManagementInterface-&gt;createEmptyCart();\n$quote  = $this-&gt;cartRepositoryInterface-&gt;get($cartId);\n$quote-&gt;setStore($store);\n\n$customer = $this-&gt;customerRepository-&gt;getById($customer-&gt;getEntityId());\n$quote-&gt;setCurrency();\n$quote-&gt;assignCustomer($customer);\n$quote-&gt;setCustomerIsGuest(0);<\/pre>\n\n\n\n<p>This creates an empty cart and assigns the customer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Add Products to Quote<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">foreach($orderData['items'] as $item){\n    $product = $this-&gt;_product-&gt;load($item['product_id']);\n    $product-&gt;setPrice($item['price']);\n    $quote-&gt;addProduct($product, intval($item['qty']));\n}<\/pre>\n\n\n\n<p>Loop through the items array and attach products to the cart.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Add Addresses<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">$quote-&gt;getBillingAddress()-&gt;addData($orderData['shipping_address']);\n$quote-&gt;getShippingAddress()-&gt;addData($orderData['shipping_address']);<\/pre>\n\n\n\n<p>Both billing and shipping address use the same data for simplicity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Set Shipping and Payment<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">$shippingAddress = $quote-&gt;getShippingAddress();\n$shippingAddress-&gt;setCollectShippingRates(true)\n                -&gt;collectShippingRates()\n                -&gt;setShippingMethod('flatrate_flatrate');\n$quote-&gt;setPaymentMethod('checkmo');\n$quote-&gt;setInventoryProcessed(false);\n\n$quote-&gt;getPayment()-&gt;importData(['method' =&gt; 'checkmo']);\n$quote-&gt;save();\n<\/pre>\n\n\n\n<p>Assign a shipping method and payment method before totals.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Collect Totals and Place Order<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">$quote-&gt;collectTotals();\n\n$quote = $this-&gt;cartRepositoryInterface-&gt;get($quote-&gt;getId());\n$orderId = $this-&gt;cartManagementInterface-&gt;placeOrder($quote-&gt;getId());\n$order = $this-&gt;order-&gt;load($orderId);\n\n$order-&gt;setEmailSent(0);<\/pre>\n\n\n\n<p>Collect quote totals and place the order.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Return Result<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">    if ($order-&gt;getEntityId()) {\n        $result['order_id'] = $order-&gt;getRealOrderId();\n    } else {\n        $result = ['error' =&gt; 1, 'msg' =&gt; 'Your custom message'];\n    }\n    return $result;\n}<\/pre>\n\n\n\n<p>Return the placed order data or an error message.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>This code lets you create a <strong>quote and order programmatically<\/strong> in Magento 2.<\/p>\n\n\n\n<p>It works in backend modules and custom integrations.<\/p>\n\n\n\n<p>Looking to improve your store\u2019s speed and overall performance? Check out our&nbsp;<a href=\"https:\/\/webkul.com\/magento-speed-optimization-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 Speed &amp; Optimization services<\/a>.<\/p>\n\n\n\n<p>For expert guidance or custom feature development, you may&nbsp;<strong><a href=\"https:\/\/webkul.com\/hire-magento-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire our Magento 2 developers<\/a><\/strong>&nbsp;to support your project.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide explains how to create a quote and order programmatically in Magento 2. You will learn how to use Magento core classes to create a cart, assign a customer, add products, and place an order. Required Data for Order Creation To create a quote and order, define your order data like this: $tempOrder = <a href=\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,302],"tags":[2056,2070,312,740],"class_list":["post-42984","post","type-post","status-publish","format-standard","hentry","category-magento","category-magento2","tag-magento","tag-magento2","tag-order","tag-quote"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Quote And Order Programmatically In Magento2<\/title>\n<meta name=\"description\" content=\"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Quote And Order Programmatically In Magento2\" \/>\n<meta property=\"og:description\" content=\"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-03-11T16:27:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-16T10:14:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\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:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"Create Quote And Order Programmatically In Magento2\",\"datePublished\":\"2016-03-11T16:27:02+00:00\",\"dateModified\":\"2026-01-16T10:14:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\"},\"wordCount\":284,\"commentCount\":18,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"magento\",\"Magento2\",\"order\",\"Quote\"],\"articleSection\":[\"magento\",\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\",\"name\":\"Create Quote And Order Programmatically In Magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2016-03-11T16:27:02+00:00\",\"dateModified\":\"2026-01-16T10:14:55+00:00\",\"description\":\"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Quote And Order Programmatically In Magento2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Quote And Order Programmatically In Magento2","description":"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2","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:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Create Quote And Order Programmatically In Magento2","og_description":"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2","og_url":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-03-11T16:27:02+00:00","article_modified_time":"2026-01-16T10:14:55+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"Create Quote And Order Programmatically In Magento2","datePublished":"2016-03-11T16:27:02+00:00","dateModified":"2026-01-16T10:14:55+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/"},"wordCount":284,"commentCount":18,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["magento","Magento2","order","Quote"],"articleSection":["magento","Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/","url":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/","name":"Create Quote And Order Programmatically In Magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2016-03-11T16:27:02+00:00","dateModified":"2026-01-16T10:14:55+00:00","description":"Create Quote And Order Programmatically In Magento2 Here we learn how to create quote and order programmatically in Magento2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Quote And Order Programmatically In Magento2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/42984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=42984"}],"version-history":[{"count":15,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/42984\/revisions"}],"predecessor-version":[{"id":522311,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/42984\/revisions\/522311"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=42984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=42984"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=42984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}