{"id":13160,"date":"2022-08-05T16:09:11","date_gmt":"2022-08-05T19:09:11","guid":{"rendered":"https:\/\/darkorchid-wallaby-287256.hostingersite.com\/?p=13160"},"modified":"2022-08-05T16:09:16","modified_gmt":"2022-08-05T19:09:16","slug":"api-rest-executequeries-vs-endpoints","status":"publish","type":"post","link":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/","title":{"rendered":"API REST ExecuteQueries and Endpoints XMLA in Power BI Premium"},"content":{"rendered":"<span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading time:<\/span> <span class=\"rt-time\"> 6<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1500\" height=\"450\" src=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\" alt=\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium\" class=\"wp-image-13181\" srcset=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg 1500w, http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium-1280x384.jpg 1280w, http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium-980x294.jpg 980w, http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium-480x144.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1500px, 100vw\" \/><\/figure>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>The <a href=\"https:\/\/powerbi.microsoft.com\/pt-br\/blog\/announcing-general-availability-of-the-executequeries-rest-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">ExecuteQueries REST API has the ability to fully reach GA<\/a> which makes the increase in custom solutions to query Datasets in Power BI noticeable.<\/p><\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The most frequently asked question in the Power BI community is focused on the main REST API usage scenarios. And the answer is that the ExecuteQueries API is capable of extending the reach of business solutions that use Power BI datasets, but there are some limitations that must be taken into account.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That is, the ExecuteQueries API is a great choice for retrieving small blocks of data, automating testing of datasets, and implementing BI-driven cloud solutions, among other functions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One key characteristic that these scenarios have in common is that they work at a small scale. For example, the ExecuteQueries API restricts query results to 100,000 rows or 1,000,000 values per query (whichever is encountered first), so it is clearly not the right choice if you want or need to retrieve hundreds of millions of rows. If you want to use the ExecuteQueries API, you must keep the query results small.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The ExecuteQueries API is also not the right choice for large-scale middleware, such as data visualization applications supporting thousands of concurrent users, because the ExecuteQueries API limits the number of queries to 120 per minute. If a service or application exceeds this limit, queries will fail with HTTP error code 429. This clearly puts a cap at scalability because there\u2019s only so many requests you can submit. Currently, we have no plans to increase this limit.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So, what do you do when you need to work on a larger scale than the ExecuteQueries API can support?<\/p>\n\n\n\n<p class=\"wp-block-paragraph translation-block\">Switch to <a href=\"https:\/\/docs.microsoft.com\/pt-br\/power-bi\/enterprise\/service-premium-connect-tools\" target=\"_blank\" rel=\"noreferrer noopener\">XMLA endpoints on Power BI Premium<\/a>! XMLA is the communication protocol of the Microsoft Analysis Services engine.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As the following diagram illustrates, XMLA supports rich clients, third-party clients, data modelling tools, as well as custom data visualization and data management solutions at the scale of the underlying Premium capacity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">XMLA in and of itself does not impose any limits on query load or result set sizes. The XMLA protocol is able to use more optimized protocol formats and avoids the cost of encoding large results into JSON.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It is therefore the right choice if your requirements exceed the ExecuteQueries API capabilities because you\u2019re getting an unthrottled client\/server connection to the Analysis Services engine that runs inside of Power BI.<\/p>\n\n\n\n<p class=\"wp-block-paragraph translation-block\">Note, however, that this typically requires the use of <a href=\"https:\/\/docs.microsoft.com\/pt-br\/analysis-services\/client-libraries?view=azure-analysis-services-current\" target=\"_blank\" rel=\"noreferrer noopener\">Analysis Services client libraries<\/a>, which your solution must be able to load to communicate through XMLA endpoints.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" src=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/XMLA-endpoints.jpg\" alt=\"\" class=\"wp-image-13178\" width=\"730\" height=\"254\" srcset=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/XMLA-endpoints.jpg 730w, http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/XMLA-endpoints-480x167.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 730px, 100vw\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph translation-block\">One great example of a middle-tier service leveraging <a href=\"https:\/\/github.com\/Microsoft\/azure-analysis-services-http-sample\" target=\"_blank\" rel=\"noreferrer noopener\">XMLA endpoints is David Browne\u2019s HTTP proxy for Power BI Premium and Azure Analysis Services<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It\u2019s implemented as an ASP.NET Core 5 API Project, lets you POST a DAX query via its main \/api\/Query endpoint, and returns query results as a JSON document very similar to the ExecuteQueries API.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are noticing an increasing rate of \u201c429\u201d HTTP errors in your business solution, which would indicate that you are reaching the ExecuteQueries API\u2019s throttling limits, it might be feasible to switch quickly to such an HTTP proxy in order to avoid the throttling via XMLA endpoints.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">More long-term, you could then opt to refactor your business solution to communicate with XMLA endpoints directly.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" src=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/HTTP-Proxy.jpg\" alt=\"\" class=\"wp-image-13177\" width=\"664\" height=\"237\" srcset=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/HTTP-Proxy.jpg 664w, http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/HTTP-Proxy-480x171.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 664px, 100vw\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">While it is relatively straightforward to query Power BI datasets, the XMLA connection handling is somewhat more involved, especially at scale. The ExecuteQueries API does not require any special connection handling, yet the XMLA protocol does because it is a stateful protocol.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It would be inefficient to establish a new XMLA connection for each query and then close the connection when the results have been received.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Instead, consider maintaining a pool of open connections so that you can send queries without the connection overhead. Note though that Power BI might close open connections for several reasons, such as when temporarily evicting a dataset to accommodate other workloads on the same Premium capacity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph translation-block\">If a query fails because a connection was lost, consider opening a new connection and retrying the query. Check out the <a href=\"https:\/\/github.com\/microsoft\/azure-analysis-services-http-sample\/blob\/master\/aspnet\/Microsoft.Samples.XMLA.HTTP\/Microsoft.Samples.XMLA.HTTP.Proxy\/ConnectionPool.cs\" target=\"_blank\" rel=\"noreferrer noopener\">ConnectionPool.cs<\/a> file in David\u2019s HTTP proxy sample for a simple Connection Pool that may serve as a starting point for your own implementation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And that\u2019s it for a high-level introduction to refactoring data visualization apps and other business solutions if you notice that the throttling in the ExecuteQueries API is starting to create scalability issues.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The ExecuteQueries API is a great choice at small scale, especially if you are using Power BI shared. For large-scale solutions, more often than not, you will need to switch to XMLA endpoints and host your datasets on Power BI Premium. Power BI APIs can support you at any scale, but there is no one-size-fits-all API.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Choose the technologies that are right for your solution\u2019s purpose and scalability requirements and migrate your solutions to XMLA endpoints if you want to avoid throttling and resultset-size limitations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Source:<\/strong> Blog Power BI.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Original Post Author:<\/strong> Kay Unkroth.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Every Friday we post a new article about Power BI here at <a href=\"https:\/\/darkorchid-wallaby-287256.hostingersite.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\">DataEX Blog<\/a>. Stay tuned to our social networks and don't miss the <a href=\"https:\/\/darkorchid-wallaby-287256.hostingersite.com\/category\/power-bi\/novidades-power-bi\/\" target=\"_blank\" rel=\"noreferrer noopener\">news<\/a> focused on Microsoft's number one technological tool.<\/p>","protected":false},"excerpt":{"rendered":"<p><span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Tempo de leitura:<\/span> <span class=\"rt-time\"> 6<\/span> <span class=\"rt-label rt-postfix\">minutos<\/span><\/span>A API REST ExecuteQueries tem capacidade de atingir integralmente a GA o que torna percept\u00edvel o aumento de solu\u00e7\u00f5es personalizadas para consultar conjuntos de Dados no Power BI. A pergunta mais frequente na comunidade do Power BI \u00e9 voltada para os principais cen\u00e1rios de uso da API REST. E a resposta \u00e9 que a API [&hellip;]<\/p>\n","protected":false},"author":17,"featured_media":13181,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"1080","_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[73,71],"tags":[143,7,47,144,95,67,87],"class_list":["post-13160","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-novidades-power-bi","category-power-bi","tag-api-rest-executequeries","tag-bi","tag-dataex","tag-endpoints-xmla","tag-novidades-power-bi","tag-power-bi","tag-power-bi-premium"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX<\/title>\n<meta name=\"description\" content=\"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX\" \/>\n<meta property=\"og:description\" content=\"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/\" \/>\n<meta property=\"og:site_name\" content=\"DataEX\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataExbr\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-05T19:09:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-05T19:09:16+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Flavia Pereira\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Flavia Pereira\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/\"},\"author\":{\"name\":\"Flavia Pereira\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#\\\/schema\\\/person\\\/27c685e91452d74a9064fbe76ceefbc9\"},\"headline\":\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium\",\"datePublished\":\"2022-08-05T19:09:11+00:00\",\"dateModified\":\"2022-08-05T19:09:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/\"},\"wordCount\":1013,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\",\"keywords\":[\"API REST ExecuteQueries\",\"BI\",\"DataEX\",\"Endpoints XMLA\",\"Novidades Power BI\",\"Power Bi\",\"Power BI Premium\"],\"articleSection\":[\"Novidades Power BI\",\"Power BI\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/\",\"url\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/\",\"name\":\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\",\"datePublished\":\"2022-08-05T19:09:11+00:00\",\"dateModified\":\"2022-08-05T19:09:16+00:00\",\"description\":\"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#primaryimage\",\"url\":\"https:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\",\"contentUrl\":\"https:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg\",\"width\":1500,\"height\":450,\"caption\":\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/api-rest-executequeries-vs-endpoints\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\\\/\\\/darkorchid-wallaby-287256.hostingersite.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/\",\"name\":\"DataEX\",\"description\":\"Solu\u00e7\u00f5es Data &amp; AI - Make Smarter Decisions Faster\",\"publisher\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#organization\",\"name\":\"DataEX\",\"url\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/500x195-Logotipo-Transparente-DataEX-Horizontal-Laranja-e-Cinza.png\",\"contentUrl\":\"http:\\\/\\\/dataex.com.br\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/500x195-Logotipo-Transparente-DataEX-Horizontal-Laranja-e-Cinza.png\",\"width\":500,\"height\":195,\"caption\":\"DataEX\"},\"image\":{\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/DataExbr\\\/\",\"https:\\\/\\\/www.instagram.com\\\/dataexbr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataex\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/#\\\/schema\\\/person\\\/27c685e91452d74a9064fbe76ceefbc9\",\"name\":\"Flavia Pereira\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g\",\"caption\":\"Flavia Pereira\"},\"url\":\"https:\\\/\\\/dataex.com.br\\\/en\\\/author\\\/flavia-pereira\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX","description":"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!","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:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/","og_locale":"en_US","og_type":"article","og_title":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX","og_description":"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!","og_url":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/","og_site_name":"DataEX","article_publisher":"https:\/\/www.facebook.com\/DataExbr\/","article_published_time":"2022-08-05T19:09:11+00:00","article_modified_time":"2022-08-05T19:09:16+00:00","og_image":[{"width":1500,"height":450,"url":"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg","type":"image\/jpeg"}],"author":"Flavia Pereira","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Flavia Pereira","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#article","isPartOf":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/"},"author":{"name":"Flavia Pereira","@id":"https:\/\/dataex.com.br\/en\/#\/schema\/person\/27c685e91452d74a9064fbe76ceefbc9"},"headline":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium","datePublished":"2022-08-05T19:09:11+00:00","dateModified":"2022-08-05T19:09:16+00:00","mainEntityOfPage":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/"},"wordCount":1013,"commentCount":0,"publisher":{"@id":"https:\/\/dataex.com.br\/en\/#organization"},"image":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#primaryimage"},"thumbnailUrl":"https:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg","keywords":["API REST ExecuteQueries","BI","DataEX","Endpoints XMLA","Novidades Power BI","Power Bi","Power BI Premium"],"articleSection":["Novidades Power BI","Power BI"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/","url":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/","name":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium - DataEX","isPartOf":{"@id":"https:\/\/dataex.com.br\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#primaryimage"},"image":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#primaryimage"},"thumbnailUrl":"https:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg","datePublished":"2022-08-05T19:09:11+00:00","dateModified":"2022-08-05T19:09:16+00:00","description":"Conhe\u00e7a o API REST ExecuteQueries e Endpoints XMLA e saiba como utiliz\u00e1-los corretamente no seu Power BI Premium! Clique e confira!","breadcrumb":{"@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#primaryimage","url":"https:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg","contentUrl":"https:\/\/dataex.com.br\/wp-content\/uploads\/2022\/08\/API-REST-ExecuteQueries-e-Endpoints-XMLA-no-Power-BI-Premium.jpg","width":1500,"height":450,"caption":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium"},{"@type":"BreadcrumbList","@id":"https:\/\/dataex.com.br\/en\/api-rest-executequeries-vs-endpoints\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/darkorchid-wallaby-287256.hostingersite.com\/"},{"@type":"ListItem","position":2,"name":"API REST ExecuteQueries e Endpoints XMLA no Power BI Premium"}]},{"@type":"WebSite","@id":"https:\/\/dataex.com.br\/en\/#website","url":"https:\/\/dataex.com.br\/en\/","name":"DataEX","description":"Solu\u00e7\u00f5es Data &amp; AI - Make Smarter Decisions Faster","publisher":{"@id":"https:\/\/dataex.com.br\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dataex.com.br\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dataex.com.br\/en\/#organization","name":"DataEX","url":"https:\/\/dataex.com.br\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dataex.com.br\/en\/#\/schema\/logo\/image\/","url":"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/04\/500x195-Logotipo-Transparente-DataEX-Horizontal-Laranja-e-Cinza.png","contentUrl":"http:\/\/dataex.com.br\/wp-content\/uploads\/2022\/04\/500x195-Logotipo-Transparente-DataEX-Horizontal-Laranja-e-Cinza.png","width":500,"height":195,"caption":"DataEX"},"image":{"@id":"https:\/\/dataex.com.br\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataExbr\/","https:\/\/www.instagram.com\/dataexbr\/","https:\/\/www.linkedin.com\/company\/dataex\/"]},{"@type":"Person","@id":"https:\/\/dataex.com.br\/en\/#\/schema\/person\/27c685e91452d74a9064fbe76ceefbc9","name":"Flavia Pereira","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d55e08a7f49c5f7f6e82174235a2fdff6790facf7895b70160481416b10946a3?s=96&d=mm&r=g","caption":"Flavia Pereira"},"url":"https:\/\/dataex.com.br\/en\/author\/flavia-pereira\/"}]}},"_links":{"self":[{"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/posts\/13160","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/comments?post=13160"}],"version-history":[{"count":0,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/posts\/13160\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/media\/13181"}],"wp:attachment":[{"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/media?parent=13160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/categories?post=13160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dataex.com.br\/en\/wp-json\/wp\/v2\/tags?post=13160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}