{"id":333882,"date":"2022-05-10T17:47:18","date_gmt":"2022-05-10T17:47:18","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=333882"},"modified":"2024-06-19T08:04:09","modified_gmt":"2024-06-19T08:04:09","slug":"add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/","title":{"rendered":"Add custom column filter in sales shipment grid collection in Magento 2"},"content":{"rendered":"\n<p>Hello Friends!!!<br><br>In this blog, we are going to learn how we can add a custom column filter to the sales shipment grid collection.<br>Here, to customize the sales shipment grid collection, please follow the below steps:<\/p>\n\n\n\n<p><strong>1. Create di.xml inside the app\/code\/Vendor\/Module\/etc\/ directory. And add the following plugin in your di.xml file.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n  \n  &lt;type name=&quot;Magento\\Framework\\View\\Element\\UiComponent\\DataProvider\\CollectionFactory&quot;&gt;\n    &lt;plugin name=&quot;Vendor_Module::aroundGetReport&quot; type=&quot;Vendor\\Module\\Plugin\\Framework\\View\\Element\\UiComponent\\DataProvider\\CollectionFactory&quot; sortOrder=&quot;1&quot;\/&gt;\n  &lt;\/type&gt;\n\n&lt;\/config&gt;<\/pre>\n\n\n\n<p><strong>2. Create plugin class file CollectionFactory.php inside the app\/code\/Vendor\/Module\/Plugin\/Framework\/View\/Element\/UiComponent\/DataProvider\/ directory.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\n&lt;?php\n\/**\n * Vendor Desc.\n *\n * @category  Vendor Category\n * @package   Vendor_Module\n * @author    Vendor name\n * @copyright Copyright (c) Vendor (https:\/\/example.com)\n * @license   https:\/\/example.com\/license.html\n *\/\n\nnamespace Vendor\\Module\\Plugin\\Framework\\View\\Element\\UiComponent\\DataProvider;\n\nuse Magento\\Framework\\Data\\Collection;\nuse Magento\\Framework\\View\\Element\\UiComponent\\DataProvider\\CollectionFactory as OrigFactory;\n\n\/**\n * Class CollectionFactory\n *\/\nclass CollectionFactory\n{\n    \/**\n     * Const SALES_ORDER_SHIPMENT_GRID_DATA_SOURCE: contains source name\n     *\/\n    const SALES_ORDER_SHIPMENT_GRID_DATA_SOURCE = &#039;sales_order_shipment_grid_data_source&#039;;\n\n    \/**\n     * @var Collection&#091;]\n     *\/\n    protected $collections;\n\n    \/**\n     * @param array $collections\n     *\/\n    public function __construct(\n        array $collections = &#091;]\n    ) {\n        $this-&gt;collections  = $collections;\n    }\n\n    \/**\n     * Get report collection\n     *\n     * @param OrigFactory $subject\n     * @param \\Closure $proceed\n     * @param string $requestName\n     * \n     * @return Collection\n     * @throws \\Exception\n     *\/\n    public function aroundGetReport(\n        OrigFactory $subject,\n        \\Closure $proceed,\n        $requestName\n    ) {\n        $result = $proceed($requestName);\n\n        $userId = 2;\n\n        if ($requestName == self::SALES_ORDER_SHIPMENT_GRID_DATA_SOURCE) {\n            \/\/here user_id is custom column of sales_shipment and sales_shipment_grid tables\n            $result-&gt;addFieldToFilter(&quot;main_table.user_id&quot;, $userId);\n        }\n        \n        return $result;\n    }\n}<\/pre>\n\n\n\n<p>After executing the compilation command, You can see the result in the sales shipment grid.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"604\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png\" alt=\"ShipmentsGrid\" class=\"wp-image-333883\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-300x151.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-250x126.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-768x387.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid.png 1202w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption>Customized Shipment Grid Collection View<\/figcaption><\/figure>\n\n\n\n<p>Hope this will be helpful.<br>Thanks \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello Friends!!! In this blog, we are going to learn how we can add a custom column filter to the sales shipment grid collection.Here, to customize the sales shipment grid collection, please follow the below steps: 1. Create di.xml inside the app\/code\/Vendor\/Module\/etc\/ directory. And add the following plugin in your di.xml file. 2. Create plugin <a href=\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":249,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[12717,12776,12773,12777,12778,12774,12775],"class_list":["post-333882","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2","tag-custom-attribute-filter-in-shipment-collection","tag-custom-attribute-filter-in-shipment-grid-collection","tag-customize-shipment-grid","tag-customize-shipment-grid-collection","tag-how-to-add-custom-column-filter-in-shipment-grid-collection","tag-sales-shipment-gird"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add custom column filter in sales shipment grid collection in Magento 2 - Webkul 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:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add custom column filter in sales shipment grid collection in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Hello Friends!!! In this blog, we are going to learn how we can add a custom column filter to the sales shipment grid collection.Here, to customize the sales shipment grid collection, please follow the below steps: 1. Create di.xml inside the app\/code\/Vendor\/Module\/etc\/ directory. And add the following plugin in your di.xml file. 2. Create plugin [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\" \/>\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=\"2022-05-10T17:47:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-19T08:04:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png\" \/>\n<meta name=\"author\" content=\"Khushboo Sahu\" \/>\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=\"Khushboo Sahu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\"},\"author\":{\"name\":\"Khushboo Sahu\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca\"},\"headline\":\"Add custom column filter in sales shipment grid collection in Magento 2\",\"datePublished\":\"2022-05-10T17:47:18+00:00\",\"dateModified\":\"2024-06-19T08:04:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\"},\"wordCount\":114,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png\",\"keywords\":[\"Add custom column filter in sales shipments grid collection in Magento 2\",\"custom attribute filter in shipment collection\",\"custom attribute filter in shipment grid collection\",\"customize shipment grid\",\"customize shipment grid collection\",\"how to add custom column filter in shipment grid collection\",\"sales shipment gird\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\",\"name\":\"Add custom column filter in sales shipment grid collection in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png\",\"datePublished\":\"2022-05-10T17:47:18+00:00\",\"dateModified\":\"2024-06-19T08:04:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid.png\",\"width\":1202,\"height\":605,\"caption\":\"ShipmentsGrid\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add custom column filter in sales shipment grid collection in Magento 2\"}]},{\"@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\/f94b8f53397bf85810761d76c98fadca\",\"name\":\"Khushboo Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Khushboo Sahu\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add custom column filter in sales shipment grid collection in Magento 2 - Webkul 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:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Add custom column filter in sales shipment grid collection in Magento 2 - Webkul Blog","og_description":"Hello Friends!!! In this blog, we are going to learn how we can add a custom column filter to the sales shipment grid collection.Here, to customize the sales shipment grid collection, please follow the below steps: 1. Create di.xml inside the app\/code\/Vendor\/Module\/etc\/ directory. And add the following plugin in your di.xml file. 2. Create plugin [...]","og_url":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-05-10T17:47:18+00:00","article_modified_time":"2024-06-19T08:04:09+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png","type":"","width":"","height":""}],"author":"Khushboo Sahu","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Khushboo Sahu","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/"},"author":{"name":"Khushboo Sahu","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca"},"headline":"Add custom column filter in sales shipment grid collection in Magento 2","datePublished":"2022-05-10T17:47:18+00:00","dateModified":"2024-06-19T08:04:09+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/"},"wordCount":114,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png","keywords":["Add custom column filter in sales shipments grid collection in Magento 2","custom attribute filter in shipment collection","custom attribute filter in shipment grid collection","customize shipment grid","customize shipment grid collection","how to add custom column filter in shipment grid collection","sales shipment gird"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/","name":"Add custom column filter in sales shipment grid collection in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid-1200x604.png","datePublished":"2022-05-10T17:47:18+00:00","dateModified":"2024-06-19T08:04:09+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/05\/ShipmentsGrid.png","width":1202,"height":605,"caption":"ShipmentsGrid"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-sales-shipments-grid-collection-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add custom column filter in sales shipment grid collection in Magento 2"}]},{"@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\/f94b8f53397bf85810761d76c98fadca","name":"Khushboo Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Khushboo Sahu"},"url":"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/333882","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\/249"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=333882"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/333882\/revisions"}],"predecessor-version":[{"id":333885,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/333882\/revisions\/333885"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=333882"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=333882"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=333882"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}