{"id":28674,"date":"2020-12-29T09:12:34","date_gmt":"2020-12-29T09:12:34","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=28674"},"modified":"2023-04-13T06:13:28","modified_gmt":"2023-04-13T06:13:28","slug":"using-data-operations-with-power-automate","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/","title":{"rendered":"Using Data Operations with Power Automate"},"content":{"rendered":"\n<p>Compose, join, select, filter arrays, construct tables, and parse JSON are just a few of the typical data operations covered in Power Automate. <\/p>\n\n\n\n<p>Power Automate (formerly known as Microsoft Flow) is a cloud-based service that allows you to create automated workflows between different applications and services. Power Automate provides a wide range of connectors and triggers that enable you to connect to various data sources and perform data operations, such as creating, updating, and deleting records.<\/p>\n\n\n\n<p>To use data operations with Power Automate, you first need to create a new flow and select the appropriate trigger, which could be a new record created in a Dynamics 365 entity, a new email received in Outlook, or a new file added to OneDrive for Business. You can then add one or more actions to the flow, such as creating a new record in a SharePoint list, sending an email, or updating a record in a SQL Server database.<\/p>\n\n\n\n<p>When you design flows, you may use these operations to alter data. The following are some of the requirements for using these operations:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access to Power Automate.<\/li>\n\n\n\n<li>A tool such as\u00a0PostMan\u00a0to send HTTP POST requests with a JSON array to your flow.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Data Operations<\/strong><\/h4>\n\n\n\n<p>Power Automate provides several data operations that you can use to manipulate data within a flow, including:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a record: This action allows you to create a new record in a data source, such as a SharePoint list, Dynamics 365 entity, or Salesforce object. You can specify the values for each field in the record, and Power Automate will automatically create the record in the data source.<\/li>\n\n\n\n<li>Get a record: This action allows you to retrieve a record from a data source based on a specific criteria, such as the record ID or a field value. You can then use the record data in subsequent actions.<\/li>\n\n\n\n<li>Update a record: This action allows you to update an existing record in a data source. You can specify the field values to update, and Power Automate will automatically update the record in the data source.<\/li>\n\n\n\n<li>Delete a record: This action allows you to delete an existing record from a data source. You can specify the record ID or other criteria to identify the record to delete.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Compose Action<\/strong><\/h4>\n\n\n\n<p>We use the data operation Compose&nbsp;action to save you from having to enter the same data multiple times as you&#8217;re designing a cloud flow. While designing your flow, you&#8217;ll need to enter an array of digits\u2014[0,1,2,3,4,5,6,7,8,9]\u2014several times. To save the array, use the compose operation, as shown in the following procedure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Search for Compose, and then select the Data Operation &#8211; Compose action.<\/li>\n\n\n\n<li>In the Inputs box, enter the array that you want to reference later.<\/li>\n\n\n\n<li>Then in order to access the contents of the compose action use the following steps &#8211;\n<ul class=\"wp-block-list\">\n<li>Add an action, such as Data Operation \u2013 Join.<\/li>\n\n\n\n<li>Select the control to which you&#8217;d like to add the contents you saved in the compose action.<\/li>\n\n\n\n<li>The Add dynamic content from the apps and connectors used in this flow screen opens.<\/li>\n\n\n\n<li>On the Dynamic content tab, in the Compose section, select Outputs.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Join Action<\/strong><\/h4>\n\n\n\n<p>To delimit an array with the separator of your choice, use the Data Operation &#8211; Join operation. Your flow, for example, gets a web request with the following email addresses: [&#8220;d@example.com&#8221;, &#8220;k@example.com&#8221;, &#8220;dal@example.com&#8221;]. Your email application, on the other hand, expects addresses to be structured as a single string separated by semicolons. Follow these steps to transform the comma delimiter (,) to a semicolon (;) using the Data Operation &#8211; Join Action:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a new action, search for Join, and then select Data Operation &#8211; Join.<\/li>\n\n\n\n<li>In the From box, enter the array, and in the Join with box, enter a semicolon (;).<\/li>\n\n\n\n<li>Save your flow, and then run it<\/li>\n\n\n\n<li>After your flow runs, the output of the Data Operation \u2013 Join action will be a string with the addresses joined by semicolons<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Select Action<\/strong><\/h4>\n\n\n\n<p>To change the shape of objects in an array, use the Data Operation \u2013 Select action. Each item in an array, for example, can have elements added, removed, or renamed.<\/p>\n\n\n\n<p>Data enters your flow in this example via a web request with the following format:&nbsp;<\/p>\n\n\n\n<p><strong>JSON<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91; { \"first\": \"Eugenia\", \"last\": \"Lopez\" }, { \"first\": \"Elizabeth\", \"last\": \"Moore\" } ]<\/code><\/pre>\n\n\n\n<p>You want to reshape the incoming data by changing the first and last members to FirstName and FamilyName, respectively, and adding a new member entitled FullName that combines the first and last names (separated with a space).<\/p>\n\n\n\n<p><strong>JSON<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91; { \"FirstName\": \"Eugenia\", \"FamilyName\": \"Lopez\", \"FullName\": \"Eugenia Lopez\" }, { \"FirstName\": \"Elizabeth\", \"FamilyName\": \"Moore\", \"FullName\": \"Elizabeth Moore\" } ]<\/code><\/pre>\n\n\n\n<p><strong>To do:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the When an HTTP request is received trigger to your flow.<\/li>\n\n\n\n<li>Select Use sample payload to generate schema.<\/li>\n\n\n\n<li>In the box that appears, paste a sample of your source data array, and then select Done.<\/li>\n\n\n\n<li>Add the Data Operation \u2013 Select action, and then configure it as shown in the following image.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Filter Array Action<\/strong><\/h4>\n\n\n\n<p>To decrease the number of items in an array to a subset that satisfies the criteria you supply, we utilise the Data Operation &#8211; Filter array action.<\/p>\n\n\n\n<p>You use the filter array action on this array in this example:<\/p>\n\n\n\n<p><strong>JSON<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91; { \"first\": \"Eugenia\", \"last\": \"Lopez\" }, { \"first\": \"Elizabeth\", \"last\": \"Moore\" } ]<\/code><\/pre>\n\n\n\n<p>to make a new array with just objects in it, with Eugenia as the first.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Find, and then add, the&nbsp;<strong>Filter array<\/strong>&nbsp;action to your flow.<\/li>\n\n\n\n<li>Configure the filter array action<\/li>\n\n\n\n<li>Save, and then run your flow.<\/li>\n<\/ul>\n\n\n\n<p>We can use&nbsp;PostMan&nbsp;to generate a web request that sends a JSON array to your flow.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>&nbsp;Create CSV Table Action<\/strong><\/h4>\n\n\n\n<p>To convert a JSON array into a comma-separated value (CSV) table, use the Data Operation &#8211; Create CSV table action. The headers can be kept visible in the CSV output. In this example, you&#8217;ll create a CSV table using the following array:<\/p>\n\n\n\n<p><strong>JSON<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91; { \"first\": \"Eugenia\", \"last\": \"Lopez\" }, { \"first\": \"Elizabeth\", \"last\": \"Moore\" } ]<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Find the Data Operation &#8211; Create CSV table action, add it, and then configure it to look like this. The Body token in this example comes from the When an HTTP request is received action\n<ul class=\"wp-block-list\">\n<li>however, you may retrieve the input for the Create CSV table action from the output of any previous action in your flow, or you can type it into the From box directly.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/power-automate\/media\/data-operations\/create-csv-table-2.png\" alt=\"Configure the create CSV table action. From is set to Body, and Columns is set to Automatic\"\/><figcaption class=\"wp-element-caption\">Source: Microsoft<\/figcaption><\/figure>\n<\/div>\n\n\n<ul class=\"wp-block-list\">\n<li>Save, and then run, your flow.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"use-the-create-html-table-action\"><strong>Create HTML Table Action<\/strong><\/h4>\n\n\n\n<p>We use the&nbsp;Data Operation, Create HTML table&nbsp;action to change a JSON array input into an HTML table. Moreover, we can keep the headers visible in the HTML output.<\/p>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-power-platform-fundamentals-pl-900-free-practice-test\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/12\/testpreptraining.ai-4-750x117.png\" alt=\"Microsoft Exam PL-900 Free Practice Test\"\/><\/a><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\"><strong>PL-900 Exam Practice Questions<\/strong><\/h2>\n\n\n\n<p><strong>Question: <\/strong>You have a list of customer names and email addresses in an Excel file, and you need to send an email to each customer with a personalized message. Which data operation action would you use in Power Automate to accomplish this?<\/p>\n\n\n\n<p>A) Get file content<\/p>\n\n\n\n<p>B) Parse JSON<\/p>\n\n\n\n<p>C) Parse CSV<\/p>\n\n\n\n<p>D) Apply to each<\/p>\n\n\n\n<p>Answer: d) Apply to each<\/p>\n\n\n\n<p>Explanation: The Apply to each action in Power Automate allows you to perform a set of actions for each item in a list. In this case, you can use the Apply to each action to iterate through the list of customer names and email addresses and send a personalized email to each customer.<\/p>\n\n\n\n<p><strong>Question:<\/strong> You have a SharePoint list that contains a column with a date and time value, and you want to send a reminder email to a user 24 hours before the date and time value in the column. Which data operation action would you use in Power Automate to accomplish this?<\/p>\n\n\n\n<p>A) Filter array<\/p>\n\n\n\n<p>B) Select<\/p>\n\n\n\n<p>C) Add days to time<\/p>\n\n\n\n<p>D) Condition<\/p>\n\n\n\n<p>Answer: d) Condition<\/p>\n\n\n\n<p>Explanation: The Condition action in Power Automate allows you to check if a certain condition is true or false. In this case, you can use the Condition action to check if the current time is 24 hours before the date and time value in the SharePoint list column. If the condition is true, you can then send the reminder email.<\/p>\n\n\n\n<p><strong>Question:<\/strong> You have a CSV file that contains a list of product IDs and their corresponding prices, and you need to calculate the total price of an order based on the list of product IDs and quantities provided by the user. Which data operation action would you use in Power Automate to accomplish this?<\/p>\n\n\n\n<p>A) Filter array<\/p>\n\n\n\n<p>B) Parse CSV<\/p>\n\n\n\n<p>C) Select<\/p>\n\n\n\n<p>D) Join<\/p>\n\n\n\n<p>Answer: c) Select<\/p>\n\n\n\n<p>Explanation: The Select action in Power Automate allows you to select a subset of properties from an object or array. In this case, you can use the Select action to extract the price of each product ID from the CSV file and then calculate the total price of the order based on the list of product IDs and quantities provided by the user.<\/p>\n\n\n\n<p><strong>Question:<\/strong> You have a SharePoint list that contains a column with a person or group value, and you want to send an email to the user in the person or group column. Which data operation action would you use in Power Automate to accomplish this?<\/p>\n\n\n\n<p>A) Get user profile<\/p>\n\n\n\n<p>B) Send an email<\/p>\n\n\n\n<p>C) Get item<\/p>\n\n\n\n<p>D) Initialize variable<\/p>\n\n\n\n<p>Answer: a) Get user profile<\/p>\n\n\n\n<p>Explanation: The Get user profile action in Power Automate allows you to retrieve information about a user, such as their email address, from their user profile in SharePoint. In this case, you can use the Get user profile action to retrieve the email address of the user in the person or group column and then send an email to that address using the Send an email action.<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-pl-900-microsoft-power-platform-fundamentals\/\" target=\"_blank\" rel=\"noreferrer noopener\">PL-900 Exam Tutorial<\/a><\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/docs.microsoft.com\/en-us\/power-automate\/data-operations\" target=\"_blank\" rel=\"noreferrer noopener\">Check here for more.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Compose, join, select, filter arrays, construct tables, and parse JSON are just a few of the typical data operations covered in Power Automate. Power Automate (formerly known as Microsoft Flow) is a cloud-based service that allows you to create automated workflows between different applications and services. Power Automate provides a wide range of connectors and&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-28674","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using Data Operations with Power Automate - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!\" \/>\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.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Data Operations with Power Automate - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-13T06:13:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.microsoft.com\/en-us\/power-automate\/media\/data-operations\/create-csv-table-2.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/\",\"name\":\"Using Data Operations with Power Automate - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2020-12-29T09:12:34+00:00\",\"dateModified\":\"2023-04-13T06:13:28+00:00\",\"description\":\"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Data Operations with Power Automate\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Data Operations with Power Automate - Testprep Training Tutorials","description":"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!","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.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/","og_locale":"en_US","og_type":"article","og_title":"Using Data Operations with Power Automate - Testprep Training Tutorials","og_description":"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2023-04-13T06:13:28+00:00","og_image":[{"url":"https:\/\/docs.microsoft.com\/en-us\/power-automate\/media\/data-operations\/create-csv-table-2.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/","name":"Using Data Operations with Power Automate - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2020-12-29T09:12:34+00:00","dateModified":"2023-04-13T06:13:28+00:00","description":"Learn to use Data Operations with Power Automate with online tutorial. Prepare for Microsoft Exam PL-900 with latest practice test Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/using-data-operations-with-power-automate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Using Data Operations with Power Automate"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28674","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=28674"}],"version-history":[{"count":7,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28674\/revisions"}],"predecessor-version":[{"id":61264,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28674\/revisions\/61264"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=28674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=28674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=28674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}