{"id":637,"date":"2023-04-01T22:49:15","date_gmt":"2023-04-01T20:49:15","guid":{"rendered":"https:\/\/www.kogero.hu\/?p=637"},"modified":"2023-04-02T08:17:02","modified_gmt":"2023-04-02T06:17:02","slug":"how-to-use-dataverse-action-in-canvas-app","status":"publish","type":"post","link":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/","title":{"rendered":"How to use Dataverse Actions in Canvas Apps"},"content":{"rendered":"<p>In this blog post I show you how to use Dataverse actions in a simple canvas application, how to call them and get the returned output parameters. This is an upcoming feture, announced by Microsoft <a href=\"https:\/\/powerapps.microsoft.com\/en-us\/blog\/call-dataverse-actions-directly-in-power-fx-experimental-preview\/\">in this February<\/a>.<\/p>\r\n<p>In our simple app we will provide some text as an input and want to convert it to uppercase by calling <a href=\"https:\/\/www.kogero.hu\/en\/2022\/12\/13\/creating-custom-action\/\">our previously created action<\/a> by clicking on a submit button passing our text and display the result.<\/p>\r\n<h2>Enable access of Dataverse Actions in app<\/h2>\r\n<p>To access our Dataverse actionsAhhoz, first we need to enable it in the experimental &gt; upcoming features:<\/p>\r\n<ol>\r\n<li>click on &#8220;Settings&#8221; on the application ribbon,<\/li>\r\n<li>select &#8220;Upcoming features&#8221; on the left,<\/li>\r\n<li>filter on word &#8220;action&#8221;,<\/li>\r\n<li>switch on &#8220;Enable access to Microsoft Dataverse actions&#8221; feature.<\/li>\r\n<\/ol>\r\n<p>&nbsp;<\/p>\r\n\r\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-1024x314.png\" alt=\"Enable actions\" width=\"1024\" height=\"314\" class=\"wp-image-646 size-medium\" srcset=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-1024x314.png 1024w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-300x92.png 300w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-768x235.png 768w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-1536x471.png 1536w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25-1530x469.png 1530w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25.png 1602w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\r\n<figcaption class=\"wp-element-caption\">Switch on access action feature<\/figcaption>\r\n<\/figure>\r\n\r\n<p>\u00a0 After turning it on we receive a notification to save and refresh the site:\u00a0\u00a0<\/p>\r\n\r\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25_1.png\" alt=\"Save and refresh\" width=\"812\" height=\"419\" class=\"wp-image-647 size-medium\" srcset=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25_1.png 812w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25_1-300x155.png 300w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_21-25_1-768x396.png 768w\" sizes=\"(max-width: 812px) 100vw, 812px\" \/>\r\n<figcaption class=\"wp-element-caption\">Notification to save and refresh<\/figcaption>\r\n<\/figure>\r\n\r\n<h2>Call Action<\/h2>\r\n<p>Now action are available through &#8220;Environment&#8221; connection: \u00a0<\/p>\r\n\r\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-18.png\" alt=\"Az action\" width=\"475\" height=\"163\" class=\"wp-image-644 size-full aligncenter\" srcset=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-18.png 475w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-18-300x103.png 300w\" sizes=\"(max-width: 475px) 100vw, 475px\" \/>\r\n<figcaption class=\"wp-element-caption\">Browse available actions<\/figcaption>\r\n<\/figure>\r\n\r\n<p>Keep in mind if you have input parameters in you actions, you have to pass the parameters in a JSON object, input parameters will be its properties. In our case we have only one parameter &#8220;inputText&#8221;, which we want to convert to uppercase. The returned value is &#8220;outputText&#8221; which you can get as follows:<\/p>\r\n\r\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-11.png\" alt=\"action call\" width=\"931\" height=\"185\" class=\"wp-image-643 size-full aligncenter\" srcset=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-11.png 931w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-11-300x60.png 300w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-11-768x153.png 768w\" sizes=\"(max-width: 931px) 100vw, 931px\" \/>\r\n<figcaption class=\"wp-element-caption\">Action input and output paramters<\/figcaption>\r\n<\/figure>\r\n\r\n<p>\u00a0 So our final application with the input field and the upper-case-converted result as output:\u00a0\u00a0<\/p>\r\n\r\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-09.png\" alt=\"Az app a visszat\u00e9r\u0151 \u00e9rt\u00e9kkel\" width=\"514\" height=\"419\" class=\"size-full wp-image-645 aligncenter\" srcset=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-09.png 514w, https:\/\/www.kogero.hu\/wp-content\/uploads\/2023\/04\/2023-04-01_22-09-300x245.png 300w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/>\r\n<figcaption class=\"wp-element-caption\">Our simple UI with the input and output text<\/figcaption>\r\n<\/figure>\r\n\r\n<p>&nbsp;<\/p>\r\n<h2>When to use actions in canvas app?<\/h2>\r\n<p>There might be some cases, when you can chose actions. First you can spare time and reduce reduntant logics if you check the available actions on the system, because you do not have to create it e.g. in Power Automate. You can also access OOB actions for instance installed with Dynamics 365 applications, and not mentioning the option to write you own custom actions, which can have some unit tests as well.<\/p>\r\n<h2>Error handling<\/h2>\r\n<p>You can and you should use e.g. &#8220;IfError()&#8221; function the same way as you do with &#8220;Path()&#8221; or other flow calls.<\/p>\r\n<h2>Limitations<\/h2>\r\n<p>Calling an action consumes one API request of Dataverse connection limit, so you have to keep it in mind not to put the call in loops. You also have to calculate with the 2 mins plugin run limit.<\/p>","protected":false},"excerpt":{"rendered":"<p>In this blog post I show you how to use Dataverse actions in a simple canvas application, how to call [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":303,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[62,32],"tags":[63,6,64,53],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use Dataverse Actions in Canvas Apps - KOGERO<\/title>\n<meta name=\"description\" content=\"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.\" \/>\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.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use Dataverse Actions in Canvas Apps - KOGERO\" \/>\n<meta property=\"og:description\" content=\"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\" \/>\n<meta property=\"og:site_name\" content=\"KOGERO\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100087142779981\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=100087142779981\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-01T20:49:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-02T06:17:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"koger\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"koger\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\"},\"author\":{\"name\":\"koger\",\"@id\":\"https:\/\/www.kogero.hu\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202\"},\"headline\":\"How to use Dataverse Actions in Canvas Apps\",\"datePublished\":\"2023-04-01T20:49:15+00:00\",\"dateModified\":\"2023-04-02T06:17:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\"},\"wordCount\":942,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.kogero.hu\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202\"},\"image\":{\"@id\":\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png\",\"keywords\":[\"Action\",\"Canvas App\",\"Custom Action\",\"Power Apps\"],\"articleSection\":[\"Dataverse\",\"Power Apps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\",\"url\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\",\"name\":\"How to use Dataverse Actions in Canvas Apps - KOGERO\",\"isPartOf\":{\"@id\":\"https:\/\/www.kogero.hu\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png\",\"datePublished\":\"2023-04-01T20:49:15+00:00\",\"dateModified\":\"2023-04-02T06:17:02+00:00\",\"description\":\"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[[\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/\"]]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage\",\"url\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png\",\"contentUrl\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png\",\"width\":512,\"height\":512,\"caption\":\"Power Apps logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Kezd\u0151lap\",\"item\":\"https:\/\/www.kogero.hu\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hogyan haszn\u00e1ljunk Dataverse action-t canvas appban\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.kogero.hu\/en\/#website\",\"url\":\"https:\/\/www.kogero.hu\/en\/\",\"name\":\"KOGERO\",\"description\":\"A Power Platform &amp; CRM Developer&#039;s blog\",\"publisher\":{\"@id\":\"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.kogero.hu\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202\",\"name\":\"koger\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/10\/logo_kogero.hu_.png\",\"contentUrl\":\"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/10\/logo_kogero.hu_.png\",\"width\":298,\"height\":90,\"caption\":\"koger\"},\"logo\":{\"@id\":\"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/www.kogero.hu\",\"https:\/\/www.facebook.com\/profile.php?id=100087142779981\"],\"url\":\"https:\/\/www.kogero.hu\/en\/author\/koger\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use Dataverse Actions in Canvas Apps - KOGERO","description":"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.","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.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/","og_locale":"en_US","og_type":"article","og_title":"How to use Dataverse Actions in Canvas Apps - KOGERO","og_description":"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.","og_url":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/","og_site_name":"KOGERO","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100087142779981","article_author":"https:\/\/www.facebook.com\/profile.php?id=100087142779981","article_published_time":"2023-04-01T20:49:15+00:00","article_modified_time":"2023-04-02T06:17:02+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png","type":"image\/png"}],"author":"koger","twitter_card":"summary_large_image","twitter_misc":{"Written by":"koger","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#article","isPartOf":{"@id":"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/"},"author":{"name":"koger","@id":"https:\/\/www.kogero.hu\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202"},"headline":"How to use Dataverse Actions in Canvas Apps","datePublished":"2023-04-01T20:49:15+00:00","dateModified":"2023-04-02T06:17:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/"},"wordCount":942,"commentCount":0,"publisher":{"@id":"https:\/\/www.kogero.hu\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202"},"image":{"@id":"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png","keywords":["Action","Canvas App","Custom Action","Power Apps"],"articleSection":["Dataverse","Power Apps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/","url":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/","name":"How to use Dataverse Actions in Canvas Apps - KOGERO","isPartOf":{"@id":"https:\/\/www.kogero.hu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage"},"image":{"@id":"https:\/\/www.kogero.hu\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png","datePublished":"2023-04-01T20:49:15+00:00","dateModified":"2023-04-02T06:17:02+00:00","description":"Megn\u00e9zz\u00fck egy egyszer\u0171 p\u00e9ld\u00e1n kereszt\u00fcl, hogy hogyan h\u00edvhatunk meg plugin-t, azaz Dataverse action-t canvas appban.","breadcrumb":{"@id":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":[["https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/"]]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#primaryimage","url":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png","contentUrl":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/11\/powerapps_logo.png","width":512,"height":512,"caption":"Power Apps logo"},{"@type":"BreadcrumbList","@id":"https:\/\/www.kogero.hu\/en\/2023\/04\/01\/how-to-use-dataverse-action-in-canvas-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Kezd\u0151lap","item":"https:\/\/www.kogero.hu\/en\/"},{"@type":"ListItem","position":2,"name":"Hogyan haszn\u00e1ljunk Dataverse action-t canvas appban"}]},{"@type":"WebSite","@id":"https:\/\/www.kogero.hu\/en\/#website","url":"https:\/\/www.kogero.hu\/en\/","name":"KOGERO","description":"A Power Platform &amp; CRM Developer&#039;s blog","publisher":{"@id":"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kogero.hu\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/6c15ee4d93ffb9cabfde83439041c202","name":"koger","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/image\/","url":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/10\/logo_kogero.hu_.png","contentUrl":"https:\/\/www.kogero.hu\/wp-content\/uploads\/2022\/10\/logo_kogero.hu_.png","width":298,"height":90,"caption":"koger"},"logo":{"@id":"https:\/\/www.kogero.hu\/en\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/www.kogero.hu","https:\/\/www.facebook.com\/profile.php?id=100087142779981"],"url":"https:\/\/www.kogero.hu\/en\/author\/koger\/"}]}},"_links":{"self":[{"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/posts\/637"}],"collection":[{"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/comments?post=637"}],"version-history":[{"count":3,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/posts\/637\/revisions"}],"predecessor-version":[{"id":661,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/posts\/637\/revisions\/661"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/media\/303"}],"wp:attachment":[{"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/media?parent=637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/categories?post=637"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kogero.hu\/en\/wp-json\/wp\/v2\/tags?post=637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}