{"id":1569,"date":"2013-04-08T06:16:16","date_gmt":"2013-04-08T06:16:16","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=1569"},"modified":"2015-03-26T10:42:03","modified_gmt":"2015-03-26T10:42:03","slug":"openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/","title":{"rendered":"Openerp7.0 with PHP using xml-rpc(read,search and write method)"},"content":{"rendered":"<p>In previous blog i have discussed about the xml-rpc connection using PHP.<\/p>\n<p>now i am going to discuss about \u00a0read, write and search methods.<\/p>\n<div class=\"alert alert-info\" role=\"alert\">Read Method<\/div>\n<pre class=\"brush:php\">$dbname = 'dbname';\r\n$user = 'admin';\r\n$pwd = 'pwd';\r\n\/\/ it's a demo openerp server url\r\n$url = 'http:\/\/demo.openerp.com:8069';\r\n$sock = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/common\");\r\n$client = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/object\");\r\n\r\n\/\/ for $user_id we have already done in previous blog...\r\n$partner_id = 1; \r\n$id_list[0]= new xmlrpcval($partner_id, 'int');\r\n$key = array(new xmlrpcval('name', 'string')); \r\n\r\n$msg = new xmlrpcmsg('execute');\r\n$msg-&gt;addParam(new xmlrpcval($dbname, \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval($user_id, \"int\"));\r\n$msg-&gt;addParam(new xmlrpcval($pwd, \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval(\"res.partner\", \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval(\"read\", \"string\")); \r\n$msg-&gt;addParam(new xmlrpcval($id_list, \"struct\")); \/\/ sending id which is to be read\r\n$msg-&gt;addParam(new xmlrpcval($key, \"struct\")); \/\/ sending an array of field\r\n$resp = $client-&gt;send($msg);\r\n$val = $resp-&gt;value();\r\n$ids = $val-&gt;scalarval();\t\t\r\n$id = $ids[0]-&gt;me;\r\n\/\/ here we get the customer name\r\n$customer_name = $id[\"struct\"][\"name\"]-&gt;me[\"string\"];<\/pre>\n<div class=\"alert alert-info\" role=\"alert\">Search Method<\/div>\n<pre class=\"brush:php\">$key = array(new xmlrpcval\r\n            (array(new xmlrpcval('name' , \"string\"), \/\/ field name\r\n                   new xmlrpcval('=',\"string\"), \/\/ operator\r\n                   new xmlrpcval('your company',\"string\")),\"array\"             ),\r\n        );   \r\n\r\n $msg = new xmlrpcmsg('execute');\r\n $msg-&gt;addParam(new xmlrpcval($dbname, \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval($user_id, \"int\"));\r\n $msg-&gt;addParam(new xmlrpcval($pwd, \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval('res.partner', \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval(\"search\", \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval($key, \"array\"));\r\n\r\n $resp = $client-&gt;send($msg);\r\n $val = $resp-&gt;value();\r\n $ids = $val-&gt;scalarval(); \/\/ here we will get the return ids<\/pre>\n<div class=\"alert alert-info\" role=\"alert\">Write Method<\/div>\n<pre class=\"brush:php\">$id_list[0]= new xmlrpcval($partner_id, 'int');\/\/ array of openerp customer id\r\n\r\n$customer_data = array( \r\n        'name'=&gt;new xmlrpcval('Openerp customer', \"string\"),\r\n\t'email'=&gt;new xmlrpcval('demo@openerp.com', \"string\")\r\n\t);\r\n $msg = new xmlrpcmsg('execute');\r\n $msg-&gt;addParam(new xmlrpcval($dbname, \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval($user_id, \"int\"));\r\n $msg-&gt;addParam(new xmlrpcval($pwd, \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval('res.partner', \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval(\"write\", \"string\"));\r\n $msg-&gt;addParam(new xmlrpcval($id_list, \"array\"));\r\n $msg-&gt;addParam(new xmlrpcval($customer_data, \"struct\"));\r\n $resp = $client-&gt;send($msg);\r\n $val = $resp-&gt;value();\r\n $record = $val-&gt;scalarval();<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>In previous blog i have discussed about the xml-rpc connection using PHP. now i am going to discuss about \u00a0read, write and search methods. Read Method $dbname = &#8216;dbname&#8217;; $user = &#8216;admin&#8217;; $pwd = &#8216;pwd&#8217;; \/\/ it&#8217;s a demo openerp server url $url = &#8216;http:\/\/demo.openerp.com:8069&#8217;; $sock = new xmlrpc_client(&#8220;http:\/\/demo.openerp.com:8069\/xmlrpc\/common&#8221;); $client = new xmlrpc_client(&#8220;http:\/\/demo.openerp.com:8069\/xmlrpc\/object&#8221;); \/\/ for <a href=\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":9,"featured_media":22126,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[166],"tags":[],"class_list":["post-1569","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-openerp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Openerp7.0 with PHP using xml-rpc(read,search and write method) - 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\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Openerp7.0 with PHP using xml-rpc(read,search and write method) - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In previous blog i have discussed about the xml-rpc connection using PHP. now i am going to discuss about \u00a0read, write and search methods. Read Method $dbname = &#039;dbname&#039;; $user = &#039;admin&#039;; $pwd = &#039;pwd&#039;; \/\/ it&#039;s a demo openerp server url $url = &#039;http:\/\/demo.openerp.com:8069&#039;; $sock = new xmlrpc_client(&quot;http:\/\/demo.openerp.com:8069\/xmlrpc\/common&quot;); $client = new xmlrpc_client(&quot;http:\/\/demo.openerp.com:8069\/xmlrpc\/object&quot;); \/\/ for [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\" \/>\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=\"2013-04-08T06:16:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-03-26T10:42:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.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=\"Ravi Raushan\" \/>\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=\"Ravi Raushan\" \/>\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\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\"},\"author\":{\"name\":\"Ravi Raushan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4\"},\"headline\":\"Openerp7.0 with PHP using xml-rpc(read,search and write method)\",\"datePublished\":\"2013-04-08T06:16:16+00:00\",\"dateModified\":\"2015-03-26T10:42:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\"},\"wordCount\":40,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"articleSection\":[\"OpenERP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\",\"url\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\",\"name\":\"Openerp7.0 with PHP using xml-rpc(read,search and write method) - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"datePublished\":\"2013-04-08T06:16:16+00:00\",\"dateModified\":\"2015-03-26T10:42:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Openerp7.0 with PHP using xml-rpc(read,search and write method)\"}]},{\"@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\/6230878ae40777e82fbc6eaab40da1a4\",\"name\":\"Ravi Raushan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?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\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ravi Raushan\"},\"description\":\"Odoo developer with expertise in Python, JavaScript, and headless development services. He crafts innovative, high-performance solutions that push the boundaries of technology, leveraging his proficiency to build flexible, scalable applications and drive digital transformation.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/ravi-raushan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Openerp7.0 with PHP using xml-rpc(read,search and write method) - 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\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/","og_locale":"en_US","og_type":"article","og_title":"Openerp7.0 with PHP using xml-rpc(read,search and write method) - Webkul Blog","og_description":"In previous blog i have discussed about the xml-rpc connection using PHP. now i am going to discuss about \u00a0read, write and search methods. Read Method $dbname = 'dbname'; $user = 'admin'; $pwd = 'pwd'; \/\/ it's a demo openerp server url $url = 'http:\/\/demo.openerp.com:8069'; $sock = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/common\"); $client = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/object\"); \/\/ for [...]","og_url":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2013-04-08T06:16:16+00:00","article_modified_time":"2015-03-26T10:42:03+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","type":"image\/png"}],"author":"Ravi Raushan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ravi Raushan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/"},"author":{"name":"Ravi Raushan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4"},"headline":"Openerp7.0 with PHP using xml-rpc(read,search and write method)","datePublished":"2013-04-08T06:16:16+00:00","dateModified":"2015-03-26T10:42:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/"},"wordCount":40,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","articleSection":["OpenERP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/","url":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/","name":"Openerp7.0 with PHP using xml-rpc(read,search and write method) - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","datePublished":"2013-04-08T06:16:16+00:00","dateModified":"2015-03-26T10:42:03+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/openerp7-0-with-php-using-xml-rpcreadwrite-and-search-method\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Openerp7.0 with PHP using xml-rpc(read,search and write method)"}]},{"@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\/6230878ae40777e82fbc6eaab40da1a4","name":"Ravi Raushan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?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\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ravi Raushan"},"description":"Odoo developer with expertise in Python, JavaScript, and headless development services. He crafts innovative, high-performance solutions that push the boundaries of technology, leveraging his proficiency to build flexible, scalable applications and drive digital transformation.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/ravi-raushan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1569","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\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1569"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1569\/revisions"}],"predecessor-version":[{"id":21864,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1569\/revisions\/21864"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/22126"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}