{"id":141242,"date":"2018-09-03T13:48:18","date_gmt":"2018-09-03T13:48:18","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=141242"},"modified":"2018-09-03T13:55:17","modified_gmt":"2018-09-03T13:55:17","slug":"understanding-flow-of-virtuemart-payment-plugin","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/","title":{"rendered":"Understanding Flow of VirtueMart Payment Plugin"},"content":{"rendered":"<p>We will discuss about the methods used in VirtueMart Payment Plugin here. The methods defined below as per their sequence of usage :<\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: justify\"><strong>plgVmOnStoreInstallPaymentPluginTable<\/strong><\/p>\n<ul>\n<li>The very first function required to be defined when we install a VirtueMart Payment plugin.<\/li>\n<li>It creates the plugin specific database table for your plugin further working.<\/li>\n<\/ul>\n<p><strong>plgVmSetOnTablePluginParamsPayment<\/strong><\/p>\n<ul>\n<li>After plgVmOnStoreInstallPaymentPluginTable function the next required function for the plugin.<\/li>\n<li>Used for storing values of payment plugins configuration in database table.<\/li>\n<\/ul>\n<p><strong>getTableSQLFields<\/strong><\/p>\n<ul>\n<li>This function is used to define the column names to be added in the payment table creation.<\/li>\n<li>One can add columns after installation of plugin as well using this function.<\/li>\n<\/ul>\n<p><strong>plgVmDeclarePluginParamsPaymentVM3<\/strong><\/p>\n<ul>\n<li>You can get the saved plugin configuration values by the help of this function&#8217;s parameter.<\/li>\n<li>This function is called whenever you try to update the configuration of the payment plugin.<\/li>\n<\/ul>\n<p><strong>plgVmOnCheckAutomaticSelectedPayment<\/strong><\/p>\n<ul>\n<li>This function is first called when you finally setup the configuration of payment plugin and redirect to the cart view on store.<\/li>\n<li>In case you have set your payment plugin as the default payment method by VirtueMart&#8217;s Configuration, this function is used.<\/li>\n<\/ul>\n<p><strong>checkConditions<\/strong><\/p>\n<ul>\n<li>This function is called After plgVmOnCheckAutomaticSelectedPayment<\/li>\n<li>Checks if the payment conditions are fulfilled for the payment method.<\/li>\n<li>If you want to show\/hide the payment plugin on some specific conditions then this function is very useful.<\/li>\n<\/ul>\n<p>Below is simple example of showing the plugin on the basis of total cart amount value :<\/p>\n<pre class=\"brush:php\">\/**\r\n* [checkConditions function used to check the details before checkout process.]\r\n*\r\n* @param array  $cart        cart details\r\n* @param object $method      method data\r\n* @param object $cart_prices cart prices object\r\n*\r\n* @author Webkul Software Private Limited\r\n* @copyright Copyright (c) 2010-2018 Webkul Software Private Limited (https:\/\/webkul.com)\r\n* @license   https:\/\/store.webkul.com\/license.html\r\n*\r\n* @return boolean\r\n*\/\r\nprotected function checkConditions($cart, $method, $cart_prices)\r\n{\r\n    if ($cart_prices['billTotal'] &lt; 50) {\r\n        return false;\r\n    }\r\n}\r\n<\/pre>\n<p><strong>plgVmonSelectedCalculatePricePayment<\/strong><\/p>\n<ul>\n<li>This function is used to calculate the price of the payment method. Price calculation is done on checkbox selection of payment method at cart view.<\/li>\n<li>If you forget to add this function in your plugin code, your payment plugin will not be selectable at all on the cart view.<\/li>\n<\/ul>\n<p><strong>plgVmDisplayListFEPayment<\/strong><\/p>\n<ul>\n<li>This is a required function for your payment plugin and called after plgVmonSelectedCalculatePricePayment.<\/li>\n<li>This function is used to display the payment plugin name on cart view payment option list.<\/li>\n<li>This function has a parameter $html by the help of which you can add additional view, if required to be shown with payment name.<\/li>\n<\/ul>\n<p>Now on Proceeding to the Checkout functionality &#8211;<\/p>\n<p><strong>plgVmOnSelectCheckPayment<\/strong><\/p>\n<ul>\n<li>This function is triggered when the user tries to checkout from the cart view.<\/li>\n<li>You can use this function to store additional information.<\/li>\n<\/ul>\n<p><strong>plgVmOnCheckoutCheckDataPayment<\/strong><\/p>\n<ul>\n<li>This function is also triggered at the time of checkout but after plgVmOnSelectCheckPayment.<\/li>\n<li>It can be used to validate the method data entered by the user.<\/li>\n<\/ul>\n<p><strong>plgVmConfirmedOrder<\/strong><\/p>\n<ul>\n<li>This function is triggered when the user click on the Confirm Purchase button on cart view.<\/li>\n<li>You can store the transaction\/order related details using this function.<\/li>\n<li>You can set your html with a variable name html at the end of this function, to be shown be thank you message.<\/li>\n<\/ul>\n<p><strong>plgVmOnPaymentResponseReceived<\/strong><\/p>\n<ul>\n<li>This function is used If user redirection to the Payment gateway is required.<\/li>\n<li>You can use this function as redirect URL for the payment gateway and receive response from payment gateway here.<\/li>\n<\/ul>\n<pre class=\"brush:php\">YOUR_SITE\/.'index.php?option=com_virtuemart&amp;view=vmplg&amp;task=pluginresponsereceived'<\/pre>\n<p>This task pluginresponsereceived calls the function written in your payment plugin.<\/p>\n<p><strong>plgVmOnShowOrderFEPayment<\/strong><\/p>\n<ul>\n<li>This function is triggered after plgVmConfirmedOrder, to display the payment related information in order.<\/li>\n<\/ul>\n<p>Similarly, If you want to add payment related information in back-end Order details as well, then you can use plgVmOnShowOrderBEPayment.<br \/>\nThis function is triggered when we view the order details in administrator.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We will discuss about the methods used in VirtueMart Payment Plugin here. The methods defined below as per their sequence of usage : &nbsp; plgVmOnStoreInstallPaymentPluginTable The very first function required to be defined when we install a VirtueMart Payment plugin. It creates the plugin specific database table for your plugin further working. plgVmSetOnTablePluginParamsPayment After plgVmOnStoreInstallPaymentPluginTable <a href=\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":123,"featured_media":106330,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4329],"tags":[1042,2060],"class_list":["post-141242","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-virtuemart-joomla-2","tag-payment","tag-virtuemart"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding Flow of VirtueMart Payment Plugin - 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\/understanding-flow-of-virtuemart-payment-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Flow of VirtueMart Payment Plugin - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"We will discuss about the methods used in VirtueMart Payment Plugin here. The methods defined below as per their sequence of usage : &nbsp; plgVmOnStoreInstallPaymentPluginTable The very first function required to be defined when we install a VirtueMart Payment plugin. It creates the plugin specific database table for your plugin further working. plgVmSetOnTablePluginParamsPayment After plgVmOnStoreInstallPaymentPluginTable [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\" \/>\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=\"2018-09-03T13:48:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-09-03T13:55:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Arti Singhania\" \/>\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=\"Arti Singhania\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\"},\"author\":{\"name\":\"Arti Singhania\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5521489b26224c9f63dd851bfb9d6498\"},\"headline\":\"Understanding Flow of VirtueMart Payment Plugin\",\"datePublished\":\"2018-09-03T13:48:18+00:00\",\"dateModified\":\"2018-09-03T13:55:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\"},\"wordCount\":542,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png\",\"keywords\":[\"payment\",\"virtuemart\"],\"articleSection\":[\"Virtuemart\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\",\"url\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\",\"name\":\"Understanding Flow of VirtueMart Payment Plugin - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png\",\"datePublished\":\"2018-09-03T13:48:18+00:00\",\"dateModified\":\"2018-09-03T13:55:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Flow of VirtueMart Payment Plugin\"}]},{\"@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\/5521489b26224c9f63dd851bfb9d6498\",\"name\":\"Arti Singhania\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e3e33610a4656ac2185cb9c8f477e8c7c456a05de2e0b13f91006a6dfe98a5fb?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\/e3e33610a4656ac2185cb9c8f477e8c7c456a05de2e0b13f91006a6dfe98a5fb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Arti Singhania\"},\"sameAs\":[\"http:\/\/webkul.com\/blog\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/arti-singhania503\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding Flow of VirtueMart Payment Plugin - 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\/understanding-flow-of-virtuemart-payment-plugin\/","og_locale":"en_US","og_type":"article","og_title":"Understanding Flow of VirtueMart Payment Plugin - Webkul Blog","og_description":"We will discuss about the methods used in VirtueMart Payment Plugin here. The methods defined below as per their sequence of usage : &nbsp; plgVmOnStoreInstallPaymentPluginTable The very first function required to be defined when we install a VirtueMart Payment plugin. It creates the plugin specific database table for your plugin further working. plgVmSetOnTablePluginParamsPayment After plgVmOnStoreInstallPaymentPluginTable [...]","og_url":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-09-03T13:48:18+00:00","article_modified_time":"2018-09-03T13:55:17+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png","type":"image\/png"}],"author":"Arti Singhania","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Arti Singhania","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/"},"author":{"name":"Arti Singhania","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5521489b26224c9f63dd851bfb9d6498"},"headline":"Understanding Flow of VirtueMart Payment Plugin","datePublished":"2018-09-03T13:48:18+00:00","dateModified":"2018-09-03T13:55:17+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/"},"wordCount":542,"commentCount":6,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png","keywords":["payment","virtuemart"],"articleSection":["Virtuemart"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/","url":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/","name":"Understanding Flow of VirtueMart Payment Plugin - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png","datePublished":"2018-09-03T13:48:18+00:00","dateModified":"2018-09-03T13:55:17+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Joomla-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/understanding-flow-of-virtuemart-payment-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Understanding Flow of VirtueMart Payment Plugin"}]},{"@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\/5521489b26224c9f63dd851bfb9d6498","name":"Arti Singhania","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e3e33610a4656ac2185cb9c8f477e8c7c456a05de2e0b13f91006a6dfe98a5fb?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\/e3e33610a4656ac2185cb9c8f477e8c7c456a05de2e0b13f91006a6dfe98a5fb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Arti Singhania"},"sameAs":["http:\/\/webkul.com\/blog"],"url":"https:\/\/webkul.com\/blog\/author\/arti-singhania503\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/141242","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\/123"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=141242"}],"version-history":[{"count":33,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/141242\/revisions"}],"predecessor-version":[{"id":197956,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/141242\/revisions\/197956"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/106330"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=141242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=141242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=141242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}