{"id":11066,"date":"2020-08-21T19:46:50","date_gmt":"2020-08-22T02:46:50","guid":{"rendered":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/"},"modified":"2025-07-09T14:58:48","modified_gmt":"2025-07-09T21:58:48","slug":"power-apps-portals-web-api-support-public-preview","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/","title":{"rendered":"Power Apps portals Web API support (public preview)"},"content":{"rendered":"<p>Portals Web API enables building a richer user experience inside Power Apps portals pages. You can use Web API to create, update, and delete operations across Common Data Service entities (excluding <a href=\"https:\/\/docs.microsoft.com\/powerapps\/maker\/portals\/web-api-overview#configuration-entities\">configuration entities<\/a>) from your portal pages.<\/p>\n<h1>Preview capabilities<\/h1>\n<p>The feature provides the following capabilities during this public preview:<\/p>\n<ul type=\"disc\">\n<li>Create an entity<\/li>\n<li>Update an entity<\/li>\n<li>Delete an entity<\/li>\n<li>Associate and disassociate entities<\/li>\n<\/ul>\n<h1>How to get started?<\/h1>\n<p><strong>Please note that your portal version must be 9.2.6.41 or later for this feature to work.<\/strong><br \/>\n<u>Web APIs will be disabled by default for the entities and users have to enable it for each entity using <strong><a href=\"https:\/\/docs.microsoft.com\/powerapps\/maker\/portals\/web-api-overview#site-settings-for-web-api\">site settings<\/a><\/strong>.<\/u> If you&#8217;re trying to perform action on multiple entities in single call, then please make sure all of these entities and respective fields are enabled.<\/p>\n<h2>Create an entity<\/h2>\n<div style=\"direction: ltr\">\n<table cellpadding=\"0\" cellspacing=\"0\" summary=\"\">\n<thead>\n<tr>\n<th>Operation<\/th>\n<th>Method<\/th>\n<th>URI<\/th>\n<th>JSON Sample<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Basic create<\/td>\n<td>POST<\/td>\n<td>[Portal URI]\/_api\/accounts<\/td>\n<td>{&#8220;name&#8221;:&#8221;Sample Account&#8221;}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<h2><\/h2>\n<h2>Update an entity<\/h2>\n<div style=\"direction: ltr\">\n<table cellpadding=\"0\" cellspacing=\"0\" summary=\"\">\n<thead>\n<tr>\n<th>Operation<\/th>\n<th>Method<\/th>\n<th>URI<\/th>\n<th>JSON Sample<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Basic update<\/td>\n<td>PATCH<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000001)<\/td>\n<td>{ &#8220;name&#8221;: &#8220;Updated Sample Account &#8220;, &#8220;creditonhold&#8221;: true, &#8220;address1_latitude&#8221;: 47.639583, &#8220;description&#8221;: &#8220;This is the updated description of the sample account&#8221;, &#8220;revenue&#8221;: 6000000, &#8220;accountcategorycode&#8221;: 2 }<\/td>\n<\/tr>\n<tr>\n<td>Update a single property value<\/td>\n<td>PUT<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000001)\/name<\/td>\n<td>{&#8220;value&#8221;: &#8220;Updated Sample Account Name&#8221;}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<h2><\/h2>\n<h2>Delete an entity<\/h2>\n<div style=\"direction: ltr\">\n<table cellpadding=\"0\" cellspacing=\"0\" summary=\"\">\n<thead>\n<tr>\n<th>Operation<\/th>\n<th>Method<\/th>\n<th>URI<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Basic delete<\/td>\n<td>DELETE<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000001)<\/td>\n<\/tr>\n<tr>\n<td>Delete a single property value<\/td>\n<td>DELETE<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000001)\/description<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<h2><\/h2>\n<h2>Associate and disassociate entities<\/h2>\n<div style=\"direction: ltr\">\n<table cellpadding=\"0\" cellspacing=\"0\" summary=\"\">\n<thead>\n<tr>\n<th>Operation<\/th>\n<th>Method<\/th>\n<th>URI<\/th>\n<th>JSON Sample<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Add a reference to a collection-valued navigation property<\/td>\n<td>POST<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000002)\/opportunity_customer_accounts\/$ref<\/td>\n<td>{&#8220;@odata.id&#8221;:&#8221;[Portal URI]\/_api\/opportunities(00000000-0000-0000-0000-000000000001)&#8221;}<\/td>\n<\/tr>\n<tr>\n<td>Remove a reference to an entity<\/td>\n<td>DELETE<\/td>\n<td>[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000002)\/opportunity_customer_accounts\/$ref?$id=[Portal URI]\/_api\/opportunities(00000000-0000-0000-0000-000000000001)<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>Remove a reference to an entity for a single-valued navigation property<\/td>\n<td>DELETE<\/td>\n<td>[Portal URI]\/_api\/opportunities(00000000-0000-0000-0000-000000000001)\/customerid_account\/$ref<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>Change the reference in a single-valued navigation property<\/td>\n<td>PUT<\/td>\n<td>[Portal URI]\/_api\/opportunities(00000000-0000-0000-0000-000000000001)\/customerid_account\/$ref<\/td>\n<td>{&#8220;@odata.id&#8221;:&#8221;[Portal URI]\/_api\/accounts(00000000-0000-0000-0000-000000000002)&#8221;}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<h1><\/h1>\n<h1>Security<\/h1>\n<p>Portals Web API access entity records and follow portal&#8217;s entity permissions, and these entity permissions get enforce to users through web role.<\/p>\n<h1><\/h1>\n<h1>Sample Code<\/h1>\n<ul>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/powerapps\/maker\/portals\/web-api-perform-operations#web-api-ajax-samples\">See sample code<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/powerapps\/maker\/portals\/web-api-perform-operations#example\">Try-out step by step example <\/a><\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" alt=\"\" class=\"aligncenter wp-image-11077 size-full\" height=\"966\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\" width=\"1763\"\/><\/p>\n<h1><\/h1>\n<h1>We are looking forward to your feedback as we march towards GA<\/h1>\n<p>Your feedback will help us continue to build on and improve the capabilities of this feature. We want to\u00a0<a href=\"https:\/\/powerusers.microsoft.com\/t5\/Power-Apps-Portals\/bd-p\/PowerAppsPortals\">hear from you!<\/a><\/p>\n<p>See <a href=\"https:\/\/docs.microsoft.com\/powerapps\/maker\/portals\/web-api-overview\">documentation here<\/a>\u00a0for detailed overview.<\/p>\n<p>\u00a0<\/p>\n<p>Thank you,<\/p>\n<p>Neeraj Nandwana<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Portals Web API enables building a richer user experience inside Power Apps portals pages. You can use Web API to create, update, and delete operations across Common Data Service entities (excluding <a href=\"https:\/\/docs.microsoft.com\/powerapps\/maker\/portals\/web-api-overview#configuration-entities\">configuration entities<\/a>) from your portal pages.<\/p>\n","protected":false},"author":459,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","ms-ems-related-posts":[],"footnotes":""},"audience":[3378],"content-type":[],"job-role":[],"product":[3473],"property":[],"topic":[3421],"coauthors":[3265],"class_list":["post-11066","post","type-post","status-publish","format-standard","hentry","audience-it-professional","product-power-apps","topic-application-modernization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Power Apps portals Web API support (public preview) - Microsoft Power Platform 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:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Power Apps portals Web API support (public preview) - Microsoft Power Platform Blog\" \/>\n<meta property=\"og:description\" content=\"Portals Web API enables building a richer user experience inside Power Apps portals pages. You can use Web API to create, update, and delete operations across Common Data Service entities (excluding configuration entities) from your portal pages.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Power Platform Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-22T02:46:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-09T21:58:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"1763\" \/>\n\t<meta property=\"og:image:height\" content=\"966\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"Neeraj Nandwana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neeraj Nandwana\" \/>\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:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/neerajnandwana\/\",\"@type\":\"Person\",\"@name\":\"Neeraj Nandwana\"}],\"headline\":\"Power Apps portals Web API support (public preview)\",\"datePublished\":\"2020-08-22T02:46:50+00:00\",\"dateModified\":\"2025-07-09T21:58:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\"},\"wordCount\":445,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\",\"keywords\":[\"PowerApps Portals\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\",\"name\":\"Power Apps portals Web API support (public preview) - Microsoft Power Platform Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\",\"datePublished\":\"2020-08-22T02:46:50+00:00\",\"dateModified\":\"2025-07-09T21:58:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif\",\"width\":1763,\"height\":966,\"caption\":\"table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Power Apps portals Web API support (public preview)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"name\":\"Microsoft Power Platform Blog\",\"description\":\"Innovate with Business Apps\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\",\"name\":\"Microsoft Power Platform Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"width\":194,\"height\":145,\"caption\":\"Microsoft Power Platform Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/083e3f19150989d2bab0fb2a2212d5c6\",\"name\":\"Neeraj Nandwana\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg93c2b92550d537ed4e7575656d77608a\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg\",\"caption\":\"Neeraj Nandwana\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/neerajnandwana\/\"],\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/neerajnandwana\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Power Apps portals Web API support (public preview) - Microsoft Power Platform 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:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/","og_locale":"en_US","og_type":"article","og_title":"Power Apps portals Web API support (public preview) - Microsoft Power Platform Blog","og_description":"Portals Web API enables building a richer user experience inside Power Apps portals pages. You can use Web API to create, update, and delete operations across Common Data Service entities (excluding configuration entities) from your portal pages.","og_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/","og_site_name":"Microsoft Power Platform Blog","article_published_time":"2020-08-22T02:46:50+00:00","article_modified_time":"2025-07-09T21:58:48+00:00","og_image":[{"width":1763,"height":966,"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif","type":"image\/gif"}],"author":"Neeraj Nandwana","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neeraj Nandwana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/neerajnandwana\/","@type":"Person","@name":"Neeraj Nandwana"}],"headline":"Power Apps portals Web API support (public preview)","datePublished":"2020-08-22T02:46:50+00:00","dateModified":"2025-07-09T21:58:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/"},"wordCount":445,"commentCount":0,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif","keywords":["PowerApps Portals"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/","name":"Power Apps portals Web API support (public preview) - Microsoft Power Platform Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif","datePublished":"2020-08-22T02:46:50+00:00","dateModified":"2025-07-09T21:58:48+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/08\/Portal-WebAPI-Example-Demo-01.gif","width":1763,"height":966,"caption":"table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/power-apps-portals-web-api-support-public-preview\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/"},{"@type":"ListItem","position":2,"name":"Power Apps portals Web API support (public preview)"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","name":"Microsoft Power Platform Blog","description":"Innovate with Business Apps","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization","name":"Microsoft Power Platform Blog","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","width":194,"height":145,"caption":"Microsoft Power Platform Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/083e3f19150989d2bab0fb2a2212d5c6","name":"Neeraj Nandwana","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg93c2b92550d537ed4e7575656d77608a","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/09\/cropped-Neeraj-LinkedIn-96x96.jpg","caption":"Neeraj Nandwana"},"sameAs":["https:\/\/www.linkedin.com\/in\/neerajnandwana\/"],"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/neerajnandwana\/"}]}},"bloginabox_animated_featured_image":null,"bloginabox_display_generated_audio":false,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Power Platform Blog","distributor_original_site_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/11066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/users\/459"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/comments?post=11066"}],"version-history":[{"count":1,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/11066\/revisions"}],"predecessor-version":[{"id":130552,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/11066\/revisions\/130552"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media?parent=11066"}],"wp:term":[{"taxonomy":"audience","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/audience?post=11066"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/content-type?post=11066"},{"taxonomy":"job-role","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/job-role?post=11066"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/product?post=11066"},{"taxonomy":"property","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/property?post=11066"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/topic?post=11066"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/coauthors?post=11066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}