{"id":268,"date":"2017-01-19T07:56:46","date_gmt":"2017-01-19T15:56:46","guid":{"rendered":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/power-apps\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/"},"modified":"2025-06-11T08:16:09","modified_gmt":"2025-06-11T15:16:09","slug":"powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists","status":"publish","type":"post","link":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/power-apps\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/","title":{"rendered":"Working with large SharePoint lists in PowerApps"},"content":{"rendered":"<p>Today we are happy to announce support for connecting to SharePoint lists that have more than 256 items using PowerApps.\u00a0Please see the details below on the changes you need to make to your apps to take make use of this support. We are also working on making any new apps generated use these capabilities out of box,\u00a0so look for that announcement in the near future.<\/p>\n<p>First off, the 256 item limit was raised to 500 items, so even without making use of the new support for paging, you should now be able to get up to 500 items from the list.<\/p>\n<p>With the changes rolled out today, your existing apps should see no difference in behavior. If the list you were connecting to was under 500 items, your apps will continue to work fine without any changes. In these cases, PowerApps was simply retrieving all of the items, and letting you sort\/search\/filter by any of the columns you had in your list.<\/p>\n<p>For lists that contain more than 500 items, there are some changes you need to make to your app (to the \u201cItems\u201d property of the Gallery control), and once these are done, you should be able to simply scroll to the bottom of a list, and PowerApps will bring in the next set of results from SharePoint\u00a0to make things work.<\/p>\n<h3>Sorting<\/h3>\n<p>First off, to display the results that are most relevant to you, you have to decide on what to sort by. SharePoint supports sorting on column types of \u201cSingle line of Text\u201d, Choice, Number, Date and Person. In the formula for \u201cItems\u201d in the gallery control of your app, make sure you pick one of the columns of these types. If you pick a column that does not support sorting, you will get a warning with a blue icon telling you that your source list doesn\u2019t support the column you picked for sorting. In those cases, PowerApps will just revert to sorting the first 500 items in your list by ID, so watch out for that. If you are dealing with a list that has more than 5,000 items in SharePoint, you should make sure that you add an index to the column that you want to sort by.<\/p>\n<h3>Filtering<\/h3>\n<p>Second, if you\u2019d like to filter the set of items that you are showing in the gallery control, you will make use of a \u201cFilter\u201d expression, rather than the \u201cSearch\u201d expression, which is the default that existing apps used. With our changes, SharePoint connector now supports \u201cequals\u201d type of queries on columns that support filtering (Single line of text, choice, numbers, dates and people), so make sure that the columns and the expressions you use are supported and watch for the same warning to avoid reverting back to the top 500 items. We will be adding \u201cStarts With\u201d support in the future as well. As with sorting, it is required to have an index on the column that you want to filter your items by, if you are dealing with a SharePoint list that has more than 5,000 items.<\/p>\n<h3>Search<\/h3>\n<p>We will be working on adding support for \u201cSearch\u201d function by connecting to SharePoint Search service in the future.<\/p>\n<h3>Some examples<\/h3>\n<p>Here are some sample expressions for the \u201cItems\u201d field that show how you can retrieve items from SharePoint that match certain criteria:<\/p>\n<p><strong>Retrieve all items that are \u201cAssignedTo\u201d the current user, and sort by \u201cDueDate\u201d, where these are column names in a SharePoint list named \u201cIssues\u201d:<\/strong><\/p>\n<blockquote>\n<p>SortByColumns(Filter(&#8216;Issues&#8217;,AssignedTo.Email=User().Email), &#8220;DueDate&#8221;, If(SortDescending1, Descending, Ascending))<\/p>\n<\/blockquote>\n<p><strong>Retrieve all items that have \u201cStatus\u201d equal to \u201cPending\u201d, and that match the string added to the search box, sorted by \u201cCreated\u201d date in a list called \u201cHelpdesk Requests\u201d:<\/strong><\/p>\n<blockquote>\n<p>SortByColumns(Filter(&#8216;Helpdesk Requests&#8217;, Status=\u201dPending\u201d, If(Len(TextSearchBox1.Text)&gt;0, Title=TextSearchBox1.Text, true)), &#8220;Created&#8221;, If(SortDescending1, Descending, Ascending))<\/p>\n<\/blockquote>\n<p>Please continue to give us feedback using the Forum and your comments on what other options you would like to see in SharePoint integration, it is very helpful to drive our prioritization as we add new features.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today we are happy to announce support for building apps that connect to large SharePoint lists using PowerApps, a top request from our users.<\/p>\n","protected":false},"author":152,"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":[3424],"job-role":[],"product":[3473],"property":[],"topic":[],"coauthors":[2110],"class_list":["post-268","post","type-post","status-publish","format-standard","hentry","audience-it-professional","content-type-news","product-power-apps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Working with large SharePoint lists in PowerApps - 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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Working with large SharePoint lists in PowerApps - Microsoft Power Platform Blog\" \/>\n<meta property=\"og:description\" content=\"Today we are happy to announce support for building apps that connect to large SharePoint lists using PowerApps, a top request from our users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/power-apps\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Power Platform Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-19T15:56:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T15:16:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-content\/uploads\/2023\/12\/Microsoft-logo_rgb_c-gray_950-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"950\" \/>\n\t<meta property=\"og:image:height\" content=\"413\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kerem Yuceturk\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kerem Yuceturk\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\"},\"author\":[{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/author\/kerem-yuceturk\/\",\"@type\":\"Person\",\"@name\":\"Kerem Yuceturk\"}],\"headline\":\"Working with large SharePoint lists in PowerApps\",\"datePublished\":\"2017-01-19T15:56:46+00:00\",\"dateModified\":\"2025-06-11T15:16:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\"},\"wordCount\":682,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization\"},\"keywords\":[\"Sharepoint\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\",\"name\":\"Working with large SharePoint lists in PowerApps - Microsoft Power Platform Blog\",\"isPartOf\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#website\"},\"datePublished\":\"2017-01-19T15:56:46+00:00\",\"dateModified\":\"2025-06-11T15:16:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Working with large SharePoint lists in PowerApps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#website\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/\",\"name\":\"Microsoft Power Platform Blog\",\"description\":\"Innovate with Business Apps\",\"publisher\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cm-edgetun.pages.dev\/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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization\",\"name\":\"Microsoft Power Platform Blog\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"contentUrl\":\"https:\/\/cm-edgetun.pages.dev\/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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/person\/140ac38a3aaf866b629b66f81f6ef846\",\"name\":\"Kerem Yuceturk\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g29ad291e630b630b61391c01daf786b4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g\",\"caption\":\"Kerem Yuceturk\"},\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/author\/keremy\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Working with large SharePoint lists in PowerApps - 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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/","og_locale":"en_US","og_type":"article","og_title":"Working with large SharePoint lists in PowerApps - Microsoft Power Platform Blog","og_description":"Today we are happy to announce support for building apps that connect to large SharePoint lists using PowerApps, a top request from our users.","og_url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/power-apps\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/","og_site_name":"Microsoft Power Platform Blog","article_published_time":"2017-01-19T15:56:46+00:00","article_modified_time":"2025-06-11T15:16:09+00:00","og_image":[{"width":950,"height":413,"url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-content\/uploads\/2023\/12\/Microsoft-logo_rgb_c-gray_950-1.webp","type":"image\/png"}],"author":"Kerem Yuceturk","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kerem Yuceturk","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#article","isPartOf":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/"},"author":[{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/author\/kerem-yuceturk\/","@type":"Person","@name":"Kerem Yuceturk"}],"headline":"Working with large SharePoint lists in PowerApps","datePublished":"2017-01-19T15:56:46+00:00","dateModified":"2025-06-11T15:16:09+00:00","mainEntityOfPage":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/"},"wordCount":682,"commentCount":0,"publisher":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization"},"keywords":["Sharepoint"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/","url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/","name":"Working with large SharePoint lists in PowerApps - Microsoft Power Platform Blog","isPartOf":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#website"},"datePublished":"2017-01-19T15:56:46+00:00","dateModified":"2025-06-11T15:16:09+00:00","breadcrumb":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/2017\/01\/19\/powerapps-now-supports-working-with-more-than-256-items-in-sharepoint-lists\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/"},{"@type":"ListItem","position":2,"name":"Working with large SharePoint lists in PowerApps"}]},{"@type":"WebSite","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#website","url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/","name":"Microsoft Power Platform Blog","description":"Innovate with Business Apps","publisher":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cm-edgetun.pages.dev\/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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#organization","name":"Microsoft Power Platform Blog","url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","contentUrl":"https:\/\/cm-edgetun.pages.dev\/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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/#\/schema\/person\/140ac38a3aaf866b629b66f81f6ef846","name":"Kerem Yuceturk","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g29ad291e630b630b61391c01daf786b4","url":"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4dc4e82bf6eb519863ce4f2e1ac40ea6db954cb0b092bbe8efc4426906b4533e?s=96&d=mm&r=g","caption":"Kerem Yuceturk"},"url":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/author\/keremy\/"}]}},"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:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/268","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/users\/152"}],"replies":[{"embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/comments?post=268"}],"version-history":[{"count":1,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/268\/revisions"}],"predecessor-version":[{"id":131360,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/268\/revisions\/131360"}],"wp:attachment":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media?parent=268"}],"wp:term":[{"taxonomy":"audience","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/audience?post=268"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/content-type?post=268"},{"taxonomy":"job-role","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/job-role?post=268"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/product?post=268"},{"taxonomy":"property","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/property?post=268"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/topic?post=268"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/coauthors?post=268"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}